MEM.LowWord (FUN)

This function of the CAA_Memory.library will return the low word of the input DWord „dwValue“.

Input:

dwValue

DWORD

DWORD (incl. high and low word)

Output:

MEM.LowWord

WORD

Low word of dwValue

Example:

dwValue : WORD := 16#12345678 ;

->

MEM.LowWord(dwValue) = 16#5678