4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 23:53:31 +08:00

11 lines
128 B
C
Raw Normal View History

#ifndef _SBI_ASM_H
#define _SBI_ASM_H
.macro SBI_CALL which
li a7, \which
ecall
nop
.endm
#endif /* _SBI_ASM_H */