diff options
Diffstat (limited to 'newlib/libc/sys/sysvi386/read.s')
-rw-r--r-- | newlib/libc/sys/sysvi386/read.s | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/sys/sysvi386/read.s b/newlib/libc/sys/sysvi386/read.s new file mode 100644 index 0000000..8ecb5ba --- /dev/null +++ b/newlib/libc/sys/sysvi386/read.s @@ -0,0 +1,8 @@ + .globl _read + .globl read +_read: +read: + movl $3, %eax + lcall $7,$0 + jb _cerror + ret |