We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469d656 commit 77bcaf6Copy full SHA for 77bcaf6
1 file changed
src/machine/apple2.ts
@@ -199,7 +199,7 @@ export class AppleII extends BasicScanlineMachine implements AcceptsBIOS {
199
}
200
201
loadRAMWithProgram() {
202
- console.log(`Loading program into Apple ][ RAM at \$${this.LOAD_BASE.toString(16)}`);
+ console.log(`Loading program into Apple ][ RAM at \$${this.LOAD_BASE.toString(16)} (${this.HDR_SIZE} bytes skipped for header)`);
203
// truncate if needed to fit into RAM
204
const exedata = this.rom.slice(this.HDR_SIZE, this.HDR_SIZE + this.ram.length - this.LOAD_BASE);
205
this.ram.set(exedata, this.LOAD_BASE);
0 commit comments