mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 20:13:29 +08:00
5036816967
add qemu-riscv-virt64 bsp
11 lines
128 B
C
11 lines
128 B
C
#ifndef _SBI_ASM_H
|
|
#define _SBI_ASM_H
|
|
|
|
.macro SBI_CALL which
|
|
li a7, \which
|
|
ecall
|
|
nop
|
|
.endm
|
|
|
|
#endif /* _SBI_ASM_H */
|