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.
使用 Intel x86 / emu8086 仿真器,当具有以下值的字节溢出时:
mov al,-128 sub al,128
为什么CF是0,而OF也是0?谢谢
-128 和 128 在 8 位(2 的补码或无符号)中是相同的数字。即两个指令的立即数都是0x80.
0x80
x - x= 0,无进位(无符号)或溢出(有符号)。
x - x