Contents |
Effect
Writes a value to several bytes of the memory (RAM).
Syntax
CALL FILLRAM (<StartAddress>,<Bytes>,<Value>)
Parameters
<StartAddress> must be between &H4500 and &HFFFF.
<Bytes> is a number to specify how many bytes need to be written, starting at the specified <StartAddress>.
<Value> is a decimal number between 0 and 255. It can also be a numeric expression.
Example
CALL FILLRAM (&HA000,100,255)
Related to
CALL FILLVRM, CALL MOVEMV, CALL MOVEVM, POKE