From 5f0d07623d7c4b5d3dfe8b879e675f65a13ad6da Mon Sep 17 00:00:00 2001 From: Will Scullin Date: Tue, 9 Mar 2021 06:37:34 -0800 Subject: [PATCH] Revert slot 3 rom change --- js/mmu.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/mmu.ts b/js/mmu.ts index 94fc665..1cfb141 100644 --- a/js/mmu.ts +++ b/js/mmu.ts @@ -394,10 +394,6 @@ export default class MMU implements Memory, Restorable { this._readPages[idx] = this._pages[idx][1]; this._writePages[idx] = this._pages[idx][1]; } - if (this._slot3rom) { - this._readPages[0xc3] = this._pages[0xc3][0]; - this._writePages[0xc3] = this._pages[0xc3][0]; - } } else { for (let idx = 0xc1; idx < 0xd0; idx++) { this._readPages[idx] = this._pages[idx][0];