├── LICENSE ├── README.md ├── c8dasm.py ├── disassembler.py ├── disassembly_writer.py ├── rom_loader.py ├── roms ├── Breakout.ch8 └── test.rom ├── test_dasm.py └── test_opcodes.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/README.md -------------------------------------------------------------------------------- /c8dasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/c8dasm.py -------------------------------------------------------------------------------- /disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/disassembler.py -------------------------------------------------------------------------------- /disassembly_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/disassembly_writer.py -------------------------------------------------------------------------------- /rom_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/rom_loader.py -------------------------------------------------------------------------------- /roms/Breakout.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/roms/Breakout.ch8 -------------------------------------------------------------------------------- /roms/test.rom: -------------------------------------------------------------------------------- 1 | ` -------------------------------------------------------------------------------- /test_dasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/test_dasm.py -------------------------------------------------------------------------------- /test_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhanrot/c8dasm/HEAD/test_opcodes.py --------------------------------------------------------------------------------