Futurebasic/Language/Reference/poke

POKE edit

Syntax edit

POKE [BYTE]
POKE WORD
POKE LONG

Shorthand syntax:

| address&, byteExpr
% address&, shortIntExpr
& address&, longIntExpr

Description edit

These 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 edit

PEEK; VARPTR; BLOCKMOVE; LET