2000-05-28 13:40:48 +00:00
|
|
|
;
|
2001-09-13 18:55:43 +00:00
|
|
|
; Startup code for cc65 (CBM 600/700 version)
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
.export _exit, BRKVec
|
2002-10-03 19:18:06 +00:00
|
|
|
|
2004-04-04 14:28:57 +00:00
|
|
|
.import callirq_y, initlib, donelib
|
2003-03-10 21:21:46 +00:00
|
|
|
.import push0, callmain
|
2003-12-20 23:13:26 +00:00
|
|
|
.import __BSS_RUN__, __BSS_SIZE__, __EXTZP_RUN__
|
2004-09-20 10:24:59 +00:00
|
|
|
.import __INTERRUPTOR_COUNT__
|
2003-12-21 18:43:25 +00:00
|
|
|
.import scnkey, UDTIM
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.include "zeropage.inc"
|
2003-12-20 23:13:26 +00:00
|
|
|
.include "extzp.inc"
|
2002-05-26 09:08:52 +00:00
|
|
|
.include "cbm610.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; BASIC header and a small BASIC program. Since it is not possible to start
|
|
|
|
; programs in other banks using SYS, the BASIC program will write a small
|
|
|
|
; machine code program into memory at $100 and start that machine code
|
|
|
|
; program. The machine code program will then start the machine language
|
|
|
|
; code in bank 1, which will initialize the system by copying stuff from
|
|
|
|
; the system bank, and start the application.
|
|
|
|
;
|
|
|
|
; Here's the basic program that's in the following lines:
|
|
|
|
;
|
|
|
|
; 10 for i=0 to 4
|
|
|
|
; 20 read j
|
|
|
|
; 30 poke 256+i,j
|
|
|
|
; 40 next i
|
|
|
|
; 50 sys 256
|
|
|
|
; 60 data 120,169,1,133,0
|
|
|
|
;
|
|
|
|
; The machine program in the data lines is:
|
|
|
|
;
|
|
|
|
; sei
|
|
|
|
; lda #$01
|
|
|
|
; sta $00 <-- Switch to bank 1 after this command
|
|
|
|
;
|
|
|
|
; Initialization is not only complex because of the jumping from one bank
|
|
|
|
; into another. but also because we want to save memory, and because of
|
|
|
|
; this, we will use the system memory ($00-$3FF) for initialization stuff
|
|
|
|
; that is overwritten later.
|
|
|
|
;
|
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
.segment "BASICHDR"
|
2002-05-26 09:08:52 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
.byte $03,$00,$11,$00,$0a,$00,$81,$20,$49,$b2,$30,$20,$a4,$20,$34,$00
|
2000-05-28 13:40:48 +00:00
|
|
|
.byte $19,$00,$14,$00,$87,$20,$4a,$00,$27,$00,$1e,$00,$97,$20,$32,$35
|
|
|
|
.byte $36,$aa,$49,$2c,$4a,$00,$2f,$00,$28,$00,$82,$20,$49,$00,$39,$00
|
|
|
|
.byte $32,$00,$9e,$20,$32,$35,$36,$00,$4f,$00,$3c,$00,$83,$20,$31,$32
|
|
|
|
.byte $30,$2c,$31,$36,$39,$2c,$31,$2c,$31,$33,$33,$2c,$30,$00,$00,$00
|
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; A table that contains values that must be transfered from the system zero
|
|
|
|
; page into out zero page. Contains pairs of bytes, first one is the address
|
|
|
|
; in the system ZP, second one is our ZP address. The table goes into page 2,
|
|
|
|
; but is declared here, because it is needed earlier.
|
|
|
|
|
|
|
|
.SEGMENT "PAGE2"
|
|
|
|
|
|
|
|
.proc transfer_table
|
|
|
|
|
|
|
|
.byte $CA, CURS_Y
|
|
|
|
.byte $CB, CURS_X
|
|
|
|
.byte $CC, graphmode
|
|
|
|
.byte $D4, config
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; Page 3 data. This page contains the break vector and the bankswitch
|
|
|
|
; subroutine that is copied into high memory on startup. The space occupied by
|
|
|
|
; this routine will later be used for a copy of the bank 15 stack. It must be
|
|
|
|
; saved, since we're going to destroy it when calling bank 15.
|
|
|
|
|
|
|
|
.segment "PAGE3"
|
|
|
|
|
|
|
|
BRKVec: .addr _exit ; BRK indirect vector
|
|
|
|
|
|
|
|
.proc callbank15
|
|
|
|
|
|
|
|
excrts = $FF05
|
|
|
|
|
|
|
|
.org $FECB
|
|
|
|
|
|
|
|
entry: php
|
|
|
|
pha
|
|
|
|
lda #$0F ; Bank 15
|
|
|
|
sta IndReg
|
|
|
|
txa
|
|
|
|
pha
|
|
|
|
tya
|
|
|
|
pha
|
|
|
|
sei
|
|
|
|
ldy #$FF
|
|
|
|
lda (sysp1),y
|
|
|
|
tay
|
|
|
|
lda ExecReg
|
|
|
|
sta (sysp1),y
|
|
|
|
dey
|
|
|
|
|
|
|
|
lda #.hibyte(excrts-1)
|
|
|
|
sta (sysp1),y
|
|
|
|
dey
|
|
|
|
lda #.lobyte(excrts-1)
|
|
|
|
sta (sysp1),y
|
|
|
|
|
|
|
|
tya
|
|
|
|
sec
|
|
|
|
sbc #7
|
|
|
|
sta $1FF ; Save new sp
|
|
|
|
tay
|
|
|
|
|
|
|
|
tsx
|
|
|
|
|
|
|
|
pla
|
|
|
|
iny
|
|
|
|
sta (sysp1),y
|
|
|
|
pla
|
|
|
|
iny
|
|
|
|
sta (sysp1),y
|
|
|
|
pla
|
|
|
|
iny
|
|
|
|
sta (sysp1),y
|
|
|
|
pla
|
|
|
|
iny
|
|
|
|
sta (sysp1),y
|
|
|
|
|
|
|
|
lda $105,x
|
|
|
|
sec
|
|
|
|
sbc #3
|
|
|
|
iny
|
|
|
|
sta (sysp1),y
|
|
|
|
lda $106,x
|
|
|
|
sbc #0
|
|
|
|
iny
|
|
|
|
sta (sysp1),y
|
|
|
|
|
|
|
|
ldy $1FF ; Restore sp in bank 15
|
|
|
|
|
|
|
|
lda #.hibyte(expull-1)
|
|
|
|
sta (sysp1),y
|
|
|
|
dey
|
|
|
|
lda #.lobyte(expull-1)
|
|
|
|
sta (sysp1),y
|
|
|
|
dey
|
|
|
|
pla
|
|
|
|
pla
|
|
|
|
tsx
|
|
|
|
stx $1FF
|
|
|
|
tya
|
|
|
|
tax
|
|
|
|
txs
|
|
|
|
lda IndReg
|
|
|
|
jmp $FFF6
|
|
|
|
|
|
|
|
expull: pla
|
|
|
|
tay
|
|
|
|
pla
|
|
|
|
tax
|
|
|
|
pla
|
|
|
|
plp
|
|
|
|
rts
|
|
|
|
|
|
|
|
.if (expull <> $FF2E)
|
|
|
|
.error "Symbol expull must be aligned with kernal in bank 15"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.reloc
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
;------------------------------------------------------------------------------
|
2000-05-28 13:40:48 +00:00
|
|
|
; The code in the target bank when switching back will be put at the bottom
|
|
|
|
; of the stack. We will jump here to switch segments. The range $F2..$FF is
|
|
|
|
; not used by any kernal routine.
|
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
.segment "STARTUP"
|
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
Back: sta ExecReg
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; We are at $100 now. The following snippet is a copy of the code that is poked
|
|
|
|
; in the system bank memory by the basic header program, it's only for
|
|
|
|
; documentation and not actually used here:
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
sei
|
|
|
|
lda #$01
|
|
|
|
sta ExecReg
|
|
|
|
|
|
|
|
; This is the actual starting point of our code after switching banks for
|
|
|
|
; startup. Beware: The following code will get overwritten as soon as we
|
2003-12-20 23:13:26 +00:00
|
|
|
; use the stack (since it's in page 1)! We jump to another location, since
|
|
|
|
; we need some space for subroutines that aren't used later.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
jmp Origin
|
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
; Hardware vectors, copied to $FFF6
|
2003-12-20 23:13:26 +00:00
|
|
|
|
|
|
|
.proc vectors
|
|
|
|
sta ExecReg
|
|
|
|
rts
|
|
|
|
nop
|
|
|
|
.word nmi ; NMI vector
|
|
|
|
.word 0 ; Reset - not used
|
|
|
|
.word irq ; IRQ vector
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
; Initializers for the extended zeropage. See extzp.s
|
|
|
|
|
|
|
|
.proc extzp
|
|
|
|
.word $0100 ; sysp1
|
|
|
|
.word $0300 ; sysp3
|
|
|
|
.word $d800 ; crtc
|
|
|
|
.word $da00 ; sid
|
|
|
|
.word $db00 ; ipccia
|
|
|
|
.word $dc00 ; cia
|
|
|
|
.word $dd00 ; acia
|
|
|
|
.word $de00 ; tpi1
|
|
|
|
.word $df00 ; tpi2
|
|
|
|
.word $ea29 ; ktab1
|
|
|
|
.word $ea89 ; ktab2
|
|
|
|
.word $eae9 ; ktab3
|
|
|
|
.word $eb49 ; ktab4
|
|
|
|
.endproc
|
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
; Switch the indirect segment to the system bank
|
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
Origin: lda #$0F
|
2003-12-21 18:43:25 +00:00
|
|
|
sta IndReg
|
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Initialize the extended zeropage
|
|
|
|
|
|
|
|
ldx #.sizeof(extzp)-1
|
|
|
|
L1: lda extzp,x
|
|
|
|
sta <__EXTZP_RUN__,x
|
|
|
|
dex
|
|
|
|
bpl L1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
; Save the old stack pointer from the system bank and setup our hw sp
|
|
|
|
|
|
|
|
tsx
|
|
|
|
txa
|
|
|
|
ldy #$FF
|
|
|
|
sta (sysp1),y ; Save system stack point into $F:$1FF
|
|
|
|
ldx #$FE ; Leave $1FF untouched for cross bank calls
|
|
|
|
txs ; Set up our own stack
|
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
; Copy stuff from the system zeropage to ours
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
lda #.sizeof(transfer_table)
|
|
|
|
sta ktmp
|
|
|
|
L2: ldx ktmp
|
|
|
|
ldy transfer_table-2,x
|
|
|
|
lda transfer_table-1,x
|
|
|
|
tax
|
|
|
|
lda (sysp0),y
|
|
|
|
sta $00,x
|
|
|
|
dec ktmp
|
|
|
|
dec ktmp
|
|
|
|
bne L2
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
; Set the interrupt, NMI and other vectors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
ldx #.sizeof(vectors)-1
|
|
|
|
L3: lda vectors,x
|
|
|
|
sta $10000 - .sizeof(vectors),x
|
|
|
|
dex
|
|
|
|
bpl L3
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Setup the C stack
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
lda #.lobyte(callbank15::entry)
|
2003-12-21 18:43:25 +00:00
|
|
|
sta sp
|
2003-12-28 18:35:00 +00:00
|
|
|
lda #.hibyte(callbank15::entry)
|
2003-12-20 23:13:26 +00:00
|
|
|
sta sp+1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Setup the subroutine and jump vector table that redirects kernal calls to
|
2003-12-28 18:35:00 +00:00
|
|
|
; the system bank.
|
2003-12-20 23:13:26 +00:00
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
ldy #.sizeof(callbank15)
|
|
|
|
@L1: lda callbank15-1,y
|
|
|
|
sta callbank15::entry-1,y
|
2003-12-20 23:13:26 +00:00
|
|
|
dey
|
2003-12-28 18:35:00 +00:00
|
|
|
bne @L1
|
2003-12-20 23:13:26 +00:00
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
; Setup the jump vector table. Y is zero on entry.
|
2003-12-20 23:13:26 +00:00
|
|
|
|
|
|
|
ldx #45-1 ; Number of vectors
|
2003-12-28 18:35:00 +00:00
|
|
|
@L2: lda #$20 ; JSR opcode
|
2003-12-20 23:13:26 +00:00
|
|
|
sta $FF6F,y
|
|
|
|
iny
|
2003-12-28 18:35:00 +00:00
|
|
|
lda #.lobyte(callbank15::entry)
|
2003-12-20 23:13:26 +00:00
|
|
|
sta $FF6F,y
|
|
|
|
iny
|
2003-12-28 18:35:00 +00:00
|
|
|
lda #.hibyte(callbank15::entry)
|
2003-12-20 23:13:26 +00:00
|
|
|
sta $FF6F,y
|
|
|
|
iny
|
|
|
|
dex
|
2003-12-28 18:35:00 +00:00
|
|
|
bpl @L2
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Set the indirect segment to bank we're executing in
|
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
lda ExecReg
|
2003-12-19 00:12:08 +00:00
|
|
|
sta IndReg
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Zero the BSS segment. We will do that here instead calling the routine
|
|
|
|
; in the common library, since we have the memory anyway, and this way,
|
|
|
|
; it's reused later.
|
|
|
|
|
|
|
|
lda #<__BSS_RUN__
|
|
|
|
sta ptr1
|
|
|
|
lda #>__BSS_RUN__
|
|
|
|
sta ptr1+1
|
|
|
|
lda #0
|
|
|
|
tay
|
|
|
|
|
|
|
|
; Clear full pages
|
|
|
|
|
|
|
|
ldx #>__BSS_SIZE__
|
|
|
|
beq Z2
|
|
|
|
Z1: sta (ptr1),y
|
|
|
|
iny
|
|
|
|
bne Z1
|
|
|
|
inc ptr1+1 ; Next page
|
2003-12-21 18:43:25 +00:00
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bne Z1
|
|
|
|
|
|
|
|
; Clear the remaining page
|
|
|
|
|
|
|
|
Z2: ldx #<__BSS_SIZE__
|
|
|
|
beq Z4
|
|
|
|
Z3: sta (ptr1),y
|
|
|
|
iny
|
|
|
|
dex
|
|
|
|
bne Z3
|
2003-12-20 23:13:26 +00:00
|
|
|
Z4: jmp Init
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; We are at $200 now. We may now start calling subroutines safely, since
|
|
|
|
; the code we execute is no longer in the stack page.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
.segment "PAGE2"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Call module constructors, enable chained IRQs afterwards.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
Init: jsr initlib
|
2004-09-20 10:24:59 +00:00
|
|
|
lda #.lobyte(__INTERRUPTOR_COUNT__*2)
|
2003-12-20 23:13:26 +00:00
|
|
|
sta irqcount
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Enable interrupts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
cli
|
2000-11-22 22:19:09 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Push arguments and call main()
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
jsr callmain
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-27 14:32:37 +00:00
|
|
|
; Call module destructors. This is also the _exit entry and the default entry
|
2003-12-20 23:13:26 +00:00
|
|
|
; point for the break vector.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2004-03-02 17:08:07 +00:00
|
|
|
_exit: pha ; Save the return code
|
|
|
|
lda #$00
|
2003-12-20 23:13:26 +00:00
|
|
|
sta irqcount ; Disable custom irq handlers
|
|
|
|
jsr donelib ; Run module destructors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
; Address the system bank
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
lda #$0F
|
|
|
|
sta IndReg
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
; Copy stuff back from our zeropage to the systems
|
2003-12-27 14:32:37 +00:00
|
|
|
|
2003-12-21 18:43:25 +00:00
|
|
|
.if 0
|
|
|
|
lda #.sizeof(transfer_table)
|
|
|
|
sta ktmp
|
|
|
|
@L0: ldx ktmp
|
|
|
|
ldy transfer_table-2,x
|
|
|
|
lda transfer_table-1,x
|
|
|
|
tax
|
|
|
|
lda $00,x
|
|
|
|
sta (sysp0),y
|
|
|
|
dec ktmp
|
|
|
|
dec ktmp
|
|
|
|
bne @L0
|
2003-12-27 14:32:37 +00:00
|
|
|
.endif
|
2003-12-21 18:43:25 +00:00
|
|
|
|
2004-03-02 17:08:07 +00:00
|
|
|
; Place the program return code into ST
|
|
|
|
|
|
|
|
pla
|
2004-03-02 17:10:43 +00:00
|
|
|
ldy #$9C ; ST
|
2004-03-02 17:08:07 +00:00
|
|
|
sta (sysp0),y
|
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; Setup the welcome code at the stack bottom in the system bank.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-28 18:35:00 +00:00
|
|
|
ldy #$FF
|
|
|
|
lda (sysp1),y ; Load system bank sp
|
|
|
|
tax
|
|
|
|
iny ; Y = 0
|
2003-12-20 23:13:26 +00:00
|
|
|
lda #$58 ; CLI opcode
|
|
|
|
sta (sysp1),y
|
|
|
|
iny
|
|
|
|
lda #$60 ; RTS opcode
|
|
|
|
sta (sysp1),y
|
2003-12-28 18:35:00 +00:00
|
|
|
lda IndReg
|
|
|
|
sei
|
|
|
|
txs
|
2003-12-20 23:13:26 +00:00
|
|
|
jmp Back
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; -------------------------------------------------------------------------
|
|
|
|
; The IRQ handler goes into PAGE2. For performance reasons, and to allow
|
|
|
|
; easier chaining, we do handle the IRQs in the execution bank (instead of
|
|
|
|
; passing them to the system bank).
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
; This is the mapping of the active irq register of the 6525 (tpi1):
|
|
|
|
;
|
|
|
|
; Bit 7 6 5 4 3 2 1 0
|
|
|
|
; | | | | ^ 50 Hz
|
|
|
|
; | | | ^ SRQ IEEE 488
|
|
|
|
; | | ^ cia
|
|
|
|
; | ^ IRQB ext. Port
|
|
|
|
; ^ acia
|
|
|
|
|
|
|
|
irq: pha
|
|
|
|
txa
|
|
|
|
pha
|
|
|
|
tya
|
|
|
|
pha
|
|
|
|
lda IndReg
|
|
|
|
pha
|
|
|
|
lda ExecReg
|
|
|
|
sta IndReg ; Be sure to address our segment
|
|
|
|
tsx
|
2004-04-04 14:28:57 +00:00
|
|
|
lda $105,x ; Get the flags from the stack
|
|
|
|
and #$10 ; Test break flag
|
2003-12-20 23:13:26 +00:00
|
|
|
bne dobrk
|
|
|
|
|
|
|
|
; It's an IRQ
|
|
|
|
|
|
|
|
cld
|
|
|
|
|
|
|
|
; Call chained IRQ handlers
|
|
|
|
|
|
|
|
ldy irqcount
|
|
|
|
beq irqskip
|
2004-04-04 14:28:57 +00:00
|
|
|
jsr callirq_y ; Call the functions
|
2003-12-20 23:13:26 +00:00
|
|
|
|
|
|
|
; Done with chained IRQ handlers, check the TPI for IRQs and handle them
|
|
|
|
|
|
|
|
irqskip:lda #$0F
|
|
|
|
sta IndReg
|
|
|
|
ldy #TPI::AIR
|
|
|
|
lda (tpi1),y ; Interrupt Register 6525
|
|
|
|
beq noirq
|
|
|
|
|
|
|
|
; 50/60Hz interrupt
|
|
|
|
|
|
|
|
cmp #%00000001 ; ticker irq?
|
|
|
|
bne irqend
|
2003-12-21 18:43:25 +00:00
|
|
|
jsr scnkey ; Poll the keyboard
|
2003-12-20 23:13:26 +00:00
|
|
|
jsr UDTIM ; Bump the time
|
|
|
|
|
|
|
|
; Done
|
|
|
|
|
|
|
|
irqend: ldy #TPI::AIR
|
|
|
|
sta (tpi1),y ; Clear interrupt
|
|
|
|
|
|
|
|
noirq: pla
|
|
|
|
sta IndReg
|
|
|
|
pla
|
|
|
|
tay
|
|
|
|
pla
|
|
|
|
tax
|
|
|
|
pla
|
|
|
|
nmi: rti
|
|
|
|
|
|
|
|
dobrk: jmp (BRKVec)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; -------------------------------------------------------------------------
|
2003-12-20 23:13:26 +00:00
|
|
|
; Data area.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-12-20 23:13:26 +00:00
|
|
|
.bss
|
|
|
|
irqcount: .byte 0
|
2002-05-26 09:08:52 +00:00
|
|
|
|