6 lines
135 B
Text
6 lines
135 B
Text
|
|
REM get a variable's address:
|
||
|
|
y% = ^x%
|
||
|
|
|
||
|
|
REM can't set a variable's address, but can access a given memory location (4 bytes):
|
||
|
|
x% = !y%
|