/* This C language subroutine computes the absolute value of its integer input. The Run Time Library for the C Language. Gordon A. Sterling (617) 461 - 3076 DSP Development Tools Engineering Created on 4/27/90 Updated on 5/94 by AS #include int abs(int x); long int labs(long int x); */ #include "lib_glob.h" #include "sdl_glob.h" .SEGMENT/CODE Code_Space_Name; .FILE RTL_FILENAME; .GLOBAL _abs, _labs; _labs: _abs: R0=ABS R4, FETCH_RETURN /*Compute absolute value*/ restore_state: RETURN (DB); RESTORE_STACK RESTORE_FRAME .ENDSEG;