Futurebasic/Language/Reference/poke
POKE
editSyntax
editPOKE [BYTE]
POKE WORD
POKE LONG
Shorthand syntax:
| address&, byteExpr
% address&, shortIntExpr
& address&, longIntExpr
Description
editThese statements copy the value in byteExpr
, shortIntExpr
or longIntExpr
into the 1, 2 or 4 memory bytes (respectively) which start at location address&
. The address&
should be a long integer expression, or a POINTER
variable.
See Also
editPEEK; VARPTR; BLOCKMOVE; LET