poke()

Writes a byte in memory bank at given address. If bank number is omitted, will be used current one.

Syntax:
poke( bank , address , value )
poke( address , value )

Example:
for i =0 to 40
    poke( 1 ,i, 0 )
    x=peek(1,i)
next
Example:
basescreen.sdlbas
Example:
memoryBankTest.sdlbas

See also peek() command.