I understand the LEA means Load Effective Address and have read the documentation.
When I disassemble code using gdb I see:
lea 0x4(%esp),%ecx
I am having trouble understanding what is meant by?
0x4(%esp)
Does it mean 0x4 offset from %esp or move the contents of ecx into four words above esp?
Thanks.