Start Back Next End
  
ZBasic System Library
261
ZBasic Microcontrollers
RamPokeWord
Type
Subroutine
Invocation
RamPokeWord(value, address)
Parameter
Method
Type
Description
value
ByVal
int16
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 two 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 u as UnsignedInteger
Call RamPokeWord(&H55aa, MemAddress(u))
Compatibility
This routine is not available in BasicX compatibility mode.
See Also
Previous page Top Next page