摘要: 1、寻址方式和常用汇编指令 寄存器寻址:movl %eax,%edx 相当于edx=eax 立即寻址:movl $0x123,%edx 相当于edx=0x123 直接寻址:movl 0x123,%edx 相当于*(int*)0x123 间接寻址:movl (%ebx),%edx 相当于edx=*(i 阅读全文
posted @ 2020-10-17 23:18 20209307王卓越 阅读(95) 评论(1) 推荐(0) 编辑