Subversion Repositories HelenOS-historic

Rev

Rev 413 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 413 Rev 414
Line 33... Line 33...
33
 
33
 
34
#define SP_DELTA    8
34
#define SP_DELTA    8
35
 
35
 
36
struct context {
36
struct context {
37
    __u32 r0;
37
    __u32 r0;
38
    __u32 sp;
38
    __address sp;
39
    __u32 r2;
39
    __u32 r2;
40
    __u32 r3;
40
    __u32 r3;
41
    __u32 r4;
41
    __u32 r4;
42
    __u32 r5;
42
    __u32 r5;
43
    __u32 r6;
43
    __u32 r6;
Line 64... Line 64...
64
    __u32 r27;
64
    __u32 r27;
65
    __u32 r28;
65
    __u32 r28;
66
    __u32 r29;
66
    __u32 r29;
67
    __u32 r30;
67
    __u32 r30;
68
    __u32 r31;
68
    __u32 r31;
69
    __u32 pc;
69
    __address pc;
70
    ipl_t ipl;
70
    ipl_t ipl;
71
} __attribute__ ((packed));
71
} __attribute__ ((packed));
72
 
72
 
73
#endif
73
#endif