mirror of
https://github.com/whscullin/apple1js.git
synced 2024-12-26 13:31:40 +00:00
Convert RAM to Typescript
This commit is contained in:
parent
d7ced8c03d
commit
418c714c45
57
js/ram.js
57
js/ram.js
@ -1,57 +0,0 @@
|
|||||||
/* -*- mode: JavaScript; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
||||||
/* Copyright 2010-2019Will Scullin <scullin@scullinsteel.com>
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
||||||
* documentation for any purpose is hereby granted without fee, provided that
|
|
||||||
* the above copyright notice appear in all copies and that both that
|
|
||||||
* copyright notice and this permission notice appear in supporting
|
|
||||||
* documentation. No representations are made about the suitability of this
|
|
||||||
* software for any purpose. It is provided "as is" without express or
|
|
||||||
* implied warranty.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { base64_decode, base64_encode } from './base64';
|
|
||||||
import { allocMemPages } from './util';
|
|
||||||
|
|
||||||
export default function RAM(sp, ep) {
|
|
||||||
var mem;
|
|
||||||
var start_page = sp;
|
|
||||||
var end_page = ep;
|
|
||||||
|
|
||||||
mem = allocMemPages(ep - sp + 1);
|
|
||||||
|
|
||||||
for (var page = 0; page <= ep; page++) {
|
|
||||||
for (var off = 0; off < 0x100; off++) {
|
|
||||||
mem[page * 0x100 + off] = 0; // Math.floor(Math.random()*256);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
start: function() {
|
|
||||||
return start_page;
|
|
||||||
},
|
|
||||||
end: function() {
|
|
||||||
return end_page;
|
|
||||||
},
|
|
||||||
read: function(page, off) {
|
|
||||||
return mem[(page - start_page) * 0x100 + off];
|
|
||||||
},
|
|
||||||
write: function(page, off, val) {
|
|
||||||
mem[(page - start_page) * 0x100 + off] = val;
|
|
||||||
},
|
|
||||||
|
|
||||||
getState: function() {
|
|
||||||
return {
|
|
||||||
start: start_page,
|
|
||||||
end: end_page,
|
|
||||||
mem: base64_encode(mem)
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
setState: function(state) {
|
|
||||||
start_page = state.start;
|
|
||||||
end_page = state.end;
|
|
||||||
mem = base64_decode(state.mem);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
61
js/ram.ts
Normal file
61
js/ram.ts
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/* Copyright 2010-2023 Will Scullin <scullin@scullinsteel.com>
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||||
|
* documentation for any purpose is hereby granted without fee, provided that
|
||||||
|
* the above copyright notice appear in all copies and that both that
|
||||||
|
* copyright notice and this permission notice appear in supporting
|
||||||
|
* documentation. No representations are made about the suitability of this
|
||||||
|
* software for any purpose. It is provided "as is" without express or
|
||||||
|
* implied warranty.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { base64_decode, base64_encode } from "./base64";
|
||||||
|
import { allocMemPages } from "./util";
|
||||||
|
import type { byte } from "./types";
|
||||||
|
|
||||||
|
export interface RAMState {
|
||||||
|
start: byte;
|
||||||
|
end: byte;
|
||||||
|
mem: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class RAM {
|
||||||
|
mem: Uint8Array | byte[];
|
||||||
|
|
||||||
|
constructor(private start_page: byte, private end_page: byte) {
|
||||||
|
this.mem = allocMemPages(end_page - start_page + 1);
|
||||||
|
|
||||||
|
for (var page = 0; page <= end_page; page++) {
|
||||||
|
for (var off = 0; off < 0x100; off++) {
|
||||||
|
this.mem[page * 0x100 + off] = 0; // Math.floor(Math.random()*256);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
start() {
|
||||||
|
return this.start_page;
|
||||||
|
}
|
||||||
|
end() {
|
||||||
|
return this.end_page;
|
||||||
|
}
|
||||||
|
read(page: byte, off: byte) {
|
||||||
|
return this.mem[(page - this.start_page) * 0x100 + off];
|
||||||
|
}
|
||||||
|
write(page: byte, off: byte, val: byte) {
|
||||||
|
this.mem[(page - this.start_page) * 0x100 + off] = val;
|
||||||
|
}
|
||||||
|
|
||||||
|
getState(): RAMState {
|
||||||
|
return {
|
||||||
|
start: this.start_page,
|
||||||
|
end: this.end_page,
|
||||||
|
mem: base64_encode(this.mem),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
setState(state: RAMState) {
|
||||||
|
this.start_page = state.start;
|
||||||
|
this.end_page = state.end;
|
||||||
|
this.mem = base64_decode(state.mem);
|
||||||
|
}
|
||||||
|
}
|
16
js/types.ts
Normal file
16
js/types.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* Copyright 2023 Will Scullin <scullin@scullinsteel.com>
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||||
|
* documentation for any purpose is hereby granted without fee, provided that
|
||||||
|
* the above copyright notice appear in all copies and that both that
|
||||||
|
* copyright notice and this permission notice appear in supporting
|
||||||
|
* documentation. No representations are made about the suitability of this
|
||||||
|
* software for any purpose. It is provided "as is" without express or
|
||||||
|
* implied warranty.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export type byte = number;
|
||||||
|
|
||||||
|
export type word = number;
|
||||||
|
|
||||||
|
export type address = word;
|
Loading…
Reference in New Issue
Block a user