mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 23:53:31 +08:00
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 */
|