2002-11-24 11:18:24 +00:00
|
|
|
;
|
2000-05-28 13:40:48 +00:00
|
|
|
; Startup code for cc65 (C64 version)
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _exit
|
2009-07-31 12:05:42 +00:00
|
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
2004-04-04 14:28:57 +00:00
|
|
|
.import initlib, donelib, callirq
|
2004-10-08 19:56:29 +00:00
|
|
|
.import zerobss
|
2003-03-10 21:21:46 +00:00
|
|
|
.import callmain
|
2002-11-19 23:02:47 +00:00
|
|
|
.import RESTOR, BSOUT, CLRCH
|
2004-09-20 10:24:59 +00:00
|
|
|
.import __INTERRUPTOR_COUNT__
|
2001-03-08 14:48:00 +00:00
|
|
|
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
2010-10-02 10:37:20 +00:00
|
|
|
.import __STACKSIZE__ ; Linker generated
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-05-26 09:09:10 +00:00
|
|
|
.include "zeropage.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
.include "c64.inc"
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; BASIC header with a SYS call
|
|
|
|
|
2009-12-09 12:42:24 +00:00
|
|
|
.segment "EXEHDR"
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
2004-02-02 13:34:12 +00:00
|
|
|
.word .version ; Line number
|
2009-11-23 12:01:24 +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')
|
2000-05-28 13:40:48 +00:00
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2009-12-09 12:42:24 +00:00
|
|
|
; Startup code
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2009-12-09 12:42:24 +00:00
|
|
|
.segment "STARTUP"
|
|
|
|
|
|
|
|
Start:
|
2000-05-28 13:40:48 +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
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Switch to second charset
|
|
|
|
|
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
|
|
|
|
2002-11-24 19:13:19 +00:00
|
|
|
; Switch off the BASIC ROM
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda $01
|
2002-11-24 19:13:19 +00:00
|
|
|
pha ; Remember the value
|
2000-05-28 13:40:48 +00:00
|
|
|
and #$F8
|
|
|
|
ora #$06 ; Enable kernal+I/O, disable basic
|
|
|
|
sta $01
|
2002-11-24 19:13:19 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; Save system settings and setup the stack
|
|
|
|
|
|
|
|
pla
|
|
|
|
sta mmusave ; Save the memory configuration
|
2002-11-24 11:18:24 +00:00
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2010-10-02 10:37:20 +00:00
|
|
|
lda #<(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
|
2000-05-28 13:40:48 +00:00
|
|
|
sta sp
|
2010-10-02 10:37:20 +00:00
|
|
|
lda #>(__RAM_START__ + __RAM_SIZE__ + __STACKSIZE__)
|
2000-05-28 13:40:48 +00:00
|
|
|
sta sp+1 ; Set argument stack ptr
|
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
; If we have IRQ functions, chain our stub into the IRQ vector
|
|
|
|
|
2004-09-20 10:24:59 +00:00
|
|
|
lda #<__INTERRUPTOR_COUNT__
|
2004-03-23 21:50:15 +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
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2008-08-31 18:22:51 +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
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
_exit: jsr donelib
|
|
|
|
|
|
|
|
|
|
|
|
; Reset the IRQ vector if we chained it.
|
|
|
|
|
|
|
|
pha ; Save the return code on stack
|
2004-09-20 10:24:59 +00:00
|
|
|
lda #<__INTERRUPTOR_COUNT__
|
2004-03-23 21:50:15 +00:00
|
|
|
beq NoIRQ2
|
|
|
|
lda IRQInd+1
|
|
|
|
ldx IRQInd+2
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2008-08-31 18:22:51 +00:00
|
|
|
NoIRQ2: ldx #zpspace-1
|
2004-03-23 21:50:15 +00:00
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
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 system stuff
|
|
|
|
|
|
|
|
ldx spsave
|
|
|
|
txs ; Restore stack pointer
|
|
|
|
ldx mmusave
|
|
|
|
stx $01 ; Restore memory configuration
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Reset changed vectors, back to basic
|
|
|
|
|
|
|
|
jmp RESTOR
|
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; The IRQ vector jumps here, if condes routines are defined with type 2.
|
|
|
|
|
|
|
|
IRQStub:
|
|
|
|
cld ; Just to be sure
|
2004-04-04 14:28:57 +00:00
|
|
|
jsr callirq ; Call the functions
|
2004-03-23 21:50:15 +00:00
|
|
|
jmp IRQInd ; Jump to the saved IRQ vector
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-22 23:50:45 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.data
|
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
IRQInd: jmp $0000
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2008-07-03 19:39:14 +00:00
|
|
|
.segment "ZPSAVE"
|
|
|
|
|
|
|
|
zpsave: .res zpspace
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.bss
|
|
|
|
|
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|