fix(ppu): stub IO address 0xFF7F

Tetris now runs without requiring any local modifications
This commit is contained in:
Rekai Nyangadzayi Musuka 2021-06-15 01:19:40 -05:00
parent fe8598fd61
commit d9db3e404f
1 changed files with 1 additions and 0 deletions

View File

@ -387,6 +387,7 @@ impl BusIo for Bus {
self.boot = None; self.boot = None;
} }
} }
0x7F => {} // Tetris tries to write to this non-existent IO Address
_ => unimplemented!("Unable to write to {:#06X} in I/O Registers", addr), _ => unimplemented!("Unable to write to {:#06X} in I/O Registers", addr),
}; };
} }