mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-19 17:37:09 +02:00
15 lines
140 B
ArmAsm
15 lines
140 B
ArmAsm
#include <asm/unistd_32.h>
|
|
.text
|
|
.global _kill
|
|
.type _kill, @function
|
|
|
|
|
|
.align 2
|
|
/*
|
|
** TODO: doc
|
|
*/
|
|
_kill:
|
|
trapa #__NR_kill
|
|
rts
|
|
nop
|
|
.end
|