소스 검색

Bug fixes

master
Bryan Miller 5 년 전
부모
커밋
2e5ad3880a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/memory/mmc.js

+ 2
- 2
src/memory/mmc.js 파일 보기

for (let i=0; i < this.__switches.length; i++){ for (let i=0; i < this.__switches.length; i++){
let pgs = this.__switches[i].mem.pages; let pgs = this.__switches[i].mem.pages;
if (paddr < pgs){ if (paddr < pgs){
this.__switches[i].mem.clearPage(addr);
this.__switches[i].mem.clearPage(paddr);
break; break;
} }
paddr -= pgs; paddr -= pgs;


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

Loading…
취소
저장