movl $0x7, %eax
movl $0x7, (%eax)
movl 0x7, (%eax)
In my opinion it would be mov the long value to eax register.
second line is move the long value to the memory of eax register.
What does the third line do ?
I am little confused about these.
movl $0x7, %eax
movl $0x7, (%eax)
movl 0x7, (%eax)
In my opinion it would be mov the long value to eax register.
second line is move the long value to the memory of eax register.
What does the third line do ?
I am little confused about these.