├── .gitignore ├── LICENSE ├── README.md ├── gameboy-doctor ├── images ├── example.jpg └── pokemon2.gif ├── opcode_annotations.json └── truth └── zipped └── cpu_instrs ├── 1.zip ├── 10.zip ├── 11.zip ├── 2.zip ├── 3.zip ├── 4.zip ├── 5.zip ├── 6.zip ├── 7.zip ├── 8.zip └── 9.zip /.gitignore: -------------------------------------------------------------------------------- 1 | truth/unzipped/cpu_instrs/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/README.md -------------------------------------------------------------------------------- /gameboy-doctor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/gameboy-doctor -------------------------------------------------------------------------------- /images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/images/example.jpg -------------------------------------------------------------------------------- /images/pokemon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/images/pokemon2.gif -------------------------------------------------------------------------------- /opcode_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/opcode_annotations.json -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/1.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/10.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/11.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/2.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/3.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/4.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/5.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/6.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/7.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/8.zip -------------------------------------------------------------------------------- /truth/zipped/cpu_instrs/9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert/gameboy-doctor/HEAD/truth/zipped/cpu_instrs/9.zip --------------------------------------------------------------------------------