xref: /csrg-svn/lib/libc/hp300/gen/mulsi3.s (revision 61117)
143011Sbostic/*-
2*61117Sbostic * Copyright (c) 1990, 1993
3*61117Sbostic *	The Regents of the University of California.  All rights reserved.
443011Sbostic *
543011Sbostic * This code is derived from software contributed to Berkeley by
643011Sbostic * the Systems Programming Group of the University of Utah Computer
743011Sbostic * Science Department.
843011Sbostic *
943011Sbostic * %sccs.include.redist.c%
1043011Sbostic */
1143011Sbostic
1243011Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*61117Sbostic	.asciz "@(#)mulsi3.s	8.1 (Berkeley) 06/04/93"
1443011Sbostic#endif /* LIBC_SCCS and not lint */
1543011Sbostic
1643011Sbostic#include "DEFS.h"
1743011Sbostic
1843011Sbostic/* int * int */
1943011SbosticENTRY(__mulsi3)
2043011Sbostic	movel	sp@(4),d0
2143011Sbostic	mulsl	sp@(8),d0
2243011Sbostic	rts
23