Fix ROM card not resetting to base address 0x0

This commit is contained in:
pjht 2023-11-07 10:21:28 -06:00
parent c607697b7a
commit d361b5a090
Signed by: pjht
GPG Key ID: CA239FC6934E6F3A

View File

@ -125,6 +125,7 @@ impl Card for Rom {
fn reset(&mut self) {
self.enabled = true;
self.start = 0x0;
}
}