Created
May 9, 2025 10:39
-
-
Save RGBA-CRT/bfe1f165e39ebf2b25b681b8ae749006 to your computer and use it in GitHub Desktop.
Kazzo/Anago script for DiskSystem BIOS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Kazzo/Anago script for DiskSystem BIOS. | |
| DiskSystem BIOS dumping is not surpported original Kazzo. only tested on tuna. | |
| */ | |
| board <- { | |
| mappernum = 0, | |
| cpu_rom = { | |
| size_base = 0x2000, size_max = 0x2000, banksize = 0x2000 | |
| }, | |
| ppu_rom = { | |
| size_base = 0, size_max = 0, banksize = 0x2000 | |
| }, | |
| ppu_ramfind = false, vram_mirrorfind = true | |
| }; | |
| function cpu_dump(d, pagesize, banksize) { | |
| cpu_read(d, 0xE000, banksize); | |
| } | |
| function ppu_dump(d, pagesize, banksize) { | |
| ppu_read(d, 0, banksize); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment