diff options
-rw-r--r-- | src/clock.c | 7 | ||||
-rw-r--r-- | src/config.h | 1 | ||||
-rw-r--r-- | src/post.c | 1 | ||||
-rw-r--r-- | src/romlayout.S | 1 |
4 files changed, 0 insertions, 10 deletions
diff --git a/src/clock.c b/src/clock.c index ccc05f45..b2741783 100644 --- a/src/clock.c +++ b/src/clock.c @@ -399,13 +399,6 @@ handle_1a(struct bregs *regs) } } -// User Timer Tick -void VISIBLE16 -handle_1c() -{ - debug_isr(DEBUG_ISR_1c); -} - // INT 08h System Timer ISR Entry Point void VISIBLE16 handle_08() diff --git a/src/config.h b/src/config.h index 50dbd58f..cb9b1dae 100644 --- a/src/config.h +++ b/src/config.h @@ -140,7 +140,6 @@ #define DEBUG_HDL_18 1 #define DEBUG_HDL_19 1 #define DEBUG_HDL_1a 9 -#define DEBUG_ISR_1c 20 #define DEBUG_HDL_40 1 #define DEBUG_ISR_70 9 #define DEBUG_ISR_74 9 @@ -57,7 +57,6 @@ init_ivt() set_irq(0x18, entry_18); set_irq(0x19, entry_19_official); set_irq(0x1a, entry_1a); - set_irq(0x1c, entry_1c); set_irq(0x40, entry_40); // set vector 0x79 to zero diff --git a/src/romlayout.S b/src/romlayout.S index efae759a..4e3cdab4 100644 --- a/src/romlayout.S +++ b/src/romlayout.S @@ -465,7 +465,6 @@ permanent_halt: DECL_IRQ_ENTRY_ARG 12 DECL_IRQ_ENTRY_ARG 11 DECL_IRQ_ENTRY 76 - DECL_IRQ_ENTRY 1c DECL_IRQ_ENTRY 70 DECL_IRQ_ENTRY 74 DECL_IRQ_ENTRY 75 |