In the following code, I am having trouble understanding what is happening in the parentheses. Is it doing like %edx + 1 * %ecx or something?
lea    (%ecx,%edx,1),%ebx
Thanks!
In the following code, I am having trouble understanding what is happening in the parentheses. Is it doing like %edx + 1 * %ecx or something?
lea    (%ecx,%edx,1),%ebx
Thanks!
 
    
    That's the (slightly odd) AT&T syntax for a memory reference at address ecx + edx * 1.
