2002-11-24 11:18:24 +00:00
|
|
|
;
|
2000-05-28 13:40:48 +00:00
|
|
|
; Startup code for cc65 (C64 version)
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _exit
|
|
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
|
|
|
.import initlib, donelib
|
|
|
|
.import zerobss
|
|
|
|
.import callmain
|
|
|
|
.import RESTOR, BSOUT, CLRCH
|
|
|
|
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
|
|
|
.import __STACKSIZE__ ; Linker generated
|
|
|
|
.importzp ST
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "zeropage.inc"
|
|
|
|
.include "c64.inc"
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2009-12-09 12:42:24 +00:00
|
|
|
; Startup code
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.segment "STARTUP"
|
2009-12-09 12:42:24 +00:00
|
|
|
|
|
|
|
Start:
|
2000-05-28 13:40:48 +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
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Switch to second charset
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-24 19:13:19 +00:00
|
|
|
; Switch off the BASIC ROM
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda $01
|
|
|
|
pha ; Remember the value
|
|
|
|
and #$F8
|
|
|
|
ora #$06 ; Enable kernal+I/O, disable basic
|
|
|
|
sta $01
|
2002-11-24 19:13:19 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr zerobss
|
2002-11-24 19:13:19 +00:00
|
|
|
|
|
|
|
; Save system settings and setup the stack
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
pla
|
|
|
|
sta mmusave ; Save the memory configuration
|
2002-11-24 11:18:24 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
2000-05-28 13:40:48 +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-03-23 21:50:15 +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
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr callmain
|
2004-03-23 21:50:15 +00:00
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
; Back from main (This is also the _exit entry). Run module destructors
|
2004-03-23 21:50:15 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_exit: pha ; Save the return code on stack
|
|
|
|
jsr donelib
|
2000-05-28 13:40:48 +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
|
2000-05-28 13:40:48 +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 system stuff
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx spsave
|
|
|
|
txs ; Restore stack pointer
|
|
|
|
ldx mmusave
|
|
|
|
stx $01 ; Restore memory configuration
|
2004-03-08 20:38:58 +00:00
|
|
|
|
2012-01-01 19:58:31 +00:00
|
|
|
; Back to basic
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-22 23:50:45 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
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
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.bss
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|