mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
34 lines
823 B
TypeScript
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) {
|
|
}
|
|
}
|