mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Guess that this is what Doug *intended* to commit....
This commit is contained in:
parent
f7109125e1
commit
b91d22ca89
1 changed files with 5 additions and 1 deletions
|
|
@ -78,10 +78,14 @@
|
|||
#define FRAME_TRAPARG_A0 27
|
||||
#define FRAME_TRAPARG_A1 28
|
||||
#define FRAME_TRAPARG_A2 29
|
||||
/* this is a flag area to see whether we need to restore all registers */
|
||||
#define FRAME_FLAGS 30
|
||||
|
||||
#define FRAME_SW_SIZE (FRAME_TRAPARG_A2 + 1)
|
||||
#define FRAME_SW_SIZE (FRAME_FLAGS + 1)
|
||||
#define FRAME_HW_OFFSET FRAME_SW_SIZE
|
||||
|
||||
#define FRAME_FLAGS_SYSCALL 0x1
|
||||
|
||||
#define FRAME_PS (FRAME_HW_OFFSET + ALPHA_HWFRAME_PS)
|
||||
#define FRAME_PC (FRAME_HW_OFFSET + ALPHA_HWFRAME_PC)
|
||||
#define FRAME_GP (FRAME_HW_OFFSET + ALPHA_HWFRAME_GP)
|
||||
|
|
|
|||
Loading…
Reference in a new issue