From 19d9a04e36e7fb96eebe89e24311408460c29a70 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 30 Sep 2024 11:08:46 -0400 Subject: reorganize files --- src/idt.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/idt.hpp (limited to 'src/idt.hpp') diff --git a/src/idt.hpp b/src/idt.hpp new file mode 100644 index 0000000..c5e7e47 --- /dev/null +++ b/src/idt.hpp @@ -0,0 +1,22 @@ +#ifndef IDT_HPP +#define IDT_HPP + +#include +#include + +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 + -- cgit v1.2.3