Merge pull request #3 from whscullin/whscullin/new_cpu

Update 6502.
This commit is contained in:
Will Scullin 2019-11-23 15:32:28 -08:00 committed by GitHub
commit acfc295b9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 19159 additions and 189 deletions

View File

@ -40,6 +40,7 @@
}, {
"files": [ "test/*"],
"env": {
"node": true,
"jest": true
}
}, {

View File

@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [12.x]
steps:
- uses: actions/checkout@v1

View File

@ -79,6 +79,7 @@ export default function ACI(cpu, cb) {
}
}
} else {
if (cpu.sync()) {
switch (off) {
case 0x00:
_recording = false;
@ -120,6 +121,7 @@ export default function ACI(cpu, cb) {
break;
}
}
}
return result;
},
write: function aci_write() {},

File diff suppressed because it is too large Load Diff

48
test/cpu.spec.js Normal file
View File

@ -0,0 +1,48 @@
import CPU6502 from '../js/cpu6502';
import Test6502 from './roms/6502test';
import Test65C02 from './roms/65C02test';
import { toHex } from '../js/util';
describe.skip('CPU', function () {
var cpu;
var lastPC = 0;
var done = false;
function traceCB() {
var pc = cpu.getPC();
done = lastPC == pc;
lastPC = pc;
}
describe('6502', function () {
it('completes the test ROM', function () {
cpu = new CPU6502();
var test = new Test6502();
cpu.addPageHandler(test);
cpu.setPC(0x400);
do {
cpu.stepCyclesDebug(1000, traceCB);
} while (!done);
expect(toHex(lastPC)).toEqual(toHex(0x3469));
});
});
describe('65C02', function () {
it('completes the test ROM', function () {
cpu = new CPU6502({'65C02': true});
var test = new Test65C02();
cpu.addPageHandler(test);
cpu.setPC(0x400);
do {
cpu.stepCyclesDebug(1000, traceCB);
} while (!done);
expect(toHex(lastPC)).toEqual(toHex(0x24f1));
});
});
});

2240
test/cpu6502.spec.js Normal file

File diff suppressed because it is too large Load Diff

8213
test/roms/6502test.js Normal file

File diff suppressed because it is too large Load Diff

8213
test/roms/65C02test.js Normal file

File diff suppressed because it is too large Load Diff