Initial cpu and instruction parsing

This commit is contained in:
2025-01-30 16:27:27 -07:00
parent 945b82a3ca
commit cd588671c4
12 changed files with 303 additions and 11 deletions

View File

@ -173,4 +173,15 @@ bool cart_load(char *cart) {
}
return true;
}
u8 cart_read(u16 address){
//for now ROM ONLY type supported...
return ctx.rom_data[address];
}
void cart_write(u16 address, u8 value){
NO_IMPL
}