mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
12 lines
357 B
C
12 lines
357 B
C
#ifndef _ASM_SEGMENT_H
|
|
#define _ASM_SEGMENT_H
|
|
|
|
#define KERNEL_CS (0x8)
|
|
#define KERNEL_DS (0x10)
|
|
#define USER_CS (0x18 + 0x3)
|
|
#define USER_DS (0x20 + 0x3)
|
|
#define RESERVED_FOR_TSS (0x28)
|
|
#define PCR_SELECTOR (0x30)
|
|
#define TEB_SELECTOR (0x38 + 0x3)
|
|
|
|
#endif /* _ASM_SEGMENT_H */
|