FutureBasic Logo

<<    Index    >> FutureBasic

BlockFill & LongBlockFill   statement



Syntax
BlockFill( startAddr, numBytes, byteValueExpr )
LongBlockFill( startAddr, numBytes, byteValueExpr )

Description
Fills each byte in a range of memory with the value specified in byteValExpr. The startAddr parameter indicates the first memory address to fill, and numBytes indicates the number of bytes in the range. BlockFill and LongBlockFill are identical.

See also
BlockMove; PascalString; space$