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.

#BYTEMACROSByte Manipulation Macros
	Gets the value of individual bytes or words of KeyPgUintegerUInteger values.
#BITMACROSBit Manipulation Macros
	Gets the state of individual bits of numeric values.

BYTEMACROSByte Manipulation Macros
	KeyPgLoByteLoByte
		Gets the least significant byte (LSB, or lo-byte) value of an KeyPgUintegerUInteger
		value.
	KeyPgHibyteHiByte
		Gets the most significant byte (MSB, or hi-byte) value of the least 
		significant word (LSW, or lo-word) of an KeyPgUintegerUInteger value.
	KeyPgLoWordLoWord
		Gets the least significant word (LSW, or lo-word) value of an KeyPgUintegerUInteger
		value.
	KeyPgHiwordHiWord
		Gets the most significant word (LSW, or hi-word) value of an KeyPgUintegerUInteger 
		value.
BITMACROSBit Manipulation Macros
	KeyPgBitBit
		Gets the state of an individual bit in an integer value.
	KeyPgBitresetBitReset
		Gets the value of an integer with a specified bit cleared.
	KeyPgBitsetBitSet
		Gets the value of an integer with a specified bit set.

