143019Sbostic/*- 2*61117Sbostic * Copyright (c) 1990, 1993 3*61117Sbostic * The Regents of the University of California. All rights reserved. 443019Sbostic * 543019Sbostic * This code is derived from software contributed to Berkeley by 643019Sbostic * the Systems Programming Group of the University of Utah Computer 743019Sbostic * Science Department. 843019Sbostic * 943019Sbostic * %sccs.include.redist.c% 1043019Sbostic */ 1143019Sbostic 1243019Sbostic#if defined(LIBC_SCCS) && !defined(lint) 13*61117Sbostic .asciz "@(#)umodsi3.s 8.1 (Berkeley) 06/04/93" 1443019Sbostic#endif /* LIBC_SCCS and not lint */ 1543019Sbostic 1643019Sbostic#include "DEFS.h" 1743019Sbostic 1843019Sbostic/* unsigned % unsigned */ 1943019SbosticENTRY(__umodsi3) 2043019Sbostic movel sp@(4),d1 2143019Sbostic divull sp@(8),d0:d1 2243019Sbostic rts 23