DWORD('Low','High')

Arguments

'Low'

16 bit integer: Word

'High'

16 bit integer: Word

Description

This function returns the 32 bit integer DWORD consisting of the int16 WORDS ‘Low’ and ‘High.’

Example

Calculating two DWORDS from a simple 0 and 1 combination of 'Low' and 'High'.

from int16 WORDS compound DWORD

DWORD('Low','High')

int16 'High'

int16 'Low'

Conv.

Dec.

DWORD(0, 1)

0000 0000 0000 0001

0000 0000 0000 0000

216

65536

DWORD(1, 0)

0000 0000 0000 0000

0000 0000 0000 0001

20

1

Solution

The figure below shows the calculation of two simple DWORDS.