diff options
author | Thomas Albers Raviola <thomas@thomaslabs.org> | 2024-11-21 15:55:03 +0100 |
---|---|---|
committer | Thomas Albers Raviola <thomas@thomaslabs.org> | 2024-11-21 15:55:03 +0100 |
commit | 6d4ad089c5b758ad8af4f68bf385a26ec4e9653a (patch) | |
tree | 2fd65006b57d646b53e121aef42bba5ee5852840 /asm/isr.asm |
Initial commit
Diffstat (limited to 'asm/isr.asm')
-rw-r--r-- | asm/isr.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/asm/isr.asm b/asm/isr.asm new file mode 100644 index 0000000..ad810e5 --- /dev/null +++ b/asm/isr.asm @@ -0,0 +1,17 @@ + .module isr + + .area _ISR_TABLE (REL) +_ctc0_isr_ptr:: + .dw #0 +_ctc1_isr_ptr:: + .dw #_ctc1_isr +_ctc2_isr_ptr:: + .dw #_timer +_ctc3_isr_ptr:: + .dw #_blink_cursor +_port_a_isr_ptr:: + .dw #0 +_port_b_isr_ptr:: + .dw #_input_event +_rx_isr_ptr:: + .dw #_rx_isr |