mirror of
https://github.com/badvision/jace.git
synced 2024-11-28 10:52:33 +00:00
Allow writes to C100-C8FF go to cards even if reads are going to the ROM.
This commit is contained in:
parent
633b514b38
commit
9f838d11f1
@ -128,7 +128,8 @@ public abstract class Card extends Device {
|
||||
|
||||
firmwareListener = memory.observe(RAMEvent.TYPE.ANY, baseRom, baseRom + 255, (e) -> {
|
||||
computer.getMemory().setActiveCard(slot);
|
||||
if (SoftSwitches.CXROM.isOff()) {
|
||||
// Sather 6-4: Writes will still go through even when CXROM inhibits slot ROM
|
||||
if (SoftSwitches.CXROM.isOff() || !e.getType().isRead()) {
|
||||
handleFirmwareAccess(e.getAddress() & 0x0ff, e.getType(), e.getNewValue(), e);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user