Writes a value in a specified data type to an address.
{addr} = exp
address:address
expaexp
Writes a value in the specified data type to an address.
{}= writes a 32-bit value.
Dim a% = 5
{*a%} = Int{*a%} + 1 // a slow a%++
Print a%
And...
Dim a@, b@, c@, f@
a = 22222222222.56
b = 11111111111.66
c = Cur{V:a} + Cur{V:b}
Print c
Cur{V:f}= 65000
Print Cur{V:f} // reads the buffer
The {}= commands have corresponding Poke commands, which can be used instead.
Poke Commands
{Created by Sjouke Hamstra; Last updated: 23/09/2014 by James Gaite}