Navigation bar
  Start Previous page
 243 of 323 
Next page End  

ZBasic System Library
233
ZX Microcontroller Family
RamPoke
Type
Subroutine
Invocation
RamPoke(value, address)
Parameter
Method
Type
Description
value
ByVal
Byte
The value to write to RAM.
address
ByVal
int16
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