Important: The information in this document is obsolete and should not be used for new development.
BitSet
You can use theBitSetprocedure to set a particular bit.
PROCEDURE BitSet (bytePtr: Ptr; bitNum: LongInt);
bytePtr- A pointer to a byte in memory.
bitNum- The bit to be set, specified as a positive offset from the high-order bit of the byte pointed to by the
bytePtrparameter. The bit being set need not be in the byte pointed to bybytePtr.DESCRIPTION
TheBitSetprocedure sets (to a value of 1) the bit specified by thebytePtrandbitNumparameters.SPECIAL CONSIDERATIONS
The bit-numbering scheme used by theBitSetprocedure is the opposite of MC680x0 bit numbering. To convert an MC680x0 bit number to the format required by theBitSetprocedure, subtract the MC680x0 bit number from the highest bit number.SEE ALSO
For an example of the use of theBitSetprocedure, see page 3-16. For more information about reversed bit-numbering see "Reversed Bit-Numbering" on page 3-7.