![]() ZBasic System Library
182
ZBasic Microcontrollers
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
|