Hacker News new | ask | show | jobs
by russdill 479 days ago
On 6502 they are both 2 cycles. On the vast majority of processors I'm aware of, "simple" alu operarations don't vary in execution time
2 comments

On 8086 or ARM you can get a shift "for free" with your add, although on the 8086 you have to use the LEA instruction.
ADC #immediate is 2 cycles, as is ASL. Are you really multiplying a constant by 3 at runtime? Probably not. ADC zp is 3 cycles. Plus 2 cycles for the CLC.