fix(ppu): stub IO address 0xFF7F
Tetris now runs without requiring any local modifications
This commit is contained in:
parent
fe8598fd61
commit
d9db3e404f
|
@ -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),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue