说明(十六进制数字):
aspectFitView
文档说:
mov ax, 0832
mov cx, 008a
idiv cl
来源:http://www.electronics.dit.ie/staff/tscarff/8086_instruction_set/8086_instruction_set.html#IDIV
据我了解,我必须检查最左边的位是否不是1:
when operand is a byte:
AL = AX / operand
AH = remainder (modulus)
由于最高位没有1,所以使用计算器我应该得到:
0832 -> 0000.1000.0011.0010
008a -> 0000.0000.1000.1010
为余数,0832 mod 008a
为0832 div 008a
部分。 div
转到Mod
,AH
转到div
,但我无法得到正确答案。正确答案是AH
。我做错了什么?
答案 0 :(得分:3)
+1阅读文档:)
请注意,您需要根据有效操作数大小检查最左边的位。由于您除以CL
(8位值),因此需要检查位#7,即1
。因此,CL
中的数字为负数,即-118
。所以,
AL = 0832h / -118 = 2098 / -118 = -17 = EFh
AH = 2098 - (-17 * -118) = 92 = 5Ch