1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Don't page if acknowleding interrupts.

This commit is contained in:
Thomas Harte 2024-01-02 22:23:40 -05:00
parent ce2337f91e
commit 2447029631

View File

@ -288,9 +288,8 @@ template <bool has_scsi_bus> class ConcreteMachine:
evaluate_interrupts();
// TODO: NMI
}
// latch the paged ROM in case external hardware is being emulated
} else {
// Latch the paged ROM in case external hardware is being emulated.
active_rom_ = *value & 0xf;
// apply the ULA's test
@ -304,6 +303,7 @@ template <bool has_scsi_bus> class ConcreteMachine:
}
}
}
}
break;
case 0xfe06:
if(!isReadOperation(operation)) {