2002-08-07 05:18:13 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (Vic20 version)
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _exit
|
2009-07-31 12:05:42 +00:00
|
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
2004-10-26 19:44:30 +00:00
|
|
|
.import initlib, donelib, callirq
|
2002-08-07 05:18:13 +00:00
|
|
|
.import zerobss, push0
|
2003-03-10 21:21:46 +00:00
|
|
|
.import callmain
|
2002-11-19 23:02:47 +00:00
|
|
|
.import RESTOR, BSOUT, CLRCH
|
2005-07-25 17:05:52 +00:00
|
|
|
.import __INTERRUPTOR_COUNT__
|
2002-08-11 15:11:31 +00:00
|
|
|
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
2010-10-02 10:37:20 +00:00
|
|
|
.import __STACKSIZE__ ; Linker generated
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2002-08-07 19:28:23 +00:00
|
|
|
.include "zeropage.inc"
|
2002-08-11 15:11:31 +00:00
|
|
|
.include "vic20.inc"
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
2002-08-07 05:18:13 +00:00
|
|
|
; BASIC header with a SYS call
|
|
|
|
|
2009-12-09 12:42:24 +00:00
|
|
|
.segment "EXEHDR"
|
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
2004-02-02 13:34:12 +00:00
|
|
|
.word .version ; Line number
|
2002-08-11 15:11:31 +00:00
|
|
|
.byte $9E ; SYS token
|
2009-12-10 22:12:24 +00:00
|
|
|
.byte <(((Start / 1000) .mod 10) + '0')
|
|
|
|
.byte <(((Start / 100) .mod 10) + '0')
|
|
|
|
.byte <(((Start / 10) .mod 10) + '0')
|
|
|
|
.byte <(((Start / 1) .mod 10) + '0')
|
2002-08-07 05:18:13 +00:00
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2009-12-09 12:42:24 +00:00
|
|
|
; Startup code
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2009-12-09 12:42:24 +00:00
|
|
|
.segment "STARTUP"
|
|
|
|
|
|
|
|
Start:
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2009-12-09 12:42:24 +00:00
|
|
|
; Save the zero page locations we need
|
|
|
|
|
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x
|
|
|
|
dex
|
|
|
|
bpl L1
|
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
; Switch to second charset
|
|
|
|
|
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; Save system stuff and setup the stack
|
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
|
|
|
|
2010-10-02 10:37:20 +00:00
|
|
|
lda #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
|
2002-08-07 05:18:13 +00:00
|
|
|
sta sp
|
2010-10-02 10:37:20 +00:00
|
|
|
lda #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
|
2002-08-07 05:18:13 +00:00
|
|
|
sta sp+1 ; Set argument stack ptr
|
|
|
|
|
2004-10-26 19:44:30 +00:00
|
|
|
; If we have IRQ functions, chain our stub into the IRQ vector
|
|
|
|
|
2005-07-25 17:05:52 +00:00
|
|
|
lda #<__INTERRUPTOR_COUNT__
|
2004-10-26 19:44:30 +00:00
|
|
|
beq NoIRQ1
|
|
|
|
lda IRQVec
|
|
|
|
ldx IRQVec+1
|
|
|
|
sta IRQInd+1
|
|
|
|
stx IRQInd+2
|
|
|
|
lda #<IRQStub
|
|
|
|
ldx #>IRQStub
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
; Call module constructors
|
|
|
|
|
|
|
|
NoIRQ1: jsr initlib
|
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
; Push arguments and call main()
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
jsr callmain
|
|
|
|
|
|
|
|
; Back from main (This is also the _exit entry). Run module destructors
|
|
|
|
|
|
|
|
_exit: jsr donelib
|
2004-10-26 19:44:30 +00:00
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
; Reset the IRQ vector if we chained it.
|
2004-10-26 19:44:30 +00:00
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
pha ; Save the return code on stack
|
2005-07-25 17:05:52 +00:00
|
|
|
lda #<__INTERRUPTOR_COUNT__
|
2004-10-26 19:44:30 +00:00
|
|
|
beq NoIRQ2
|
|
|
|
lda IRQInd+1
|
|
|
|
ldx IRQInd+2
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
2002-08-07 05:18:13 +00:00
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
NoIRQ2: ldx #zpspace-1
|
2002-08-07 05:18:13 +00:00
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
|
|
|
bpl L2
|
|
|
|
|
2004-03-02 17:08:07 +00:00
|
|
|
; Place the program return code into ST
|
|
|
|
|
|
|
|
pla
|
|
|
|
sta ST
|
|
|
|
|
2004-03-08 20:38:58 +00:00
|
|
|
; Restore the stack pointer
|
|
|
|
|
|
|
|
ldx spsave
|
|
|
|
txs
|
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
; Reset changed vectors, back to basic
|
|
|
|
|
|
|
|
jmp RESTOR
|
|
|
|
|
|
|
|
|
2004-10-26 19:44:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; The IRQ vector jumps here, if condes routines are defined with type 2.
|
|
|
|
|
|
|
|
IRQStub:
|
|
|
|
cld ; Just to be sure
|
|
|
|
jsr callirq ; Call the functions
|
|
|
|
jmp IRQInd ; Jump to the saved IRQ vector
|
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
.data
|
|
|
|
|
2004-10-26 19:44:30 +00:00
|
|
|
IRQInd: jmp $0000
|
2002-08-07 05:18:13 +00:00
|
|
|
|
2008-07-03 19:39:14 +00:00
|
|
|
.segment "ZPSAVE"
|
|
|
|
|
|
|
|
zpsave: .res zpspace
|
|
|
|
|
2002-08-07 05:18:13 +00:00
|
|
|
.bss
|
|
|
|
|
|
|
|
spsave: .res 1
|