作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
%edx
的值为 0x3
,%eax
的值为 0x100
。然后我们有指令:subl %edx, %eax
%eax
的结果值是多少?
最佳答案
你有
movl $3, %edx
movl $0x100, %eax
作为输入值。说明
subl %edx, %eax
只需从 EAX 中的 100(十六进制)中减去 EDX 中的 3(十进制),得到 100h-3h=0FDh
。
关于assembly - x86 程序集 : How does the 'subl' command work in AT&T syntax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36569282/
我是一名优秀的程序员,十分优秀!