home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / powerd / lib / powerd.lha / powerd_ppc / DupStr.ass < prev    next >
Encoding:
Text File  |  1999-06-23  |  232 b   |  17 lines

  1.  
  2. ; DupStr(r3:PTR TO CHAR,r4:PTR TO CHAR)(r3:PTR TO CHAR)
  3.  
  4.     .text
  5.     .global    _DupStr
  6.  
  7. _DupStr    subi    r5,r3,1
  8.     subi    r4,r4,1
  9. .loop    lbzu    r0,1(r4)
  10.     cmpwi    r0,0
  11.     stbu    r0,1(r5)
  12.     bne    .loop
  13.     blr
  14.  
  15.     .type    _DupStr,@function
  16.     .size    _DupStr,$-_DupStr
  17.