diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-25 12:41:24 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-25 12:41:24 +0200 |
| commit | 7db6db5ae64e7ab2626bbd898c63f58e053dc1a6 (patch) | |
| tree | aac3b4b8755acbea397709a00611642c2534f053 /src/core/idt.hpp | |
| parent | 657372f1be95393b76a54f258ba3f937b4073abe (diff) | |
Debug multiboot, enable apic and ACPI table parsing
Diffstat (limited to 'src/core/idt.hpp')
| -rw-r--r-- | src/core/idt.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/idt.hpp b/src/core/idt.hpp index f2aca43..2f2050d 100644 --- a/src/core/idt.hpp +++ b/src/core/idt.hpp @@ -4,7 +4,7 @@ #include "libs/stdio.hpp" #define IDT_GATE_SIZE 16 -#define IDT_MAX_ENTRIES 50 +#define IDT_MAX_ENTRIES 200 #define IDT_ADDR 0x200000 #define IDT_OPT_P (1 << 15) @@ -14,8 +14,6 @@ #define IDT_OPT_PRVL_2 (2 << 13) #define IDT_OPT_PRVL_3 (3 << 13) - - typedef struct IDT_REGISTER { u16 limit; u64 base; |
