Your offset field is 0, so you just have the (base, index, multiplier) part. In your case, you're comparing the contents of the eax register to the 32-bit value located at esi + (ebx * 4).
In the Intel syntax you might be more familiar with, this would be written as:
The complete AT&T base/index register syntax is:
Your
offset
field is0
, so you just have the(base, index, multiplier)
part. In your case, you're comparing the contents of theeax
register to the 32-bit value located atesi + (ebx * 4)
.In the Intel syntax you might be more familiar with, this would be written as: