I'm not exactly sure what this add
instruction is doing:
add 0x0(%rbp,%rbx,4),%eax
If it were:
add %rbx,%eax
I know it would add the contents of rbx
and the contents in eax
and store them back into eax
. However, the 0x0(%rbp,%rbx,4)
is throwing me off.