xref: /csrg-svn/lib/libc/hp300/sys/pipe.s (revision 41850)
1*41850Sbostic/*-
2*41850Sbostic * Copyright (c) 1990 The Regents of the University of California.
3*41850Sbostic * All rights reserved.
4*41850Sbostic *
5*41850Sbostic * This code is derived from software contributed to Berkeley by
6*41850Sbostic * the Systems Programming Group of the University of Utah Computer
7*41850Sbostic * Science Department.
8*41850Sbostic *
9*41850Sbostic * %sccs.include.redist.c%
10*41850Sbostic */
11*41850Sbostic
12*41850Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*41850Sbostic	.asciz "@(#)pipe.s	5.1 (Berkeley) 05/12/90"
14*41850Sbostic#endif /* LIBC_SCCS and not lint */
15*41850Sbostic
16*41850Sbostic#include "SYS.h"
17*41850Sbostic
18*41850SbosticSYSCALL(pipe)
19*41850Sbostic	movl	sp@(4),a0
20*41850Sbostic	movl	d0,a0@+
21*41850Sbostic	movl	d1,a0@
22*41850Sbostic	clrl	d0
23*41850Sbostic	rts
24