??? 08/25/08 02:28 Modified: 08/25/08 02:31 Read: times Msg Score: +1 +1 Informative |
#157714 - Don\'t use conditional jumps Responding to: ???'s previous message |
The simplest way to get uniform code timing is simply not to use conditional jumps. Consider something like the following (not tested):
mov a, 33h add a, #0E0h rlc a anl a, #3Fh mov 33h, a ret |