diff options
author | Thomas Albers Raviola <thomas@thomaslabs.org> | 2025-02-13 01:48:01 +0100 |
---|---|---|
committer | Thomas Albers Raviola <thomas@thomaslabs.org> | 2025-02-13 01:48:01 +0100 |
commit | 70af8cae86d75b4b02e9f7bd7d3614262bc5eb16 (patch) | |
tree | 831401e72b02956863e31e6663aa9ab3b9b66eac /asm | |
parent | 13c0217bf19a2ddfb24b673455f6d362a46ebf7b (diff) |
Diffstat (limited to 'asm')
-rw-r--r-- | asm/isr.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/asm/isr.asm b/asm/isr.asm index 4a160a0..147a3a8 100644 --- a/asm/isr.asm +++ b/asm/isr.asm @@ -1,17 +1,17 @@ .module isr - .area _ISR_TABLE (REL) + .area _ISR_TABLE (REL) _ctc0_isr_ptr:: - .dw #0 + .dw #0 _ctc1_isr_ptr:: - .dw #0 + .dw #0 _ctc2_isr_ptr:: - .dw #_timer + .dw #_timer _ctc3_isr_ptr:: - .dw #_blink_cursor + .dw #_blink_cursor _port_a_isr_ptr:: - .dw #0 + .dw #0 _port_b_isr_ptr:: - .dw #_input_event + .dw #_input_event _rx_isr_ptr:: - .dw #0 + .dw #0 |