From 08f7352a314d69eb11ea8138ec46e0368196a8a0 Mon Sep 17 00:00:00 2001 From: starnakin Date: Tue, 10 Sep 2024 21:39:52 +0200 Subject: [PATCH] clean: remove useless struct --- headers/gdt.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/headers/gdt.h b/headers/gdt.h index 490393e..e4fdc68 100644 --- a/headers/gdt.h +++ b/headers/gdt.h @@ -5,17 +5,6 @@ #define GDT_ADDRESS 0x00000800 #define GDT_SIZE 7 -// https://wiki.osdev.org/Global_Descriptor_Table#Segment_Descriptor -struct gdt_entry -{ - uint16_t limit_low; - uint16_t base_low; - uint8_t base_middle; - uint8_t access; - uint8_t limit_high_and_flags; - uint8_t base_high; -} __attribute__((packed)) ; - // https://wiki.osdev.org/Global_Descriptor_Table#GDTR struct gdt_descriptor { uint16_t size;