Bit Manipulation
Macros that work with the bits and bytes of numbers.
Description:
The macros documented here provide access to the individual bits, bytes and words of integer values.
Byte Manipulation Macros
Gets the value of individual bytes or words of Uinteger values.
Bit Manipulation Macros
Gets the state of individual bits of numeric values.
Byte Manipulation Macros
LOBYTE
Gets the least significant byte (LSB, or lo-byte) value of an Uinteger value.
HIBYTE
Gets the most significant byte (MSB, or hi-byte) value of the least significant word (LSW, or lo-word) of an Uinteger value.
LOWORD
Gets the least significant word (LSW, or lo-word) value of an Uinteger value.
HIWORD
Gets the most significant word (LSW, or hi-word) value of an Uinteger value.
Back to Table of Contents