Merge pull request #7 from Sin-kider/master

fix: Modify the register number into a macro definition
This commit is contained in:
Zihao Yu 2023-08-08 18:02:21 +08:00 committed by GitHub
commit 6c461b59db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};