diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-01-29 20:35:34 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-01-29 20:35:34 -0500 |
commit | af473a4ac2d6df901ba9d7b9b62eb1099f9efec2 (patch) | |
tree | 23ebf69243b75f6d5a09a9c09f265307adaa0e3e | |
parent | 231f710715a7f6ddf1626fda38ebdb511b5d55dc (diff) | |
download | seabios-af473a4ac2d6df901ba9d7b9b62eb1099f9efec2.tar.gz |
Don't declare a handler for int 0x1c - the default handler is sufficient.
-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 |