Skip to content

Instantly share code, notes, and snippets.

@RGBA-CRT
Created May 9, 2025 10:39
Show Gist options
  • Save RGBA-CRT/bfe1f165e39ebf2b25b681b8ae749006 to your computer and use it in GitHub Desktop.
Save RGBA-CRT/bfe1f165e39ebf2b25b681b8ae749006 to your computer and use it in GitHub Desktop.
Kazzo/Anago script for DiskSystem BIOS.
/*
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