Prev: A67A Up: Map Next: A69C
A68E: set BASIC execute pointer to start of memory - 1
Used by the routines at A659 and E195.
A68E 18 CLC clear carry for add
A68F A5 2B LDA $2B get start of memory low byte
A691 69 FF ADC #$FF add -1 low byte
A693 85 7A STA $7A set BASIC execute pointer low byte
A695 A5 2C LDA $2C get start of memory high byte
A697 69 FF ADC #$FF add -1 high byte
A699 85 7B STA $7B save BASIC execute pointer high byte
A69B 60 RTS
Prev: A67A Up: Map Next: A69C