From f53e50117e9b4d35ff98e221aafdc944fab738ce Mon Sep 17 00:00:00 2001 From: Will Scullin Date: Sat, 17 Apr 2021 11:43:53 -0700 Subject: [PATCH] remove sather misreading --- js/mmu.ts | 3 --- 1 file changed, 3 deletions(-) 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); }