home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / powerd / lib / powerd.lha / powerd_ppc / Min.ass < prev    next >
Encoding:
Text File  |  1980-10-04  |  145 b   |  14 lines

  1.  
  2. # Min(r3:LONG,r4:LONG)(r3:LONG)
  3.  
  4.     .text
  5.     .global    _Min
  6.  
  7. _Min:    cmpw    r4,r3
  8.     bge    done
  9.     mr    r4,r3
  10. done:    blr
  11.  
  12.     .type    _Min,@function
  13.     .size    _Min,$-_Min
  14.