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

@ -21,4 +21,7 @@ typedef struct {
bool cart_load(char *cart);
rom_header *get_rom_header();
rom_header *get_rom_header();
u8 cart_read(u16 address);
void cart_write(u16 address, u8 value);