fxlibc/src/libc/stdlib/target/vhex-sh/_Exit.S

13 lines
129 B
ArmAsm
Raw Normal View History

2021-11-07 18:05:33 +01:00
#include <bits/asm/unistd_32.h>
.text
.global __Exit
.type __Exit, @function
.align 2
__Exit:
trapa #__NR_exit
rts
nop
.end