LoDWord Procedure |
Version 5 |
Returns or sets the low double word (4 bytes) of a given unsigned 8 byte word. If the last parameter, dlValue, is missing, then it returns the low double word of the input 8 byte word. Otherwise, the low double word of input value, ddw, is set to the low double word of dlValue.
[ ddwValue = ] LoDWord (ddw, [dlValue])
The LoDWord procedure syntax has the following parts:
Name |
Type |
Description |
ddwValue |
DDWord |
Return value: the low double word of a given 8 byte word, ddw if dlValue is missing, otherwise the low double word of input value, ddw, is replaced by the low double word of dlValue. |
ddw |
DDWord |
Input value- an unsigned 8 byte word |
dlValue |
DLong |
If it is not the default value, 0x100000000, then the low double word of input value, ddw, is set to the low double word of dlValue. |
print using "X"; LoDWord(0x1FFFFFFF55000064) ! prints 55000064
print using "X"; LoDWord(0x1FFFFFFF55000064, 0x70707070) ! prints 70707070