sbi spec uses a6, a7 as sbicall id, so we need to set a6 to 0

This commit is contained in:
Yu Chen 2022-06-21 23:45:12 +08:00
parent 6bd387a95f
commit 03a7e2f0b9

View File

@ -17,6 +17,7 @@ fn sbi_call(which: usize, arg0: usize, arg1: usize, arg2: usize) -> usize {
let mut ret;
unsafe {
asm!(
"li x16, 0",
"ecall",
inlateout("x10") arg0 => ret,
in("x11") arg1,