home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / libinc / demo / fill.s65 < prev    next >
Text File  |  1993-01-19  |  153b  |  13 lines

  1.    .macro filler
  2. foo   .= foo + 1
  3.       .if foo < 512
  4.          .byte foo & $FF
  5.          filler
  6.       .endif      
  7.    .endm   
  8.    
  9. foo   .= 0
  10.  
  11.    filler
  12.  
  13.