What exactly is the difference resulting from a register being surrounded in parentheses in an operation?
For example:
movl (%edx), %eax
versus
movl %edx, %eax
Thank you in advance!
Means "the value at the memory address that's stored in the register".