├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── autotester.json ├── examples ├── logger │ ├── makefile │ └── src │ │ ├── hook.asm │ │ └── main.c └── str_menu │ ├── makefile │ └── strmenu.asm ├── icon.png ├── include ├── commands.alm ├── ez80.alm ├── ez80.inc ├── include_library.inc ├── ld.alm ├── library.inc ├── spasm.inc ├── symbol_table.inc ├── ti84pce.inc ├── ti84pce.sed ├── ti84pceg.inc └── tiformat.inc ├── makefile ├── src ├── capnhook.asm ├── capnhook.h ├── capnhook.inc ├── hook_equates.inc └── makefile └── test ├── makefile └── src ├── test.asm └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/README.md -------------------------------------------------------------------------------- /autotester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/autotester.json -------------------------------------------------------------------------------- /examples/logger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/examples/logger/makefile -------------------------------------------------------------------------------- /examples/logger/src/hook.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/examples/logger/src/hook.asm -------------------------------------------------------------------------------- /examples/logger/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/examples/logger/src/main.c -------------------------------------------------------------------------------- /examples/str_menu/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/examples/str_menu/makefile -------------------------------------------------------------------------------- /examples/str_menu/strmenu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/examples/str_menu/strmenu.asm -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/icon.png -------------------------------------------------------------------------------- /include/commands.alm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/commands.alm -------------------------------------------------------------------------------- /include/ez80.alm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/ez80.alm -------------------------------------------------------------------------------- /include/ez80.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/ez80.inc -------------------------------------------------------------------------------- /include/include_library.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/include_library.inc -------------------------------------------------------------------------------- /include/ld.alm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/ld.alm -------------------------------------------------------------------------------- /include/library.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/library.inc -------------------------------------------------------------------------------- /include/spasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/spasm.inc -------------------------------------------------------------------------------- /include/symbol_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/symbol_table.inc -------------------------------------------------------------------------------- /include/ti84pce.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/ti84pce.inc -------------------------------------------------------------------------------- /include/ti84pce.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/ti84pce.sed -------------------------------------------------------------------------------- /include/ti84pceg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/ti84pceg.inc -------------------------------------------------------------------------------- /include/tiformat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/include/tiformat.inc -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/makefile -------------------------------------------------------------------------------- /src/capnhook.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/src/capnhook.asm -------------------------------------------------------------------------------- /src/capnhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/src/capnhook.h -------------------------------------------------------------------------------- /src/capnhook.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/src/capnhook.inc -------------------------------------------------------------------------------- /src/hook_equates.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/src/hook_equates.inc -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/src/makefile -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/test/makefile -------------------------------------------------------------------------------- /test/src/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/test/src/test.asm -------------------------------------------------------------------------------- /test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/capnhook/HEAD/test/src/test.c --------------------------------------------------------------------------------