20 lines
262 B
C
20 lines
262 B
C
|
#include <type.h>
|
||
|
|
||
|
struct gdtdesc {
|
||
|
u16 lim0_15;
|
||
|
u16 base0_15;
|
||
|
u8 base16_23;
|
||
|
u8 acces;
|
||
|
u8 lim16_19 : 4;
|
||
|
u8 flags : 4;
|
||
|
u8 base24_31;
|
||
|
} __attribute__ ((packed));
|
||
|
|
||
|
struct gdtr {
|
||
|
u16 limite;
|
||
|
u32 base;
|
||
|
} __attribute__ ((packed));
|
||
|
|
||
|
|
||
|
|