more handling
This commit is contained in:
parent
acbddcb08f
commit
25f45e18f7
|
@ -151,6 +151,16 @@ impl Memory {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
0xFF04 => self.io[addr_l] = 0,
|
0xFF04 => self.io[addr_l] = 0,
|
||||||
|
0xFF00 | 0xFF11 | 0xFF14 | 0xFF16 | 0xFF19 | 0xFF1E | 0xFF23 | 0xFF26 | 0xFF41
|
||||||
|
| 0xFF4D | 0xFF56 => {
|
||||||
|
// mixed read/write addresses...
|
||||||
|
// need to fill these out more...
|
||||||
|
// just seeing what breaks...
|
||||||
|
}
|
||||||
|
0xFF44 | 0xFF76 | 0xFF77 => {
|
||||||
|
// read-only addresses
|
||||||
|
println!("BANNED write: {:#X} to {:#X}", data, address);
|
||||||
|
}
|
||||||
_ => {
|
_ => {
|
||||||
self.io[addr_l] = data;
|
self.io[addr_l] = data;
|
||||||
// panic!("passed non-io address to io handler!");
|
// panic!("passed non-io address to io handler!");
|
||||||
|
|
Loading…
Reference in a new issue