z80:Directives:FILL
From Learn @ Cemetech
Revision as of 17:23, 5 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
Writes a specified number of bytes into the output at the current location.
Syntax
.fill amount [, value]
Uses
If value is not specified, the current empty fill value is used instead.
; Output 100 space characters. .fill 100, ' '
See Also