diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2015-02-02 17:25:32 -0500 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2015-02-02 17:25:32 -0500 |
| commit | 5c84e678defa9333aefcdcd0870564fb945a8c61 (patch) | |
| tree | 80bfcd18509326a68e037459923fb7c34e8e8441 /kernel/include | |
| parent | 474ba91122aa4b32fdd9348d90aec7468b3d2b8a (diff) | |
| download | kappa-5c84e678defa9333aefcdcd0870564fb945a8c61.zip kappa-5c84e678defa9333aefcdcd0870564fb945a8c61.tar.gz kappa-5c84e678defa9333aefcdcd0870564fb945a8c61.tar.bz2 kappa-5c84e678defa9333aefcdcd0870564fb945a8c61.tar.xz | |
fix IDT
Diffstat (limited to 'kernel/include')
| -rw-r--r-- | kernel/include/idt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/include/idt.h b/kernel/include/idt.h index 8041025..250ab82 100644 --- a/kernel/include/idt.h +++ b/kernel/include/idt.h @@ -11,7 +11,7 @@ struct idt_entry { struct idt_ptr { uint16_t limit; uint32_t base; -}; +} __attribute__((packed)); struct idt_entry idt[0x100]; struct idt_ptr idt_pt; |