Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/asm.S

    r8d427a3 r45f7449  
    3434#include <arch/cpu.h>
    3535#include <arch/mm/page.h>
    36 #include <arch/istate_struct.h>
    3736
    3837.text
     
    137136        ret
    138137
     138#define ISTATE_OFFSET_EDX         0
     139#define ISTATE_OFFSET_ECX         4
     140#define ISTATE_OFFSET_EBX         8
     141#define ISTATE_OFFSET_ESI         12
     142#define ISTATE_OFFSET_EDI         16
     143#define ISTATE_OFFSET_EBP         20
     144#define ISTATE_OFFSET_EAX         24
     145#define ISTATE_OFFSET_EBP_FRAME   28
     146#define ISTATE_OFFSET_EIP_FRAME   32
     147#define ISTATE_OFFSET_GS          36
     148#define ISTATE_OFFSET_FS          40
     149#define ISTATE_OFFSET_ES          44
     150#define ISTATE_OFFSET_DS          48
     151#define ISTATE_OFFSET_ERROR_WORD  52
     152#define ISTATE_OFFSET_EIP         56
     153#define ISTATE_OFFSET_CS          60
     154#define ISTATE_OFFSET_EFLAGS      64
     155#define ISTATE_OFFSET_ESP         68
     156#define ISTATE_OFFSET_SS          72
     157
    139158/*
    140159 * Size of the istate structure without the hardware-saved part
    141160 * and without the error word.
    142161 */
    143 #define ISTATE_SOFT_SIZE        ISTATE_SIZE - (6 * 4)
     162#define ISTATE_SOFT_SIZE  52
    144163
    145164/*
Note: See TracChangeset for help on using the changeset viewer.