142995Sbostic/*- 2*61117Sbostic * Copyright (c) 1990, 1993 3*61117Sbostic * The Regents of the University of California. All rights reserved. 442995Sbostic * 542995Sbostic * This code is derived from software contributed to Berkeley by 642995Sbostic * the Systems Programming Group of the University of Utah Computer 742995Sbostic * Science Department. 842995Sbostic * 942995Sbostic * %sccs.include.redist.c% 1042995Sbostic */ 1142995Sbostic 1242995Sbostic#if defined(LIBC_SCCS) && !defined(lint) 13*61117Sbostic .asciz "@(#)ashrsi3.s 8.1 (Berkeley) 06/04/93" 1442995Sbostic#endif /* LIBC_SCCS and not lint */ 1542995Sbostic 1642995Sbostic#include "DEFS.h" 1742995Sbostic 1842995Sbostic/* int >> int */ 1942995SbosticENTRY(__ashrsi3) 2042995Sbostic movel sp@(8),d1 2142995Sbostic movel sp@(4),d0 2242995Sbostic asrl d1,d0 2342995Sbostic rts 24