Vhex-kernel/src/lib/libc/unistd/read.S

13 lines
121 B
ArmAsm
Raw Normal View History

#include <asm/unistd_32.h>
.text
.global _read
.type _read, @function
.align 2
_read:
trapa #__NR_read
rts
nop
.end