How do you convert a code like "a = Array[i]" into x86 assembly?
On ARM, you could do something like LDR R3, [R2, R1], but I couldn't manage to find a similar thing for x86.
There's "mov eax, [array + 0 * 4]", but you need to put integers instead of registers for it to work. So is there an equilivant in x86 as well?
Thank you