fix(bios): fix regression

was reading addr_latch + 8, which is a remnant from when I was faking
the pipeline
This commit is contained in:
Rekai Nyangadzayi Musuka 2022-10-22 15:33:36 -03:00
parent 712c58391d
commit 22979d9450
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ pub fn read(self: *Self, comptime T: type, r15: u32, addr: u32) T {
}
log.debug("Rejected read since r15=0x{X:0>8}", .{r15});
return @truncate(T, self._read(T, self.addr_latch + 8));
return @truncate(T, self._read(T, self.addr_latch));
}
pub fn dbgRead(self: *const Self, comptime T: type, r15: u32, addr: u32) T {