apple2js/js/roms/rom.ts
2021-03-06 15:07:06 -08:00

34 lines
823 B
TypeScript

import { MemoryPages, Restorable, byte, rom } from '../types';
export type ROMState = null;
export default class ROM implements MemoryPages, Restorable<ROMState> {
constructor(
private readonly startPage: byte,
private readonly endPage: byte,
private readonly rom: rom) {
const expectedLength = (endPage-startPage+1) * 256;
if (rom.length != expectedLength) {
throw Error(`rom does not have the correct length: expected ${expectedLength} was ${rom.length}`);
}
}
start() {
return this.startPage;
}
end() {
return this.endPage;
}
read(page: byte, off: byte) {
return this.rom[(page - this.startPage) << 8 | off];
}
write() {
}
getState() {
return null;
}
setState(_state: null) {
}
}