Changes in kernel/arch/ia32/src/asm.S [45f7449:8d427a3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/asm.S
r45f7449 r8d427a3 34 34 #include <arch/cpu.h> 35 35 #include <arch/mm/page.h> 36 #include <arch/istate_struct.h> 36 37 37 38 .text … … 136 137 ret 137 138 138 #define ISTATE_OFFSET_EDX 0139 #define ISTATE_OFFSET_ECX 4140 #define ISTATE_OFFSET_EBX 8141 #define ISTATE_OFFSET_ESI 12142 #define ISTATE_OFFSET_EDI 16143 #define ISTATE_OFFSET_EBP 20144 #define ISTATE_OFFSET_EAX 24145 #define ISTATE_OFFSET_EBP_FRAME 28146 #define ISTATE_OFFSET_EIP_FRAME 32147 #define ISTATE_OFFSET_GS 36148 #define ISTATE_OFFSET_FS 40149 #define ISTATE_OFFSET_ES 44150 #define ISTATE_OFFSET_DS 48151 #define ISTATE_OFFSET_ERROR_WORD 52152 #define ISTATE_OFFSET_EIP 56153 #define ISTATE_OFFSET_CS 60154 #define ISTATE_OFFSET_EFLAGS 64155 #define ISTATE_OFFSET_ESP 68156 #define ISTATE_OFFSET_SS 72157 158 139 /* 159 140 * Size of the istate structure without the hardware-saved part 160 141 * and without the error word. 161 142 */ 162 #define ISTATE_SOFT_SIZE 52143 #define ISTATE_SOFT_SIZE ISTATE_SIZE - (6 * 4) 163 144 164 145 /*
Note:
See TracChangeset
for help on using the changeset viewer.