home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Programming / powerd / lib / PowerD / Sign.ass < prev    next >
Encoding:
Text File  |  1999-09-29  |  140 b   |  14 lines

  1. ; d0 - value
  2.  
  3.     xdef    _Sign
  4.  
  5. _Sign    tst.l    d0
  6.     blt.s    .minus
  7.     bgt.s    .plus
  8. .zero    moveq    #0,d0
  9.     rts
  10. .minus    moveq    #-1,d0
  11.     rts
  12. .plus    moveq    #1,d0
  13.     rts
  14.