apple2js/test/roms/65C02test.ts
Will Scullin 14b8e13f79
fix test
2020-11-15 18:27:35 -08:00

31 lines
688 B
TypeScript

// From https://github.com/Klaus2m5/6502_65C02_functional_tests
import fs from 'fs';
import path from 'path';
import { PageHandler } from '../../js/cpu6502';
import { byte } from '../../js/types';
export default class Test65C02 implements PageHandler {
private data: Buffer
constructor() {
this.data = fs.readFileSync(path.join(__dirname, '65C02_extended_opcodes_test.bin'));
}
start = () => {
return 0x00;
}
end = () => {
return 0xff;
}
read = (page: byte, off: byte) => {
return this.data[page << 8 | off];
}
write = (page: byte, off: byte, val: byte) => {
this.data[page << 8 | off] = val;
}
}