2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (Plus/4 version)
|
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
2000-11-23 19:21:05 +00:00
|
|
|
.export _exit
|
2000-11-22 22:19:09 +00:00
|
|
|
.import initlib, donelib
|
2000-11-23 19:21:05 +00:00
|
|
|
.import push0, _main, zerobss
|
2002-11-22 22:16:20 +00:00
|
|
|
.import __IRQFUNC_TABLE__, __IRQFUNC_COUNT__
|
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 "plus4.inc"
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2002-11-22 22:16:20 +00:00
|
|
|
; Place the startup code in a special segment to cope with the quirks of
|
|
|
|
; plus/4 banking.
|
2000-09-07 21:49:13 +00:00
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
.segment "STARTUP"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
|
|
|
.word 1000 ; Line number
|
|
|
|
.byte $9E,"4109" ; SYS 4109
|
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Actual code
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
sei ; No interrupts since we're banking out the ROM
|
|
|
|
sta ENABLE_RAM
|
2000-10-30 21:02:49 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x ; save the zero page locations we need
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L1
|
2002-11-22 22:16:20 +00:00
|
|
|
sta ENABLE_ROM
|
|
|
|
cli
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Close open files
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
jsr $FFCC ; CLRCH
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Switch to second charset
|
|
|
|
|
|
|
|
lda #14
|
2002-11-22 22:16:20 +00:00
|
|
|
jsr $FFD2 ; BSOUT
|
|
|
|
|
|
|
|
; Setup the IRQ vector in the banked RAM and switch off the ROM
|
|
|
|
|
|
|
|
sei ; No ints, handler not yet in place
|
|
|
|
sta ENABLE_RAM
|
|
|
|
lda #<IRQ
|
|
|
|
sta $FFFE ; Install interrupt handler
|
|
|
|
lda #>IRQ
|
|
|
|
sta $FFFF
|
|
|
|
cli ; Allow interrupts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; Save system stuff and setup the stack. The stack starts at the top of the
|
|
|
|
; usable RAM.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave ; save system stk ptr
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
lda #<$FD00
|
|
|
|
sta sp
|
|
|
|
lda #>$FD00
|
|
|
|
sta sp+1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Call module constructors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
jsr initlib
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Pass an empty command line
|
|
|
|
|
|
|
|
jsr push0 ; argc
|
|
|
|
jsr push0 ; argv
|
|
|
|
|
|
|
|
ldy #4 ; Argument size
|
|
|
|
jsr _main ; call the users code
|
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Call module destructors. This is also the _exit entry.
|
|
|
|
|
|
|
|
_exit: jsr donelib ; Run module destructors
|
|
|
|
|
|
|
|
; Restore system stuff
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
ldx spsave
|
|
|
|
txs
|
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2000-10-30 21:02:49 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L2
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; Enable the ROM, reset changed vectors and return to BASIC
|
|
|
|
|
|
|
|
sta ENABLE_ROM
|
|
|
|
jmp $FF8A ; RESTOR
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; IRQ handler
|
|
|
|
|
|
|
|
.segment "LOWCODE"
|
|
|
|
|
|
|
|
IRQ: pha
|
|
|
|
txa
|
|
|
|
pha
|
|
|
|
tsx ; Get the stack pointer
|
|
|
|
lda $0103,x ; Get the saved status register
|
|
|
|
tax
|
|
|
|
lda #>irqret ; Push new return address
|
|
|
|
pha
|
|
|
|
lda #<irqret
|
|
|
|
pha
|
|
|
|
txa
|
|
|
|
pha
|
|
|
|
sta ENABLE_ROM ; Switch to ROM
|
|
|
|
jmp ($FFFE) ; Jump to kernal irq handler
|
|
|
|
|
|
|
|
irqret: sta ENABLE_RAM ; Switch back to RAM
|
|
|
|
pla
|
|
|
|
tax
|
|
|
|
pla
|
|
|
|
rti
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.data
|
|
|
|
zpsave: .res zpspace
|
|
|
|
|
|
|
|
.bss
|
|
|
|
spsave: .res 1
|
|
|
|
|
|
|
|
|