MEM.LowByte (FUN)

This function of the of the CAA_Memory.library will return the low byte of the input word „wValue“.

Input:

wValue

WORD

Word (incl. high and low byte)

Output:

MEM.LowByte

BYTE

Low byte of  wValue

Example:

wValue : WORD := 16#1234 ;

->

MEM.LowByte(wValue) = 16#34