LiteASM Documentation
Light Weight & Customizable Assembly Compiler & Virtual Machine
Status: Planning
Brought to you by:
dilshan
Function
procedure WriteMemory(MLoc : Word; WData : byte);
Availability
Description
This function write byte to the specified memory address.
Example
var
memory_address : Integer;
begin
for memory_address := 3 to GetRAMSize() do
begin
WriteMemory(memory_address, $FF);
end;
end;
Documentation: Virtual Machine Simulator Scripting Functions