2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (C128 version)
|
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
.export _exit
|
|
|
|
.export BRKStub, BRKOld, BRKInd
|
|
|
|
.import condes, initlib, donelib
|
|
|
|
.import initconio, doneconio, zerobss
|
|
|
|
.import push0, _main
|
|
|
|
.import __IRQFUNC_TABLE__, __IRQFUNC_COUNT__
|
|
|
|
.import __RAM_START__, __RAM_SIZE__
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-05-26 09:09:10 +00:00
|
|
|
.include "zeropage.inc"
|
2001-09-13 15:27:19 +00:00
|
|
|
.include "c128.inc"
|
|
|
|
.include "../cbm/cbm.inc"
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Constants
|
|
|
|
|
|
|
|
IRQInd = $2FD ; JMP $0000 - used as indirect IRQ vector
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2001-10-25 19:13:36 +00:00
|
|
|
; Place the startup code in a special segment to cope with the quirks of
|
|
|
|
; c128 banking. Do also create an empty segment named "NMI" to avoid
|
|
|
|
; warnings if the rs232 routines are not used.
|
|
|
|
|
|
|
|
.segment "NMI"
|
|
|
|
; empty
|
|
|
|
|
|
|
|
.segment "STARTUP"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; BASIC header with a SYS call
|
|
|
|
|
|
|
|
.org $1BFF
|
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
|
|
|
.word 1000 ; Line number
|
|
|
|
.byte $9E,"7181" ; SYS 7181
|
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
.reloc
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Actual code
|
|
|
|
|
|
|
|
; Close open files
|
|
|
|
|
|
|
|
jsr CLRCH
|
|
|
|
|
2001-10-26 13:48:49 +00:00
|
|
|
; Switch to the second charset
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
|
|
|
|
2001-10-26 13:48:49 +00:00
|
|
|
; Before doing anything else, we have to setup our banking configuration.
|
|
|
|
; Otherwise just the lowest 16K are actually RAM. Writing through the ROM
|
|
|
|
; to the underlying RAM works, but it is bad style.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda MMU_CR ; Get current memory configuration...
|
|
|
|
pha ; ...and save it for later
|
2001-09-13 15:27:19 +00:00
|
|
|
lda #CC65_MMU_CFG ; Bank0 with kernal ROM
|
|
|
|
sta MMU_CR
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-10-26 13:48:49 +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
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; Save system stuff and setup the stack
|
|
|
|
|
|
|
|
pla ; Get MMU setting
|
|
|
|
sta mmusave
|
|
|
|
|
|
|
|
tsx
|
2001-10-26 13:48:49 +00:00
|
|
|
stx spsave ; Save the system stack pointer
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
lda #<(__RAM_START__ + __RAM_SIZE__)
|
|
|
|
sta sp
|
|
|
|
lda #>(__RAM_START__ + __RAM_SIZE__)
|
|
|
|
sta sp+1 ; Set argument stack ptr
|
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
|
|
|
|
|
|
|
; Initialize conio stuff
|
|
|
|
|
|
|
|
jsr initconio
|
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
; If we have IRQ functions, chain our stub into the IRQ vector
|
|
|
|
|
|
|
|
lda #<__IRQFUNC_COUNT__
|
|
|
|
beq NoIRQ1
|
|
|
|
lda IRQVec
|
|
|
|
ldx IRQVec+1
|
|
|
|
sta IRQInd+1
|
|
|
|
stx IRQInd+2
|
|
|
|
lda #<IRQStub
|
|
|
|
ldx #>IRQStub
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Pass an empty command line
|
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
NoIRQ1: jsr push0 ; argc
|
|
|
|
jsr push0 ; argv
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
ldy #4 ; Argument size
|
|
|
|
jsr _main ; call the users code
|
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
; This is also the _exit entry. Reset the IRQ vector if we chained it.
|
|
|
|
|
|
|
|
_exit: lda #<__IRQFUNC_COUNT__
|
|
|
|
beq NoIRQ2
|
|
|
|
lda IRQInd+1
|
|
|
|
ldx IRQInd+2
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
|
|
|
|
|
|
|
; Run module destructors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
NoIRQ2: jsr donelib
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Reset the conio stuff
|
|
|
|
|
|
|
|
jsr doneconio
|
|
|
|
|
2001-10-26 13:48:49 +00:00
|
|
|
; Reset the stack
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
ldx spsave
|
2000-05-28 13:40:48 +00:00
|
|
|
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
|
|
|
|
|
2001-10-26 13:48:49 +00:00
|
|
|
; Reset the memory configuration
|
|
|
|
|
|
|
|
lda mmusave
|
|
|
|
sta MMU_CR
|
|
|
|
|
|
|
|
; Done, restore kernal vectors in an attempt to cleanup
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
jmp RESTOR
|
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; The C128 has ROM parallel to the RAM starting from $4000. The startup code
|
|
|
|
; above will change this setting so that we have RAM from $0000-$BFFF. This
|
|
|
|
; works quite well with the exception of interrupts: The interrupt handler
|
|
|
|
; is in ROM, and the ROM switches back to the ROM configuration, which means
|
|
|
|
; that parts of our program may not be accessible. Since the crt0 module is
|
|
|
|
; the first module in the program, it will always be below $4000 and always
|
|
|
|
; in RAM. So we place several short stubs here that switch back our ROM
|
|
|
|
; config before calling our user defined handlers. These stubs are only
|
|
|
|
; used if any other code uses the interrupt or break vectors. They are dead
|
|
|
|
; code otherwise, but since there is no other way to keep them in low memory,
|
|
|
|
; they have to go here.
|
|
|
|
|
|
|
|
IRQStub:
|
2001-10-26 13:48:49 +00:00
|
|
|
cld ; Just to be sure
|
|
|
|
lda MMU_CR ; Get old register value
|
|
|
|
pha ; And save on stack
|
|
|
|
lda #CC65_MMU_CFG ; Bank 0 with kernal ROM
|
2001-09-13 15:27:19 +00:00
|
|
|
sta MMU_CR
|
|
|
|
ldy #<(__IRQFUNC_COUNT__*2)
|
|
|
|
lda #<__IRQFUNC_TABLE__
|
|
|
|
ldx #>__IRQFUNC_TABLE__
|
|
|
|
jsr condes ; Call the functions
|
|
|
|
pla ; Get old register value
|
|
|
|
sta MMU_CR
|
|
|
|
jmp IRQInd ; Jump to the save IRQ vector
|
|
|
|
|
|
|
|
|
|
|
|
BRKStub:
|
|
|
|
pla ; Get original MMU_CR value
|
|
|
|
sta MMU_CR ; And set it
|
|
|
|
jmp BRKInd ; Jump indirect to break
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.data
|
|
|
|
zpsave: .res zpspace
|
|
|
|
|
2001-09-13 15:27:19 +00:00
|
|
|
; Old break vector preceeded by a jump opcode
|
|
|
|
BRKOld: jmp $0000
|
|
|
|
|
|
|
|
; Indirect vectors preceeded by a jump opcode
|
|
|
|
BRKInd: jmp $0000
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.bss
|
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|
|
|
|
|
|
|
|
|
|
|
|
|