Quellcode durchsuchen

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

master
Bryan Miller vor 5 Jahren
Ursprung
Commit
fa33745af9
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/MOSCIA.js

+ 2
- 2
src/MOSCIA.js Datei anzeigen

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



Laden…
Abbrechen
Speichern