riscv-utils/false.s
Andrew Ekstedt 6f4ee19f88 disable compressed instructions for true and false
they're so small it doesn't really matter; better to keep them simple.
2023-04-16 11:14:21 -07:00

10 lines
79 B
ArmAsm

.globl _start
.text
_start:
li a7, 93 # sys_exit
li a0, 1
ecall