소스 검색

MOSCIA Fixed typo and CNT is no longer automatically set to zero at the end of a phi2 tick.

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

+ 2
- 2
src/MOSCIA.js 파일 보기

@@ -75,7 +75,7 @@ function TimerATick(cia){
// If timer B is running, and timer B tracks timer A underflows
// tick timer B (or, tick it if CNT is positive)
if (BITM.isOn(cia.__CTB, 0)){
let cs = (this.__CTB & 0x60) >> 5;
let cs = (cia.__CTB & 0x60) >> 5;
if (cs === 2 || (cs === 3 && cia.__CNT === 1))
TimerBTick(cia);
}
@@ -148,7 +148,7 @@ function Tick(cia){
}
}
}
cia.__CNT = 0;
//cia.__CNT = 0;
}



Loading…
취소
저장