mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
RISC-V Linux User Emulation
Implementation of linux user emulation for RISC-V. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Sagar Karandikar <sagark@eecs.berkeley.edu> Signed-off-by: Michael Clark <mjc@sifive.com>
This commit is contained in:
parent
65c5b75c38
commit
47ae93cdfe
13 changed files with 1012 additions and 6 deletions
13
target/riscv/cpu_user.h
Normal file
13
target/riscv/cpu_user.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#define xRA 1 /* return address (aka link register) */
|
||||
#define xSP 2 /* stack pointer */
|
||||
#define xGP 3 /* global pointer */
|
||||
#define xTP 4 /* thread pointer */
|
||||
|
||||
#define xA0 10 /* gpr[10-17] are syscall arguments */
|
||||
#define xA1 11
|
||||
#define xA2 12
|
||||
#define xA3 13
|
||||
#define xA4 14
|
||||
#define xA5 15
|
||||
#define xA6 16
|
||||
#define xA7 17 /* syscall number goes here */
|
Loading…
Add table
Add a link
Reference in a new issue