apple2js/test/roms/6502test.js

24 lines
562 B
JavaScript
Raw Normal View History

2017-12-20 17:07:09 +00:00
// From https://github.com/Klaus2m5/6502_65C02_functional_tests
2019-03-27 04:12:05 +00:00
import fs from 'fs';
import path from 'path';
2019-03-01 05:21:18 +00:00
export default function Test6502() {
var data = fs.readFileSync(path.join(__dirname, '6502_functional_test.bin'));
return {
start: function() {
return 0x00;
},
end: function() {
return 0xff;
},
read: function(page, off) {
2019-11-24 03:05:52 +00:00
return data[page << 8 | off];
},
write: function(page, off, val) {
2019-11-24 03:05:52 +00:00
data[page << 8 | off] = val;
}
};
}