home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format 91
/
af091a.adf
/
af91a3.lzx
/
prgs
/
ExternFunc
/
sub2.s
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1996-09-15
|
189 b
|
11 lines
; subtract two short integers passed from ACE and return result in d0.
xdef _subtract
_subtract:
move.w 4(sp),d0 ; arg1
move.w 6(sp),d1 ; arg2
sub.w d1,d0 ; arg1-arg2
rts
end