blob: fbaf6816b3abda00dc665ef6b8a6b1159628a9ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
void gdt_farjump(int segment);
|