home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
minnie.tuhs.org
/
unixen.tar
/
unixen
/
PDP-11
/
Trees
/
V6
/
usr
/
source
/
s4
/
abs.s
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1975-05-13
|
165 b
|
17 lines
/ abs - int absolute value.
/ fabs - floating abs
.globl _abs
_abs:
mov 2(sp),r0
bge 1f
neg r0
1:
rts pc
.globl _fabs
_fabs:
movf 2(sp),fr0
absf fr0
rts pc