??? 08/25/07 21:10 Read: times |
#143621 - More specifically ... Responding to: ???'s previous message |
... with regard to your function's last statement, CRCHi ^= (CRCHi >> 5);some non-8051 architecture's toolchains need more explicit coercion to emit better code. For those toolchains, CRCHi ^= (CRCHi >> 4) >> 1;is the hint required to generate a 'swap' instruction. |