mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
b3cb64357f
* Use class fields instead of binding * classy tests * Fix typing
32 lines
690 B
TypeScript
32 lines
690 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'
|
|
|
|
const data = fs.readFileSync(path.join(__dirname, '65C02_extended_opcodes_test.bin'));
|
|
|
|
export default class Test65C02 implements PageHandler {
|
|
private data: Buffer
|
|
|
|
constructor() {
|
|
}
|
|
|
|
start = function() {
|
|
return 0x00;
|
|
}
|
|
|
|
end = function() {
|
|
return 0xff;
|
|
}
|
|
|
|
read = function(page: byte, off: byte) {
|
|
return data[page << 8 | off];
|
|
}
|
|
|
|
write = function(page: byte, off: byte, val: byte) {
|
|
data[page << 8 | off] = val;
|
|
}
|
|
}
|