143007Sbostic/*- 2*61117Sbostic * Copyright (c) 1990, 1993 3*61117Sbostic * The Regents of the University of California. All rights reserved. 443007Sbostic * 543007Sbostic * This code is derived from software contributed to Berkeley by 643007Sbostic * the Systems Programming Group of the University of Utah Computer 743007Sbostic * Science Department. 843007Sbostic * 943007Sbostic * %sccs.include.redist.c% 1043007Sbostic */ 1143007Sbostic 1243007Sbostic#if defined(LIBC_SCCS) && !defined(lint) 13*61117Sbostic .asciz "@(#)lshrsi3.s 8.1 (Berkeley) 06/04/93" 1443007Sbostic#endif /* LIBC_SCCS and not lint */ 1543007Sbostic 1643007Sbostic#include "DEFS.h" 1743007Sbostic 1843007Sbostic/* unsigned >> unsigned */ 1943007SbosticENTRY(__lshrsi3) 2043007Sbostic movel sp@(8),d1 2143007Sbostic movel sp@(4),d0 2243007Sbostic lsrl d1,d0 2343007Sbostic rts 24