fix(bus): fix off by one error when reading from boot rom
This commit is contained in:
parent
e5fb07c4d1
commit
48ac8317a8
|
@ -79,7 +79,7 @@ impl Bus {
|
|||
match addr {
|
||||
0x0000..=0x3FFF => {
|
||||
// 16KB ROM bank 00
|
||||
if addr < 0x00FF {
|
||||
if addr < 0x100 {
|
||||
if let Some(boot) = self.boot {
|
||||
return boot[addr as usize];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue