2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (PET version)
|
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
2000-11-23 19:05:32 +00:00
|
|
|
.export _exit
|
2000-11-22 22:19:09 +00:00
|
|
|
.import initlib, donelib
|
2000-11-23 19:05:32 +00:00
|
|
|
.import zerobss, push0
|
2003-03-10 21:21:46 +00:00
|
|
|
.import callmain
|
2002-11-19 23:02:47 +00:00
|
|
|
.import CLRCH, BSOUT
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-05-26 09:09:10 +00:00
|
|
|
.include "zeropage.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
.include "pet.inc"
|
|
|
|
.include "../cbm/cbm.inc"
|
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Place the startup code in a special segment.
|
2000-09-07 21:49:13 +00:00
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
.segment "STARTUP"
|
|
|
|
|
|
|
|
; BASIC header with a SYS call
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
|
|
|
.word 1000 ; Line number
|
|
|
|
.byte $9E,"1037" ; SYS 1037
|
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Actual code
|
|
|
|
|
2000-10-30 21:46:45 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
2002-11-22 17:43:30 +00:00
|
|
|
sta zpsave,x ; Save the zero page locations we need
|
2000-10-30 21:46:45 +00:00
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L1
|
|
|
|
|
|
|
|
; Close open files
|
|
|
|
|
|
|
|
jsr CLRCH
|
|
|
|
|
|
|
|
; Switch to second charset
|
|
|
|
|
|
|
|
lda #14
|
|
|
|
; sta $E84C ; See PET FAQ
|
|
|
|
jsr BSOUT
|
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; Save system stuff and setup the stack
|
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
|
|
|
|
|
|
|
lda MEMSIZE
|
|
|
|
sta sp
|
|
|
|
lda MEMSIZE+1
|
|
|
|
sta sp+1 ; Set argument stack ptr
|
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Call module constructors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
jsr initlib
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
; Push arguments and call main()
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
jsr callmain
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Call module destructors. This is also the _exit entry.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
_exit: jsr donelib ; Run module destructors
|
|
|
|
|
|
|
|
; Restore system stuff
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
ldx spsave
|
|
|
|
txs ; Restore stack pointer
|
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2000-10-30 21:46:45 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L2
|
|
|
|
|
|
|
|
; Back to basic
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.data
|
|
|
|
|
|
|
|
zpsave: .res zpspace
|
|
|
|
|
|
|
|
.bss
|
|
|
|
|
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|
|
|
|
|