2002-08-07 05:18:13 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (Vic20 version)
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _exit
|
|
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
|
|
|
.import initlib, donelib
|
|
|
|
.import zerobss, push0
|
|
|
|
.import callmain
|
|
|
|
.import RESTOR, BSOUT, CLRCH
|
|
|
|
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
|
|
|
.import __STACKSIZE__ ; Linker generated
|
|
|
|
.importzp ST
|
|
|
|
|
|
|
|
.include "zeropage.inc"
|
|
|
|
.include "vic20.inc"
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
2009-12-09 12:42:24 +00:00
|
|
|
; Startup code
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.segment "STARTUP"
|
2009-12-09 12:42:24 +00:00
|
|
|
|
|
|
|
Start:
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2009-12-09 12:42:24 +00:00
|
|
|
; Save the zero page locations we need
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x
|
|
|
|
dex
|
|
|
|
bpl L1
|
2009-12-09 12:42:24 +00:00
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
; Switch to second charset
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
2002-08-07 05:18:13 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr zerobss
|
2002-08-07 05:18:13 +00:00
|
|
|
|
|
|
|
; Save system stuff and setup the stack
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
|
|
|
|
sta sp
|
|
|
|
lda #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
|
|
|
|
sta sp+1 ; Set argument stack ptr
|
2004-10-26 19:44:30 +00:00
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
; Call module constructors
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr initlib
|
2008-08-31 18:22:51 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
; Push arguments and call main()
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr callmain
|
2008-08-31 18:22:51 +00:00
|
|
|
|
|
|
|
; Back from main (This is also the _exit entry). Run module destructors
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_exit: pha ; Save the return code on stack
|
|
|
|
jsr donelib
|
2002-08-07 05:18:13 +00:00
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
|
|
|
bpl L2
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2004-03-02 17:08:07 +00:00
|
|
|
; Place the program return code into ST
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
pla
|
|
|
|
sta ST
|
2004-03-02 17:08:07 +00:00
|
|
|
|
2004-03-08 20:38:58 +00:00
|
|
|
; Restore the stack pointer
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx spsave
|
|
|
|
txs
|
2004-03-08 20:38:58 +00:00
|
|
|
|
2012-01-01 19:58:31 +00:00
|
|
|
; Back to basic
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2004-10-26 19:44:30 +00:00
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.segment "ZPSAVE"
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
zpsave: .res zpspace
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2013-02-12 22:39:38 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
.bss
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
spsave: .res 1
|