summaryrefslogtreecommitdiff
path: root/arch/i386/include/kernel/asm.h
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-06-25 12:49:40 -0500
committerDanny Holman <dholman@gymli.org>2024-06-25 12:49:40 -0500
commit0dc4d97e70c17df56a260d31a1cb44881cf64520 (patch)
tree8fc93c709d334be836e3b896e2ed5f5320292169 /arch/i386/include/kernel/asm.h
parent3851af792ca7b4bb7fc998337c4aec05627cfa8f (diff)
kernel: interrupt: create a generic interrupt API
Create a generic interface for drivers to make use of interrupt vectors. This API should be platform-agnostic enough to allow any driver to make use of virtually any interrupt vector on any CPU. On x86, the first 32 interrupts are set aside for CPU exceptions, and interrupt 128 is set aside for system calls. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'arch/i386/include/kernel/asm.h')
-rw-r--r--arch/i386/include/kernel/asm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/i386/include/kernel/asm.h b/arch/i386/include/kernel/asm.h
index d692917..cc570c5 100644
--- a/arch/i386/include/kernel/asm.h
+++ b/arch/i386/include/kernel/asm.h
@@ -9,6 +9,8 @@
#define COM_PORT 0x3F8
+#define MAX_ISR 256
+
struct regs {
uint32_t eax;
uint32_t ebx;
@@ -95,7 +97,7 @@ void irq_stub_13(void);
void irq_stub_14(void);
void irq_stub_15(void);
-void syscall_stub(void);
+void isr_stub_128(void);
void aquire_lock(int *lock);
void release_lock(int *lock);