【发布时间】:2011-07-31 02:56:26
【问题描述】:
我正在尝试理解一些汇编代码:
movl $244, %eax
movl %1, %%ebx
第一个表示将数字 244 放入寄存器 eax,但第二个是什么意思?在此先感谢您的帮助
P.S see the difference %1 and $244 and %eax and %%ebx
【问题讨论】:
-
我重新标记是因为你忘了告诉你这个汇编代码是在 inline-assembly 的上下文中使用的
标签: gcc assembly linux-kernel inline-assembly