MOS6520 looking mostly there.

This commit is contained in:
2025-07-29 13:12:33 -04:00
parent 8f6f9cb64d
commit 7ac8bd86ba
58 changed files with 742 additions and 422 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ impl RamRomComputer {
}
_ => {}
};
let (_, rom_data_bus) = self.rom.tick(address, data, control == 1);
let rom_data_bus = self.rom.signal_tick(self.address_bus ,self.data_bus, true ,true , true);
let (_, ram_data_bus) = self.ram.tick(address, data, control == 1, true);
0
}