1
.LOCALREFREF
Nunuhara Cabbage edited this page 2020-05-01 21:05:55 -07:00

.LOCALREFREF <varname>

Macro Arguments

ident varname - Name of the local variable

Stack Arguments

None.

Description

Dereference the value of a local variable (putting it on the stack).

Macro Expansion

.LOCALREFREF my_var

Expands to,

PUSHLOCALPAGE
PUSH <varno>
REFREF

where <varno> is the index of the variable my_var in the local page of the current function. my_var must be a reference to an immediate type (int or float).