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

  1. ; d0 - value
  2. ; d1 - min
  3. ; d2 - max
  4.  
  5.     xdef    _Bounds
  6.  
  7. _Bounds    cmp.l    d1,d0
  8.     bgt.s    .too
  9.     move.l    d2,d1
  10.     cmp.l    d1,d0
  11.     blt.s    .too
  12.     rts
  13. .too    move.l    d1,d0
  14.     rts
  15.