fix: Modify the register number into a macro definition

This commit is contained in:
Sin_kider 2023-08-08 16:56:21 +08:00
parent 83ac97b4d9
commit b1586e0336

View file

@ -1,9 +1,15 @@
#ifndef ARCH_H__
#define ARCH_H__
#ifdef __riscv_e
#define NR_REGS 16
#else
#define NR_REGS 32
#endif
struct Context {
// TODO: fix the order of these members to match trap.S
uintptr_t mepc, mcause, gpr[32], mstatus;
uintptr_t mepc, mcause, gpr[NR_REGS], mstatus;
void *pdir;
};