xref: /original-bsd/lib/libc/hp300/gen/lshrsi3.s (revision 325d3b5e)
152785d35Sbostic/*-
2*325d3b5eSbostic * Copyright (c) 1990, 1993
3*325d3b5eSbostic *	The Regents of the University of California.  All rights reserved.
452785d35Sbostic *
552785d35Sbostic * This code is derived from software contributed to Berkeley by
652785d35Sbostic * the Systems Programming Group of the University of Utah Computer
752785d35Sbostic * Science Department.
852785d35Sbostic *
952785d35Sbostic * %sccs.include.redist.c%
1052785d35Sbostic */
1152785d35Sbostic
1252785d35Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*325d3b5eSbostic	.asciz "@(#)lshrsi3.s	8.1 (Berkeley) 06/04/93"
1452785d35Sbostic#endif /* LIBC_SCCS and not lint */
1552785d35Sbostic
1652785d35Sbostic#include "DEFS.h"
1752785d35Sbostic
1852785d35Sbostic/* unsigned >> unsigned */
1952785d35SbosticENTRY(__lshrsi3)
2052785d35Sbostic	movel	sp@(8),d1
2152785d35Sbostic	movel	sp@(4),d0
2252785d35Sbostic	lsrl	d1,d0
2352785d35Sbostic	rts
24