summaryrefslogtreecommitdiffhomepage
path: root/src/loader/gdt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/loader/gdt.c')
-rw-r--r--src/loader/gdt.c96
1 files changed, 51 insertions, 45 deletions
diff --git a/src/loader/gdt.c b/src/loader/gdt.c
index 853b793..ea91c33 100644
--- a/src/loader/gdt.c
+++ b/src/loader/gdt.c
@@ -2,48 +2,54 @@
#include <gdt.h>
-static struct gdt_desc gdt_descs[] = { { 0 },
-
- { .limit = 0xffff,
- .base_low = 0x0000,
- .base_mid = 0x00,
- .access = 0x9a,
- .granularity = 0x00,
- .base_hi = 0x00 },
-
- { .limit = 0xffff,
- .base_low = 0x0000,
- .base_mid = 0x00,
- .access = 0x92,
- .granularity = 0x00,
- .base_hi = 0x00 },
-
- { .limit = 0xffff,
- .base_low = 0x0000,
- .base_mid = 0x00,
- .access = 0x9a,
- .granularity = 0xcf,
- .base_hi = 0x00 },
-
- { .limit = 0xffff,
- .base_low = 0x0000,
- .base_mid = 0x00,
- .access = 0x92,
- .granularity = 0xcf,
- .base_hi = 0x00 },
-
- { .limit = 0x0000,
- .base_low = 0x0000,
- .base_mid = 0x00,
- .access = 0x9a,
- .granularity = 0x20,
- .base_hi = 0x00 },
-
- { .limit = 0x0000,
- .base_low = 0x0000,
- .base_mid = 0x00,
- .access = 0x92,
- .granularity = 0x00,
- .base_hi = 0x00 } };
-
-REAL struct gdtr gdt = { sizeof(gdt_descs) - 1, (u32)gdt_descs, 0 };
+static struct gdt_desc gdt_descs[] = {
+ { 0 },
+
+ { .limit = 0xffff,
+ .base_low = 0x0000,
+ .base_mid = 0x00,
+ .access = 0x9a,
+ .granularity = 0x00,
+ .base_hi = 0x00 },
+
+ { .limit = 0xffff,
+ .base_low = 0x0000,
+ .base_mid = 0x00,
+ .access = 0x92,
+ .granularity = 0x00,
+ .base_hi = 0x00 },
+
+ { .limit = 0xffff,
+ .base_low = 0x0000,
+ .base_mid = 0x00,
+ .access = 0x9a,
+ .granularity = 0xcf,
+ .base_hi = 0x00 },
+
+ { .limit = 0xffff,
+ .base_low = 0x0000,
+ .base_mid = 0x00,
+ .access = 0x92,
+ .granularity = 0xcf,
+ .base_hi = 0x00 },
+
+ { .limit = 0x0000,
+ .base_low = 0x0000,
+ .base_mid = 0x00,
+ .access = 0x9a,
+ .granularity = 0x20,
+ .base_hi = 0x00 },
+
+ { .limit = 0x0000,
+ .base_low = 0x0000,
+ .base_mid = 0x00,
+ .access = 0x92,
+ .granularity = 0x00,
+ .base_hi = 0x00 },
+};
+
+REAL struct gdtr gdt = {
+ sizeof(gdt_descs) - 1,
+ (u32)gdt_descs,
+ 0,
+};