??? 06/11/07 07:49 Modified: 06/11/07 08:01 Read: times |
#140535 - More bytes, but ... Responding to: ???'s previous message |
... more efficient assembly:
UC TestFlip(UC c) { UC r,i=7;DO{r*=2;r|=c&1;c/=2;}WH(--i);RT r; } Too bad C still puts a do/while loop at a disadvantage character-wise compared to a for or while loop. But the assembly generated is more efficient. |