From d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 19:04:05 +0200 Subject: New build parameters and shared includes This changes many files but I've just applied some replace commands.. So - nothing special! --- src/kernel/interrupts/idt.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/kernel/interrupts/idt.c') diff --git a/src/kernel/interrupts/idt.c b/src/kernel/interrupts/idt.c index 4be3d7c..532435a 100644 --- a/src/kernel/interrupts/idt.c +++ b/src/kernel/interrupts/idt.c @@ -1,12 +1,12 @@ -#include -#include +#include +#include struct idt_entry { - uint16_t base_low; - uint16_t sel; // Kernel segment - uint8_t always0; // Always 0 - uint8_t flags; - uint16_t base_high; + u16 base_low; + u16 sel; // Kernel segment + u8 always0; // Always 0 + u8 flags; + u16 base_high; } __attribute__((packed)); struct idt_ptr { @@ -24,13 +24,13 @@ extern void idt_load(); void idt_set_gate(unsigned char num, unsigned long base, unsigned short sel, unsigned char flags) { // Specify the interrupt routine's base address - idt[num].base_low = (uint16_t)(base & 0xFFFF); - idt[num].base_high = (uint16_t)((base >> 16) & 0xFFFF); + idt[num].base_low = (u16)(base & 0xFFFF); + idt[num].base_high = (u16)((base >> 16) & 0xFFFF); // Set selector/segment of IDT entry idt[num].sel = sel; idt[num].always0 = 0; - idt[num].flags = (uint8_t)(flags | 0x60); + idt[num].flags = (u8)(flags | 0x60); } // Install IDT -- cgit v1.2.3