diff options
author | aqua <aqua@iserlohn-fortress.net> | 2024-03-08 17:24:49 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2024-03-08 22:00:07 +0200 |
commit | 20b97ea7c0dbbdc13800e12ff5c86c00c4a342ec (patch) | |
tree | 473281e5fc8b256827ce1a678573444e1aa5f669 /i686/include/idt.h | |
parent | Generate src/conf.h (diff) | |
download | kernel-20b97ea7c0dbbdc13800e12ff5c86c00c4a342ec.tar.xz |
Bazel build
Diffstat (limited to 'i686/include/idt.h')
-rw-r--r-- | i686/include/idt.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/i686/include/idt.h b/i686/include/idt.h deleted file mode 100644 index ca39bde..0000000 --- a/i686/include/idt.h +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -#include <stdint.h> - -struct interrupt_frame { - uint32_t ip; - uint32_t cs; - uint32_t flags; - uint32_t sp; - uint32_t ss; -}; - -/* typedef void (*irq_handler)(); */ - -/* isr.c */ -void abort_handler(struct interrupt_frame *frame); -void syscall_handler(struct interrupt_frame *frame); -void irq0x00(struct interrupt_frame *frame); /* timer interrupt */ -void irq0x01(struct interrupt_frame *frame); /* keyboard interrupt */ -void irq0x0c(struct interrupt_frame *frame); /* mouse interrupt */ - -/* lidt.c */ -void idt_install(); |