diff --git a/js/mmu.ts b/js/mmu.ts index 024c6b6..2033a8b 100644 --- a/js/mmu.ts +++ b/js/mmu.ts @@ -808,9 +808,6 @@ export default class MMU implements Memory, Restorable { } public read(page: byte, off: byte) { - if (page === 0xff && off === 0xfc && this._intcxrom) { - this._initSwitches(); - } return this._readPages[page].read(page, off); }