*################################################# * * general.inc - General-purpose HC11 include file * *################################################# ALL1S EQU %11111111 ; All 1's pattern; XOR with this to complement a byte. * Bit masks for bits 0 through 7 in a byte BIT0 EQU %1 ; Lowest-order, least significant bit (LSB) BIT1 EQU %10 BIT2 EQU %100 BIT3 EQU %1000 BIT4 EQU %10000 BIT5 EQU %100000 BIT6 EQU %1000000 BIT7 EQU %10000000 ; Highest-order, most significant bit (MSB) * Bit masks for bits 8 through 15 in the LSB of a double-byte word. BIT8 EQU BIT0 BIT9 EQU BIT1 BIT10 EQU BIT2 BIT11 EQU BIT3 BIT12 EQU BIT4 BIT13 EQU BIT5 BIT14 EQU BIT6 BIT15 EQU BIT7