瀏覽代碼

Fixed issues with interrupts. Fixed bugs in TimerA.

master
Bryan Miller 5 年之前
父節點
當前提交
0d26e362ad
共有 1 個檔案被更改,包括 13 行新增10 行删除
  1. +13
    -10
      src/MOSCIA.js

+ 13
- 10
src/MOSCIA.js 查看文件



function EnableICBit(cia, pos){ function EnableICBit(cia, pos){
v = 1 << pos; v = 1 << pos;
cia.__IC = cia.__IC | v;
// Enabling any bit enables bit 7 as well!
cia.__IC = cia.__IC | 0x80;
if ((cia.__ICMask & v) === 0){
cia.__IC = cia.__IC | v;
// Enabling any bit enables bit 7 as well!
cia.__IC = cia.__IC | 0x80;
}
} }




cia.__timerA -= 1; cia.__timerA -= 1;
} else { } else {
// Check if Timer A is continuous // Check if Timer A is continuous
if (BITM.isOn(cia.__CTA, 3) === 0){
if (BITM.val(cia.__CTA, 3) === 0){
cia.__timerA = cia.__timerALatch; cia.__timerA = cia.__timerALatch;
} else { } else {
// Not continuous, so clear bit 0 (stop timer). // Not continuous, so clear bit 0 (stop timer).
if (cia.__timerB > 0){ if (cia.__timerB > 0){
cia.__timerB -= 1; cia.__timerB -= 1;
} else { } else {
if (BITM.isOn(cia.__CTB, 3) === 0){
if (BITM.val(cia.__CTB, 3) === 0){
cia.__timerB = cia.__timerBLatch; cia.__timerB = cia.__timerBLatch;
} else { } else {
cia.__CTB = BITM.clear(cia.__CTB, 0); cia.__CTB = BITM.clear(cia.__CTB, 0);
if (BITM.isOn(cia.__CTA, 1) && !BITM.isOn(cia.__CTA, 2)) if (BITM.isOn(cia.__CTA, 1) && !BITM.isOn(cia.__CTA, 2))
cia.__PDB = BITM.clear(cia.__PDB, 6); cia.__PDB = BITM.clear(cia.__PDB, 6);


if (!BITM.isOn(cia.__CTA, 5))
if (!BITM.isOn(cia.__CTA, 5)){
TimerATick(cia); TimerATick(cia);
}
} }
if (BITM.isOn(cia.__CTB, 0)){ if (BITM.isOn(cia.__CTB, 0)){
if (BITM.isOn(cia.__CTB, 1) && !BITM.isOn(cia.__CTB, 2)) if (BITM.isOn(cia.__CTB, 1) && !BITM.isOn(cia.__CTB, 2))
case 0x04: // Timer A Low case 0x04: // Timer A Low
val = (this.__timerA & 0x00FF); break; val = (this.__timerA & 0x00FF); break;
case 0x05: // Timer A High case 0x05: // Timer A High
val = ((this.__timerA & 0xFF00) >> 4); break;
val = ((this.__timerA & 0xFF00) >> 8); break;
case 0x06: // Timer B Low case 0x06: // Timer B Low
val = (this.__timerB & 0x00FF); break; val = (this.__timerB & 0x00FF); break;
case 0x07: // Timer B High case 0x07: // Timer B High
val = ((this.__timerB & 0xFF00) >> 4); break;
val = ((this.__timerB & 0xFF00) >> 8); break;
case 0x08: // 10th of Sec Reg case 0x08: // 10th of Sec Reg
val = (this.__TODLatch !== null) ? this.__TODLatch[0] : this.__TOD[0]; val = (this.__TODLatch !== null) ? this.__TODLatch[0] : this.__TOD[0];
this.__TODLatch = null; this.__TODLatch = null;
this.__timerALatch = (this.__timerALatch & 0xFF00) | (d & 0xFF); this.__timerALatch = (this.__timerALatch & 0xFF00) | (d & 0xFF);
break; break;
case 0x05: // Timer A High case 0x05: // Timer A High
this.__timerALatch = (this.__timerALatch & 0x00FF) | ((d & 0xFF) << 4);
this.__timerALatch = (this.__timerALatch & 0x00FF) | ((d & 0xFF) << 8);
break break
case 0x06: // Timer B Low case 0x06: // Timer B Low
this.__timerBLatch = (this.__timerBLatch & 0xFF00) | (d & 0xFF); this.__timerBLatch = (this.__timerBLatch & 0xFF00) | (d & 0xFF);
break; break;
case 0x07: // Timer B High case 0x07: // Timer B High
this.__timerBLatch = (this.__timerBLatch & 0x00FF) | ((d & 0xFF) << 4);
this.__timerBLatch = (this.__timerBLatch & 0x00FF) | ((d & 0xFF) << 8);
break; break;
case 0x08: // 10th of Sec Reg case 0x08: // 10th of Sec Reg
if (this.__TODTick < 0){ if (this.__TODTick < 0){

Loading…
取消
儲存