├── .github └── workflows │ └── build.yml ├── .gitignore ├── GBAGI.cpp ├── MSVC ├── gbagi.sln ├── gbagi.vcxproj └── gbagi.vcxproj.filters ├── agimain.c ├── agimain.h ├── cmdagi.c ├── cmdtest.c ├── commands.c ├── commands.h ├── crt0.s ├── errmsg.c ├── errmsg.h ├── extra ├── splash.h ├── splashdata.c └── splashlogodata.c ├── gamedata.c ├── gamedata.h ├── gba.h ├── gbagi.bpf ├── gbagi.bpr ├── gbagi.h ├── gbarom ├── aginject.bpr ├── aginject.cpp ├── commands.c ├── commands.h ├── decompress.c ├── decompress.h ├── main.c ├── main.h ├── makerom.c └── makerom.h ├── input.c ├── input.h ├── interrupts.c ├── invobj.c ├── invobj.h ├── keyboard.c ├── keyboard.h ├── keypad.h ├── lnkscript ├── logic.c ├── logic.h ├── main.c ├── make.bat ├── menu.c ├── menu.h ├── pal.pal ├── parse.c ├── parse.h ├── picture.c ├── picture.h ├── readme └── readme.txt ├── romgui ├── MAINICON.ico ├── ReadMe.txt ├── addgame.cpp ├── addgame.dfm ├── addgame.form.cpp ├── addgame.h ├── addgame.rc ├── addgame.res.h ├── commands.cpp ├── commands.h ├── decompress.cpp ├── decompress.h ├── dirdialog.cpp ├── dirdialog.h ├── gbinjectb.bpr ├── gbinjectb.cpp ├── gbinjectb.rc ├── gbinjectb.res ├── main.cpp ├── main.dfm ├── main.form.cpp ├── main.h ├── main.rc ├── main.res.h ├── make.sh ├── makerom.cpp ├── makerom.h ├── romgui.sln ├── romgui.vcxproj ├── romgui.vcxproj.filters ├── vcl-shim │ ├── ComboBox.h │ ├── Form.cpp │ ├── Form.h │ ├── ListBox.h │ ├── StdCtrls.h │ ├── VclString.cpp │ ├── VclString.h │ ├── vcl-shim.cpp │ └── vcl-shim.h ├── verdef.cpp └── verdef.h ├── saverestore.c ├── saverestore.h ├── screen.c ├── screen.h ├── screenmode.h ├── status.c ├── status.h ├── system.c ├── system.h ├── text.c ├── text.h ├── types.h ├── variables.c ├── variables.h ├── views.c ├── views.h ├── vocab.bin ├── voccln ├── main.cpp ├── main.dfm ├── main.h ├── voccln.bpr ├── voccln.cpp └── voccln.res ├── wingui.c ├── wingui.h └── words ├── maike.cpp ├── maike.dfm ├── maike.h ├── words.bpr ├── words.cpp └── words.res /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/.gitignore -------------------------------------------------------------------------------- /GBAGI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/GBAGI.cpp -------------------------------------------------------------------------------- /MSVC/gbagi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/MSVC/gbagi.sln -------------------------------------------------------------------------------- /MSVC/gbagi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/MSVC/gbagi.vcxproj -------------------------------------------------------------------------------- /MSVC/gbagi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/MSVC/gbagi.vcxproj.filters -------------------------------------------------------------------------------- /agimain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/agimain.c -------------------------------------------------------------------------------- /agimain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/agimain.h -------------------------------------------------------------------------------- /cmdagi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/cmdagi.c -------------------------------------------------------------------------------- /cmdtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/cmdtest.c -------------------------------------------------------------------------------- /commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/commands.c -------------------------------------------------------------------------------- /commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/commands.h -------------------------------------------------------------------------------- /crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/crt0.s -------------------------------------------------------------------------------- /errmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/errmsg.c -------------------------------------------------------------------------------- /errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/errmsg.h -------------------------------------------------------------------------------- /extra/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/extra/splash.h -------------------------------------------------------------------------------- /extra/splashdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/extra/splashdata.c -------------------------------------------------------------------------------- /extra/splashlogodata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/extra/splashlogodata.c -------------------------------------------------------------------------------- /gamedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gamedata.c -------------------------------------------------------------------------------- /gamedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gamedata.h -------------------------------------------------------------------------------- /gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gba.h -------------------------------------------------------------------------------- /gbagi.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbagi.bpf -------------------------------------------------------------------------------- /gbagi.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbagi.bpr -------------------------------------------------------------------------------- /gbagi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbagi.h -------------------------------------------------------------------------------- /gbarom/aginject.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/aginject.bpr -------------------------------------------------------------------------------- /gbarom/aginject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/aginject.cpp -------------------------------------------------------------------------------- /gbarom/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/commands.c -------------------------------------------------------------------------------- /gbarom/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/commands.h -------------------------------------------------------------------------------- /gbarom/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/decompress.c -------------------------------------------------------------------------------- /gbarom/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/decompress.h -------------------------------------------------------------------------------- /gbarom/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/main.c -------------------------------------------------------------------------------- /gbarom/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/main.h -------------------------------------------------------------------------------- /gbarom/makerom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/makerom.c -------------------------------------------------------------------------------- /gbarom/makerom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/gbarom/makerom.h -------------------------------------------------------------------------------- /input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/input.c -------------------------------------------------------------------------------- /input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/input.h -------------------------------------------------------------------------------- /interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/interrupts.c -------------------------------------------------------------------------------- /invobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/invobj.c -------------------------------------------------------------------------------- /invobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/invobj.h -------------------------------------------------------------------------------- /keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/keyboard.c -------------------------------------------------------------------------------- /keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/keyboard.h -------------------------------------------------------------------------------- /keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/keypad.h -------------------------------------------------------------------------------- /lnkscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/lnkscript -------------------------------------------------------------------------------- /logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/logic.c -------------------------------------------------------------------------------- /logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/logic.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/main.c -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/make.bat -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/menu.c -------------------------------------------------------------------------------- /menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/menu.h -------------------------------------------------------------------------------- /pal.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/pal.pal -------------------------------------------------------------------------------- /parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/parse.c -------------------------------------------------------------------------------- /parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/parse.h -------------------------------------------------------------------------------- /picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/picture.c -------------------------------------------------------------------------------- /picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/picture.h -------------------------------------------------------------------------------- /readme/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/readme/readme.txt -------------------------------------------------------------------------------- /romgui/MAINICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/MAINICON.ico -------------------------------------------------------------------------------- /romgui/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/ReadMe.txt -------------------------------------------------------------------------------- /romgui/addgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/addgame.cpp -------------------------------------------------------------------------------- /romgui/addgame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/addgame.dfm -------------------------------------------------------------------------------- /romgui/addgame.form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/addgame.form.cpp -------------------------------------------------------------------------------- /romgui/addgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/addgame.h -------------------------------------------------------------------------------- /romgui/addgame.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/addgame.rc -------------------------------------------------------------------------------- /romgui/addgame.res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/addgame.res.h -------------------------------------------------------------------------------- /romgui/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/commands.cpp -------------------------------------------------------------------------------- /romgui/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/commands.h -------------------------------------------------------------------------------- /romgui/decompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/decompress.cpp -------------------------------------------------------------------------------- /romgui/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/decompress.h -------------------------------------------------------------------------------- /romgui/dirdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/dirdialog.cpp -------------------------------------------------------------------------------- /romgui/dirdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/dirdialog.h -------------------------------------------------------------------------------- /romgui/gbinjectb.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/gbinjectb.bpr -------------------------------------------------------------------------------- /romgui/gbinjectb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/gbinjectb.cpp -------------------------------------------------------------------------------- /romgui/gbinjectb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/gbinjectb.rc -------------------------------------------------------------------------------- /romgui/gbinjectb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/gbinjectb.res -------------------------------------------------------------------------------- /romgui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/main.cpp -------------------------------------------------------------------------------- /romgui/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/main.dfm -------------------------------------------------------------------------------- /romgui/main.form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/main.form.cpp -------------------------------------------------------------------------------- /romgui/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/main.h -------------------------------------------------------------------------------- /romgui/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/main.rc -------------------------------------------------------------------------------- /romgui/main.res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/main.res.h -------------------------------------------------------------------------------- /romgui/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/make.sh -------------------------------------------------------------------------------- /romgui/makerom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/makerom.cpp -------------------------------------------------------------------------------- /romgui/makerom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/makerom.h -------------------------------------------------------------------------------- /romgui/romgui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/romgui.sln -------------------------------------------------------------------------------- /romgui/romgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/romgui.vcxproj -------------------------------------------------------------------------------- /romgui/romgui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/romgui.vcxproj.filters -------------------------------------------------------------------------------- /romgui/vcl-shim/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/ComboBox.h -------------------------------------------------------------------------------- /romgui/vcl-shim/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/Form.cpp -------------------------------------------------------------------------------- /romgui/vcl-shim/Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/Form.h -------------------------------------------------------------------------------- /romgui/vcl-shim/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/ListBox.h -------------------------------------------------------------------------------- /romgui/vcl-shim/StdCtrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/StdCtrls.h -------------------------------------------------------------------------------- /romgui/vcl-shim/VclString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/VclString.cpp -------------------------------------------------------------------------------- /romgui/vcl-shim/VclString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/VclString.h -------------------------------------------------------------------------------- /romgui/vcl-shim/vcl-shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/vcl-shim.cpp -------------------------------------------------------------------------------- /romgui/vcl-shim/vcl-shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/vcl-shim/vcl-shim.h -------------------------------------------------------------------------------- /romgui/verdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/verdef.cpp -------------------------------------------------------------------------------- /romgui/verdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/romgui/verdef.h -------------------------------------------------------------------------------- /saverestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/saverestore.c -------------------------------------------------------------------------------- /saverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/saverestore.h -------------------------------------------------------------------------------- /screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/screen.c -------------------------------------------------------------------------------- /screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/screen.h -------------------------------------------------------------------------------- /screenmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/screenmode.h -------------------------------------------------------------------------------- /status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/status.c -------------------------------------------------------------------------------- /status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/status.h -------------------------------------------------------------------------------- /system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/system.c -------------------------------------------------------------------------------- /system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/system.h -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/text.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/text.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/types.h -------------------------------------------------------------------------------- /variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/variables.c -------------------------------------------------------------------------------- /variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/variables.h -------------------------------------------------------------------------------- /views.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/views.c -------------------------------------------------------------------------------- /views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/views.h -------------------------------------------------------------------------------- /vocab.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/vocab.bin -------------------------------------------------------------------------------- /voccln/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/voccln/main.cpp -------------------------------------------------------------------------------- /voccln/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/voccln/main.dfm -------------------------------------------------------------------------------- /voccln/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/voccln/main.h -------------------------------------------------------------------------------- /voccln/voccln.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/voccln/voccln.bpr -------------------------------------------------------------------------------- /voccln/voccln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/voccln/voccln.cpp -------------------------------------------------------------------------------- /voccln/voccln.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/voccln/voccln.res -------------------------------------------------------------------------------- /wingui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/wingui.c -------------------------------------------------------------------------------- /wingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/wingui.h -------------------------------------------------------------------------------- /words/maike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/words/maike.cpp -------------------------------------------------------------------------------- /words/maike.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/words/maike.dfm -------------------------------------------------------------------------------- /words/maike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/words/maike.h -------------------------------------------------------------------------------- /words/words.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/words/words.bpr -------------------------------------------------------------------------------- /words/words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/words/words.cpp -------------------------------------------------------------------------------- /words/words.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davidebyzero/GBAGI/HEAD/words/words.res --------------------------------------------------------------------------------