Navigation bar
  Start Previous page
 164 of 323 
Next page End  

ZBasic System Library
154
ZX Microcontroller Family
MakeWord
Type
Function returning UnsignedInteger
Invocation
MakeWord(loByte, hiByte) 
Parameter
Method
Type
Description
loByte
ByVal
Byte
The value for the low byte of the word value.
hiByte
ByVal
Byte
The value for the high byte of the word value.
Discussion
This function returns a value composed of the two byte values.
Example
Dim b1 as Byte, b2 as Byte
Dim u as UnsignedInteger
u = MakeWord(b1, b2)
Compatibility
This function is not available in BasicX compatibility mode.
See Also
Previous page Top Next page