Vhex-kernel/src/lib/unistd/write.S

13 lines
128 B
ArmAsm
Raw Normal View History

.text
.global _write
.type _write, @function
#include "kernel/unistd_32.h"
.align 2
_write:
trapa #__NR_write
rts
nop
.end