z80:Directives:FILL

From Learn @ Cemetech
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

block