├── LICENSE ├── README.md ├── bin └── .gitignore ├── debugger.png ├── games ├── .gitignore └── README.md ├── makefile ├── run.sh ├── src ├── bgi.c ├── bgi.h ├── breakpoints.c ├── debug.c ├── debug.h ├── disasm_basic.c ├── disasm_blank.c ├── disasm_sys0.c ├── disassembler.c ├── gui.c ├── op_basic.c ├── op_sys0.c ├── patch.c ├── patch.h ├── sjis.c ├── sjis.h ├── utf.c └── utf.h └── tools └── inject ├── .gitignore ├── README.md ├── inject.c └── makefile /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/debugger.png -------------------------------------------------------------------------------- /games/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/games/.gitignore -------------------------------------------------------------------------------- /games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/games/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/makefile -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/run.sh -------------------------------------------------------------------------------- /src/bgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/bgi.c -------------------------------------------------------------------------------- /src/bgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/bgi.h -------------------------------------------------------------------------------- /src/breakpoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/breakpoints.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/disasm_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/disasm_basic.c -------------------------------------------------------------------------------- /src/disasm_blank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/disasm_blank.c -------------------------------------------------------------------------------- /src/disasm_sys0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/disasm_sys0.c -------------------------------------------------------------------------------- /src/disassembler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/disassembler.c -------------------------------------------------------------------------------- /src/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/gui.c -------------------------------------------------------------------------------- /src/op_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/op_basic.c -------------------------------------------------------------------------------- /src/op_sys0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/op_sys0.c -------------------------------------------------------------------------------- /src/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/patch.c -------------------------------------------------------------------------------- /src/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/patch.h -------------------------------------------------------------------------------- /src/sjis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/sjis.c -------------------------------------------------------------------------------- /src/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/sjis.h -------------------------------------------------------------------------------- /src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/utf.c -------------------------------------------------------------------------------- /src/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/src/utf.h -------------------------------------------------------------------------------- /tools/inject/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.exe -------------------------------------------------------------------------------- /tools/inject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/tools/inject/README.md -------------------------------------------------------------------------------- /tools/inject/inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/tools/inject/inject.c -------------------------------------------------------------------------------- /tools/inject/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cytlan/openbgi/HEAD/tools/inject/makefile --------------------------------------------------------------------------------