home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 91 / af091a.adf / af91a3.lzx / prgs / ExternFunc / sub2.s < prev   
Text File  |  2019-03-25  |  189b  |  11 lines

  1. ; subtract two short integers passed from ACE and return result in d0.
  2.  
  3.     xdef _subtract
  4.  
  5.     _subtract:
  6.         move.w    4(sp),d0    ; arg1
  7.         move.w    6(sp),d1    ; arg2
  8.         sub.w    d1,d0        ; arg1-arg2
  9.         rts
  10.     end
  11.