home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / asmutl / buffers.lbr / FILLC.MAC < prev    next >
Encoding:
Text File  |  1987-01-15  |  128 b   |  8 lines

  1. ;
  2. ; fill hl^ for b with a, advance hl
  3. ; f,b,h,l
  4. .fillc::
  5.     mov m,a    ! inx h ! dcr b
  6.     jnz    .fillc
  7.     ret
  8. ²