15 lines
237 B
C
15 lines
237 B
C
#ifndef __ARCH_H__
|
|
#define __ARCH_H__
|
|
|
|
struct Context {
|
|
uintptr_t hi, gpr[32], epc, cause, lo, status;
|
|
void *pdir;
|
|
};
|
|
|
|
#define GPR1 gpr[2] // v0
|
|
#define GPR2 gpr[0]
|
|
#define GPR3 gpr[0]
|
|
#define GPR4 gpr[0]
|
|
#define GPRx gpr[0]
|
|
|
|
#endif
|