V5/usr/source/s4/pipe.s

Compare this file to the similar file:
Show the results in this format:

/ pipe -- C library

/	pipe(f)
/	int f[2];

.globl	_pipe, retrn, cerror

pipe = 42.

_pipe:
	mov	r5,-(sp)
	mov	sp,r5
	sys	pipe
	bec	1f
	jmp	cerror
1:
	mov	4(r5),r2
	mov	r0,(r2)+
	mov	r1,(r2)
	clr	r0
	jmp	retrn