Start Back Next End
  
ZBasic System Library
259
ZBasic Microcontrollers
RamPoke
Type
Subroutine
Invocation
RamPoke(value, address)
Parameter
Method
Type
Description
value
ByVal
Byte
The value to write to RAM.
address
ByVal
integral
The RAM address to which to write.
Discussion
This routine will write the given value to the specified RAM address.
Caution
Modifying user variables in this way may cause your program to malfunction.  Writing to areas of RAM
used by the system may cause your program to malfunction.
Examples
Dim b as Byte
Call RamPoke(&H55, MemAddress(b))
Call RamPoke(&H55, b.DataAddress)
See Also
Previous page Top Next page