FUNCTION LowWord : WORD
Function returns the low word of the input "dwValue".
Example:
dwValue : WORD := 16#12345678 ;
->
MEM.LowWord(dwValue) = 16#5678
InOut:
|
Scope
|
Name
|
Type
|
Comment
|
Return
|
LowWord
|
WORD
|
function returns low word of "dwValue"
|
Input
|
dwValue
|
DWORD
|
dword with high and low word
|
|