瀏覽代碼

Bug fixes

master
Bryan Miller 5 年之前
父節點
當前提交
2e5ad3880a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/memory/mmc.js

+ 2
- 2
src/memory/mmc.js 查看文件

@@ -109,7 +109,7 @@ class MMC extends IMem{
for (let i=0; i < this.__switches.length; i++){
let pgs = this.__switches[i].mem.pages;
if (paddr < pgs){
this.__switches[i].mem.clearPage(addr);
this.__switches[i].mem.clearPage(paddr);
break;
}
paddr -= pgs;
@@ -119,7 +119,7 @@ class MMC extends IMem{

clear(){
this.__switches.forEach((s)=>{
s.clear();
s.mem.clear();
});
return this;
}

Loading…
取消
儲存