1*21439Sdist/* 2*21439Sdist * Copyright (c) 1980 Regents of the University of California. 3*21439Sdist * All rights reserved. The Berkeley software License Agreement 4*21439Sdist * specifies the terms and conditions for redistribution. 5*21439Sdist */ 613414Sroot 7*21439Sdist#ifndef lint 8*21439Sdiststatic char sccsid[] = "@(#)abs.s 5.1 (Berkeley) 05/30/85"; 9*21439Sdist#endif not lint 10*21439Sdist 11*21439Sdist 1213414Sroot/* abs - int absolute value */ 1313414Sroot 1413414Sroot#include "DEFS.h" 1513414Sroot 1617328SsamENTRY(abs, 0) 1713414Sroot movl 4(ap),r0 1813414Sroot bgeq 1f 1913414Sroot mnegl r0,r0 2013414Sroot1: 2113414Sroot ret 22