18 lines
434 B
NASM
18 lines
434 B
NASM
#if VERBOSE = 1
|
|
LASTINIT SET .
|
|
#endif
|
|
|
|
; this is at $801
|
|
; and it MUST be exactly at this location in order to autostart
|
|
; 10 SYS2060 ($80c) BASIC autostart
|
|
BYTE #$0b,#$08,#$0a,#$00,#$9e,#$32,#$30,#$36,#$31,#$00,#$00,#$00
|
|
|
|
; this is at (2061 dec)=($80d)
|
|
; and it MUST be exactly after the above BASIC statement
|
|
. = $80d
|
|
jmp start
|
|
|
|
#if VERBOSE = 1
|
|
ECHO "basic.asm @ ",LASTINIT,"len:",(. - LASTINIT)
|
|
#endif
|