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

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

	SEG_end
};

void gdt_init();
void gdt_farjump(int segment);