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
|
2016-02-28 18:29:37 +00:00
|
|
|
.import zerobss, callmain
|
2015-10-07 18:56:14 +00:00
|
|
|
.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 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
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
; Save space by putting some of the start-up code in the ONCE segment,
|
2015-10-14 20:52:09 +00:00
|
|
|
; which can be re-used by the BSS segment, the heap and the C stack.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-02-28 18:29:37 +00:00
|
|
|
jsr init
|
2015-10-14 20:52:09 +00:00
|
|
|
|
|
|
|
; 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
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
.segment "ONCE"
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2016-02-28 18:29:37 +00:00
|
|
|
init:
|
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.
|
|
|
|
|
2016-03-13 13:32:07 +00:00
|
|
|
lda #<(__MAIN_START__ + __MAIN_SIZE__)
|
|
|
|
ldx #>(__MAIN_START__ + __MAIN_SIZE__)
|
2015-10-05 09:47:43 +00:00
|
|
|
sta sp
|
|
|
|
stx sp+1 ; Set argument stack ptr
|
|
|
|
|
2016-02-28 18:29:37 +00:00
|
|
|
; Switch to the second charset.
|
|
|
|
|
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
|
|
|
|
2015-10-05 09:47:43 +00:00
|
|
|
; Call the module constructors.
|
|
|
|
|
2015-10-14 20:52:09 +00:00
|
|
|
jmp initlib
|
2015-10-05 09:47:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
.segment "INIT"
|
2015-10-09 16:00:41 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
mmusave:.res 1
|
2015-10-05 09:47:43 +00:00
|
|
|
spsave: .res 1
|
|
|
|
zpsave: .res zpspace
|