Skip to content

Commit 77bcaf6

Browse files
committed
Apple II log header bytes skipped
1 parent 469d656 commit 77bcaf6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/machine/apple2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export class AppleII extends BasicScanlineMachine implements AcceptsBIOS {
199199
}
200200
}
201201
loadRAMWithProgram() {
202-
console.log(`Loading program into Apple ][ RAM at \$${this.LOAD_BASE.toString(16)}`);
202+
console.log(`Loading program into Apple ][ RAM at \$${this.LOAD_BASE.toString(16)} (${this.HDR_SIZE} bytes skipped for header)`);
203203
// truncate if needed to fit into RAM
204204
const exedata = this.rom.slice(this.HDR_SIZE, this.HDR_SIZE + this.ram.length - this.LOAD_BASE);
205205
this.ram.set(exedata, this.LOAD_BASE);

0 commit comments

Comments
 (0)