【发布时间】:2013-10-20 06:52:17
【问题描述】:
这个“LOOPW 0100”是如何工作的??
http://ece425web.groups.et.byu.net/stable/labs/8086InstructionSet.html
【问题讨论】:
标签: binary x86-16 instruction-set ieee
这个“LOOPW 0100”是如何工作的??
http://ece425web.groups.et.byu.net/stable/labs/8086InstructionSet.html
【问题讨论】:
标签: binary x86-16 instruction-set ieee
循环是一种快捷方式
dec cx
jncxz label;
w 给出了使用 AT&T 语法时的操作数大小(在 x86 中并不常见)。由于“捷径”通常比循环指令快,所以循环很少使用。
【讨论】: