From 70af8cae86d75b4b02e9f7bd7d3614262bc5eb16 Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Thu, 13 Feb 2025 01:48:01 +0100 Subject: Linearize Makefiles --- asm/isr.asm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'asm/isr.asm') 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 -- cgit v1.2.3