2021-03-07 02:52:25 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/gdt.h>
|
|
|
|
|
|
|
|
static struct gdt_desc gdt_descs[] = {
|
|
|
|
{0},
|
|
|
|
|
|
|
|
{
|
|
|
|
.limit = 0xffff,
|
|
|
|
.base_low = 0x0000,
|
|
|
|
.base_mid = 0x00,
|
|
|
|
.access = 0b10011010,
|
|
|
|
.granularity = 0b00000000,
|
|
|
|
.base_hi = 0x00
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
.limit = 0xffff,
|
|
|
|
.base_low = 0x0000,
|
|
|
|
.base_mid = 0x00,
|
|
|
|
.access = 0b10010010,
|
|
|
|
.granularity = 0b00000000,
|
|
|
|
.base_hi = 0x00
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
.limit = 0xffff,
|
|
|
|
.base_low = 0x0000,
|
|
|
|
.base_mid = 0x00,
|
|
|
|
.access = 0b10011010,
|
|
|
|
.granularity = 0b11001111,
|
|
|
|
.base_hi = 0x00
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
.limit = 0xffff,
|
|
|
|
.base_low = 0x0000,
|
|
|
|
.base_mid = 0x00,
|
|
|
|
.access = 0b10010010,
|
|
|
|
.granularity = 0b11001111,
|
|
|
|
.base_hi = 0x00
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
.limit = 0x0000,
|
|
|
|
.base_low = 0x0000,
|
|
|
|
.base_mid = 0x00,
|
|
|
|
.access = 0b10011010,
|
|
|
|
.granularity = 0b00100000,
|
|
|
|
.base_hi = 0x00
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
.limit = 0x0000,
|
|
|
|
.base_low = 0x0000,
|
|
|
|
.base_mid = 0x00,
|
|
|
|
.access = 0b10010010,
|
|
|
|
.granularity = 0b00000000,
|
|
|
|
.base_hi = 0x00
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-03-13 05:21:01 +03:00
|
|
|
#if defined (bios)
|
|
|
|
__attribute__((section(".realmode")))
|
|
|
|
#endif
|
2021-03-07 02:52:25 +03:00
|
|
|
struct gdtr gdt = {
|
|
|
|
sizeof(gdt_descs) - 1,
|
2021-03-08 02:50:23 +03:00
|
|
|
(uintptr_t)gdt_descs,
|
|
|
|
#if defined (bios)
|
|
|
|
0
|
|
|
|
#endif
|
2021-03-07 02:52:25 +03:00
|
|
|
};
|