summaryrefslogtreecommitdiff
path: root/kernel/gdt.h
blob: 9e5a6a526662ce67a03f1f914317aa90f343ca44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

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

	SEG_end
};

void gdt_init();