├── .gitignore ├── Makefile ├── README.md ├── SPOILERS.md ├── asm.py ├── emu.c ├── flag.txt ├── game.asm ├── game.bin └── h4x.py /.gitignore: -------------------------------------------------------------------------------- 1 | /emu 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/README.md -------------------------------------------------------------------------------- /SPOILERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/SPOILERS.md -------------------------------------------------------------------------------- /asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/asm.py -------------------------------------------------------------------------------- /emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/emu.c -------------------------------------------------------------------------------- /flag.txt: -------------------------------------------------------------------------------- 1 | flag{the-flag-goes-here} 2 | -------------------------------------------------------------------------------- /game.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/game.asm -------------------------------------------------------------------------------- /game.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/game.bin -------------------------------------------------------------------------------- /h4x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanda-phi/cpuadventure/HEAD/h4x.py --------------------------------------------------------------------------------