summaryrefslogtreecommitdiff
path: root/src/stem/mem/gdt.h
blob: aac16bbc9f0d79f45f769fac6a6359af57a70f3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef DEF_GDT_H
#define DEF_GDT_H

#include <types.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));

void gdt_init();

#endif