summaryrefslogtreecommitdiff
path: root/src/kernel/arch/amd64/32/gdt.h
blob: 4e08c88ed1486d1a83a330c5360ba5c19ebce07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

enum {
	SEG_null,
	// order dictated by SYSENTER
	SEG_r0code,
	SEG_r0data,
	SEG_r3code,
	SEG_r3data,
	SEG_TSS,
	SEG_TSS2,

	SEG_end
};

void gdt_init(void);

extern struct lgdt_arg lgdt_arg; // used by amd64/32/boot.s