1 #ifndef _SBI_ASM_H 2 #define _SBI_ASM_H 3 4 .macro SBI_CALL which 5 li a7, \which 6 ecall 7 nop 8 .endm 9 10 #endif /* _SBI_ASM_H */ 11