LblPtr&()

Last Modified: 9/8/2021

Returns the memory address of a line label.

Arguments

NameTypeRequiredDescription
LineLabel Line Label Yes The line label to retrieve the memory address of.

Example

Syntax: LblPtr&(<LineLabel>)
    a& = LblPtr&(MyLabel)
    Print a&
 
MyLabel:
    Data 1,2,3,4

Remarks

You can use the DataPtr& system variable to set the data pointer to the variable with the stored memory location, which will allow you to use the Read, ReadInt, or ReadLong commands, or the Read(), ReadInt(), or ReadLong() functions just like if you were using the Reload command.

See Also

Read, ReadInt, ReadLong, Reload, Restore, Read(), Read(), ReadLong&(), VarPtr&()