Ver código fonte

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

master
Bryan Miller 5 anos atrás
pai
commit
fa33745af9
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      src/MOSCIA.js

+ 2
- 2
src/MOSCIA.js Ver arquivo

@@ -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;
}



Carregando…
Cancelar
Salvar