Add test files.

This commit is contained in:
Will Scullin 2019-11-23 12:17:49 -08:00
parent ef46a9a7ba
commit ff98e1916a
No known key found for this signature in database
GPG Key ID: 9092A5C0A673416B
5 changed files with 18715 additions and 1 deletions

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

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('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