Initial revision

This commit is contained in:
ceriel
1987-02-20 14:36:01 +00:00
parent 429502815f
commit 8612a70ea3
167 changed files with 2574 additions and 0 deletions

14
mach/sun3/libsys/pipe.s Normal file
View File

@@ -0,0 +1,14 @@
#include "syscall.h"
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _pipe
_pipe:
pea (SYS_pipe)
trap #0
bcs 1f
move.l (4,sp),a0
move.l d0,(a0)+
move.l d1,(a0)
clr.l d0
rts
1:
jmp (cerror)