home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 3
/
goldfish_volume_3.bin
/
files
/
dev
/
basic
/
ace
/
prgs
/
externfunc
/
sub2.s
< prev
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
|
1994-01-09
|
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