aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/gdt.h
blob: 4cf7c4f3ebfb71c5d427f797b8c61911cba68b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdint.h>

struct gdt_entry {
    uint16_t limit_low;
    uint16_t base_low;
    uint8_t base_middle;
    uint8_t access;
    uint8_t granularity;
    uint8_t base_high;
} __attribute__((packed));

struct gdt_ptr {
    uint16_t limit;
    uint32_t base;
} __attribute__((packed));

struct gdt_entry gdt[3];
struct gdt_ptr gp;

/* assembly */
extern void gdt_flush(uint32_t);

void gdt_init(void);