abstract-machine/am/include/arch/mips32-nemu.h
2020-09-04 00:13:55 +08:00

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