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
|
2015-10-05 09:47:43 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.import initlib, donelib
|
2015-10-07 18:56:14 +00:00
|
|
|
.import moveinit, zerobss, callmain
|
|
|
|
.import BSOUT
|
2015-10-14 20:52:09 +00:00
|
|
|
.import __MAIN_START__, __MAIN_SIZE__ ; Linker generated
|
2015-10-08 09:05:48 +00:00
|
|
|
.import __STACKSIZE__ ; from configure file
|
2013-05-09 11:56:54 +00:00
|
|
|
.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
|
|
|
|
2015-10-05 09:47:43 +00:00
|
|
|
.segment "STARTUP"
|
|
|
|
|
|
|
|
Start:
|
2009-12-09 12:42:24 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Switch to the second charset.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-08-23 18:05:36 +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
|
2015-10-05 09:47:43 +00:00
|
|
|
sta mmusave ; Save the memory configuration
|
2013-05-09 11:56:54 +00:00
|
|
|
and #$F8
|
2014-08-23 18:05:36 +00:00
|
|
|
ora #$06 ; Enable Kernal+I/O, disable BASIC
|
2013-05-09 11:56:54 +00:00
|
|
|
sta $01
|
2002-11-24 19:13:19 +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
|
|
|
|
2015-10-05 09:47:43 +00:00
|
|
|
; Allow some re-entrancy by skipping the next task if it already was done.
|
2015-10-09 16:00:41 +00:00
|
|
|
; This sometimes can let us rerun the program without reloading it.
|
2004-03-23 21:50:15 +00:00
|
|
|
|
2015-10-07 18:56:14 +00:00
|
|
|
ldx move_init
|
2015-10-05 09:47:43 +00:00
|
|
|
beq L0
|
2008-08-31 18:22:51 +00:00
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
; Move the INIT segment from where it was loaded (over the bss segments)
|
|
|
|
; into where it must be run (over the BSS segment).
|
2008-08-31 18:22:51 +00:00
|
|
|
|
2015-10-07 18:56:14 +00:00
|
|
|
jsr moveinit
|
2015-10-14 20:52:09 +00:00
|
|
|
dec move_init ; Set to false
|
2015-10-05 09:47:43 +00:00
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
; Save space by putting some of the start-up code in the INIT segment,
|
|
|
|
; which can be re-used by the BSS segment, the heap and the C stack.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
L0: jsr runinit
|
|
|
|
|
|
|
|
; Clear the BSS data.
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; Push the command-line arguments; and, call main().
|
|
|
|
|
|
|
|
jsr callmain
|
2004-03-23 21:50:15 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Back from main() [this is also the exit() entry]. Run the 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
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Copy back the zero-page stuff.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
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
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Place the program return code into BASIC's status variable.
|
2004-03-02 17:08:07 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
pla
|
|
|
|
sta ST
|
2004-03-02 17:08:07 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Restore the system stuff.
|
2004-03-08 20:38:58 +00:00
|
|
|
|
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
|
|
|
|
2014-08-23 18:05:36 +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
|
|
|
|
2015-10-05 09:47:43 +00:00
|
|
|
|
2002-11-22 23:50:45 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
|
2015-10-05 09:47:43 +00:00
|
|
|
.segment "INIT"
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
runinit:
|
2015-10-05 09:47:43 +00:00
|
|
|
|
|
|
|
; Save the zero-page locations that we need.
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2015-10-05 09:47:43 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x
|
|
|
|
dex
|
|
|
|
bpl L1
|
|
|
|
|
|
|
|
; Set up the stack.
|
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
lda #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
|
|
|
|
ldx #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
|
2015-10-05 09:47:43 +00:00
|
|
|
sta sp
|
|
|
|
stx sp+1 ; Set argument stack ptr
|
|
|
|
|
|
|
|
; Call the module constructors.
|
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
jmp initlib
|
2015-10-05 09:47:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
|
|
|
.data
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2015-10-09 16:00:41 +00:00
|
|
|
; These two variables were moved out of the BSS segment, and into DATA, because
|
|
|
|
; we need to use them before INIT is moved off of BSS, and before BSS is zeroed.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
mmusave:.res 1
|
2015-10-05 09:47:43 +00:00
|
|
|
spsave: .res 1
|
2015-10-09 16:00:41 +00:00
|
|
|
|
2015-10-07 18:56:14 +00:00
|
|
|
move_init:
|
2015-10-05 09:47:43 +00:00
|
|
|
.byte 1
|
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
.segment "INITBSS"
|
2015-10-05 09:47:43 +00:00
|
|
|
|
|
|
|
zpsave: .res zpspace
|