0

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!

mharris7190
  • 1,334
  • 3
  • 20
  • 36

1 Answers1

1

That's the (slightly odd) AT&T syntax for a memory reference at address ecx + edx * 1.

gsg
  • 9,167
  • 1
  • 21
  • 23