2002-11-21 21:22:26 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (C16 version)
|
|
|
|
;
|
|
|
|
; Note: The C16 is actually the Plus/4 with just 16KB of memory. So many
|
|
|
|
; things are similar here, and we even use the plus4.inc include file.
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _exit
|
|
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
|
|
|
.import initlib, donelib
|
|
|
|
.import callmain, zerobss
|
|
|
|
.import MEMTOP, RESTOR, BSOUT, CLRCH
|
|
|
|
.importzp ST
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "zeropage.inc"
|
|
|
|
.include "plus4.inc"
|
2002-11-21 21:22:26 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2009-12-09 12:42:24 +00:00
|
|
|
; Startup code
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.segment "STARTUP"
|
2009-12-09 12:42:24 +00:00
|
|
|
|
|
|
|
Start:
|
2002-11-21 21:22:26 +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-11-21 21:22:26 +00:00
|
|
|
; Switch to second charset
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
2002-11-21 21:22:26 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr zerobss
|
2002-11-21 21:22:26 +00:00
|
|
|
|
|
|
|
; Save system stuff and setup the stack
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
tsx
|
|
|
|
stx spsave ; save system stk ptr
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
sec
|
|
|
|
jsr MEMTOP ; Get top memory
|
|
|
|
cpy #$80 ; We can only use the low 32K :-(
|
|
|
|
bcc MemOk
|
|
|
|
ldy #$80
|
|
|
|
ldx #$00
|
|
|
|
MemOk: stx sp
|
|
|
|
sty sp+1 ; set argument stack ptr
|
2009-02-22 18:16:13 +00:00
|
|
|
|
2002-11-21 21:22:26 +00:00
|
|
|
; Call module constructors
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr initlib
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
; Push arguments and call main()
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr callmain
|
2002-11-21 21:22:26 +00:00
|
|
|
|
|
|
|
; Call module destructors. This is also the _exit entry.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_exit: pha ; Save the return code on stack
|
|
|
|
jsr donelib ; Run module destructors
|
2002-11-21 21:22:26 +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-11-21 21:22:26 +00:00
|
|
|
|
2004-03-02 17:08:07 +00:00
|
|
|
; Store the 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-11-21 21:22:26 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2009-02-22 18:16: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
|
2002-11-21 21:22:26 +00:00
|
|
|
|
2013-02-12 22:39:38 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
|
2002-11-21 21:22:26 +00:00
|
|
|
.bss
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
spsave: .res 1
|