aboutsummaryrefslogtreecommitdiffstats
path: root/idt.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-30 11:08:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-30 11:08:46 -0400
commit19d9a04e36e7fb96eebe89e24311408460c29a70 (patch)
tree4d5f5ba595d5a5e2b59ce7b102c06b77c7be7721 /idt.hpp
parent85c8fd05f1a0c0224882c4fafa60003d3ef56cf3 (diff)
reorganize files
Diffstat (limited to 'idt.hpp')
-rw-r--r--idt.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/idt.hpp b/idt.hpp
deleted file mode 100644
index c5e7e47..0000000
--- a/idt.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef IDT_HPP
-#define IDT_HPP
-
-#include <cstddef>
-#include <cstdint>
-
-struct Registers
-{
- std::uint32_t inum;
- std::uint32_t ds;
- std::uint32_t edi, esi, ebp, esp, ebx, edx, ecx, eax;
- std::uint32_t error;
- std::uint32_t eip, cs, eflags;
-} __attribute__((packed));
-
-using Callback = void (*)(const Registers&);
-
-void idt_initialize();
-void idt_register_callback(std::size_t num, Callback cb);
-
-#endif // IDT_HPP
-