What does the bracket in `movl (

后端 未结 3 1235
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 07:57

I have googled enough but could not figure out what the bracket () means. Also, I see some syntax as movl 8(%ebp), %eax

Could some someone

3条回答
  •  北海茫月
    2020-11-30 08:44

    %eax is register EAX; (%eax) is the memory location whose address is contained in the register EAX; 8(%eax) is the memory location whose address is the value of EAX plus 8.

提交回复
热议问题