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