1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-23 20:29:42 +00:00

Merge pull request #1300 from TomHarte/ElectronPaging

Don't page if acknowleding interrupts.
This commit is contained in:
Thomas Harte 2024-01-02 22:34:11 -05:00 committed by GitHub
commit 439535e44b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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