WRITES THE VALUE V (BYTE FROM 0 TO 255) AT ADDRESS A
ACTION
The command POKE A,V writes the value V at memory address A.
V is a byte from 0 to 255.
A is the address of this byte. The memory is looked by POKE as a series of bytes, each byte having its own address.
SYNTAX:
POKE A,V
USE ERROR EXAMPLE
dim i%
poke adr(i%),20
print i%
caption 0,"20 is printed"
POKE
POKE A,V
SEE ALSO
POKE16
POKE32
POKE_NORMAL
POKE_REVERSE
PEEK()
PEEK16()
PEEK32()
PEEK_NORMAL
PEEK_REVERSE