MemOut

Description:              This statement writes a byte, word, or longword of RAM memory.

Returns:                    Nothing

Usage:                       Script or Steady State

Format:                      MemOut(Address, Type, Value)

Parameters:             Address   { numeric }  { required }  { no default }

                                      Any numeric expression that gives the RAM address to write. This may be specified using the @ operator.

                                    Type   { numeric }  { required }  { no default }

                                      Any numeric expression giving the type of write:

Type

Write Type

0

Write 8 bit byte

1

Write 16 bit word

2

Write 32 bit long word

 

                                    Value   { numeric }  { required }  { no default }

                                      Any numeric expression giving the value to write.

Comments:               This function requires that the VTSIO driver be installed. Please refer to the topic, Communicating Directly With Hardware for more details.

                                    In certain cases, the registry may need to be modified to allow access to the memory location.

See Also:

CopyIn | CopyOut | MemIn