1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/irq-idx-problem.asm

142 lines
4.1 KiB
NASM
Raw Normal View History

// Test interrupt routine using a variable between calls (irq_idx)
/// @file
2021-06-19 20:11:26 +00:00
/// Commodore 64 Registers and Constants
/// @file
2021-06-19 20:11:26 +00:00
/// The MOS 6526 Complex Interface Adapter (CIA)
2021-06-19 20:28:44 +00:00
///
/// http://archive.6502.org/datasheets/mos_6526_cia_recreated.pdf
// Commodore 64 PRG executable file
.file [name="irq-idx-problem.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(__start)
/// Value that disables all CIA interrupts when stored to the CIA Interrupt registers
.const CIA_INTERRUPT_CLEAR = $7f
2021-06-20 10:45:52 +00:00
/// VICII IRQ Status/Enable Raster
// @see #IRQ_ENABLE #IRQ_STATUS
/// 0 | RST| Reaching a certain raster line. The line is specified by writing
/// | | to register 0xd012 and bit 7 of $d011 and internally stored by
/// | | the VIC for the raster compare. The test for reaching the
/// | | interrupt raster line is done in cycle 0 of every line (for line
/// | | 0, in cycle 1).
.const IRQ_RASTER = 1
2020-12-29 18:37:32 +00:00
.const VICII_SIZE = $30
.const IRQ_CHANGE_NEXT = $7f
.const OFFSET_STRUCT_MOS6526_CIA_INTERRUPT = $d
2021-06-20 10:45:52 +00:00
/// $D012 RASTER Raster counter
.label RASTER = $d012
2021-06-20 10:45:52 +00:00
/// $D011 Control Register #1
/// - Bit#0-#2: YSCROLL Screen Soft Scroll Vertical
/// - Bit#3: RSEL Switch betweem 25 or 24 visible rows
/// RSEL| Display window height | First line | Last line
/// ----+--------------------------+-------------+----------
/// 0 | 24 text lines/192 pixels | 55 ($37) | 246 ($f6)
/// 1 | 25 text lines/200 pixels | 51 ($33) | 250 ($fa)
/// - Bit#4: DEN Switch VIC-II output on/off
/// - Bit#5: BMM Turn Bitmap Mode on/off
/// - Bit#6: ECM Turn Extended Color Mode on/off
/// - Bit#7: RST8 9th Bit for $D012 Rasterline counter
/// Initial Value: %10011011
.label VICII_CONTROL1 = $d011
/// VIC II IRQ Status Register
.label IRQ_STATUS = $d019
/// VIC II IRQ Enable Register
.label IRQ_ENABLE = $d01a
/// The CIA#1: keyboard matrix, joystick #1/#2
.label CIA1 = $dc00
/// The vector used when the KERNAL serves IRQ interrupts
.label KERNEL_IRQ = $314
.label SCREEN = $400
2020-12-29 18:37:32 +00:00
.label VICII_BASE = $d000
.label irq_idx = 2
.segment Code
__start: {
// volatile byte irq_idx = 0
lda #0
sta.z irq_idx
jsr main
rts
}
table_driven_irq: {
__b1:
// byte idx = IRQ_CHANGE_IDX[irq_idx]
ldy.z irq_idx
lda IRQ_CHANGE_IDX,y
// byte val = IRQ_CHANGE_VAL[irq_idx]
ldx IRQ_CHANGE_VAL,y
2020-02-23 08:44:36 +00:00
// irq_idx++;
inc.z irq_idx
2020-12-29 18:37:32 +00:00
// if (idx < VICII_SIZE)
cmp #VICII_SIZE
bcc __b2
2020-12-29 18:37:32 +00:00
// if (idx < VICII_SIZE + 8)
cmp #VICII_SIZE+8
bcc __b3
2020-02-23 08:44:36 +00:00
// *IRQ_STATUS = IRQ_RASTER
lda #IRQ_RASTER
sta IRQ_STATUS
2020-02-23 08:44:36 +00:00
// *RASTER = val
stx RASTER
2020-02-23 08:44:36 +00:00
// if (val < *RASTER)
cpx RASTER
bcc !__ea81+
jmp $ea81
!__ea81:
2020-02-23 08:44:36 +00:00
// irq_idx = 0
lda #0
sta.z irq_idx
2020-02-23 08:44:36 +00:00
// }
jmp $ea81
__b3:
2020-12-29 18:37:32 +00:00
// SCREEN[idx + $3f8 - VICII_SIZE] = val
tay
txa
2020-12-29 18:37:32 +00:00
sta SCREEN+-VICII_SIZE+$3f8,y
jmp __b1
__b2:
2020-12-29 18:37:32 +00:00
// VICII_BASE[idx] = val
tay
txa
2020-12-29 18:37:32 +00:00
sta VICII_BASE,y
jmp __b1
}
main: {
// asm
sei
// CIA1->INTERRUPT = CIA_INTERRUPT_CLEAR
// Disable CIA 1 Timer IRQ
lda #CIA_INTERRUPT_CLEAR
sta CIA1+OFFSET_STRUCT_MOS6526_CIA_INTERRUPT
// *VICII_CONTROL1 &=$7f
// Set raster line to $60
lda #$7f
and VICII_CONTROL1
sta VICII_CONTROL1
// *RASTER = $60
lda #$60
sta RASTER
// *IRQ_ENABLE = IRQ_RASTER
// Enable Raster Interrupt
lda #IRQ_RASTER
sta IRQ_ENABLE
// *IRQ_STATUS = IRQ_RASTER
// Acknowledge any IRQ
sta IRQ_STATUS
// *KERNEL_IRQ = &table_driven_irq
// Setup the table driven IRQ routine
lda #<table_driven_irq
sta KERNEL_IRQ
lda #>table_driven_irq
sta KERNEL_IRQ+1
// asm
cli
// }
rts
}
.segment Data
IRQ_CHANGE_IDX: .byte $20, $21, IRQ_CHANGE_NEXT, $20, $21, IRQ_CHANGE_NEXT, $20, $21, IRQ_CHANGE_NEXT, $20, $21, IRQ_CHANGE_NEXT
IRQ_CHANGE_VAL: .byte $b, $b, $63, 0, 0, $80, 7, 7, $83, 0, 0, $60