Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是mov al,31[di]有效的指令吗?如果是,它有什么作用?
mov al,31[di]
我正在辩论,我现在无法访问电脑(我的安卓手机不是电脑)。正如你所看到的,我在组装和 Stack Overflow 上都是新手,所以对任何违反规则感到抱歉:)
是的,mov al, 31[di]是 Intel 语法中的有效 x86 程序集。它相当于mov al, byte ptr[di + 31]。
mov al, 31[di]
mov al, byte ptr[di + 31]