Start Back Next End
  
ZBasic System Library
260
ZBasic Microcontrollers
RamPokeDword
Type
Subroutine
Invocation
RamPokeDword(value, address)
Parameter
Method
Type
Description
value
ByVal
any 32-bit
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 four bytes at the specified RAM address, least significant byte
first.
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.
Example
Dim ul as UnsignedLong
Call RamPokeDword(&H117355aa, MemAddress(ul))
Call RamPokeDword(&H117355aa, ul.DataAddress)
Compatibility
This routine is not available in BasicX compatibility mode.
See Also
Previous page Top Next page