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.
我在汇编语言中有问题:如何添加字节和单词并打印出结果。例如 FFFF+FF。结果将是 100FE。问题是我不知道如何打印出整个结果,因为它比一个词大。我只能打印 00FE,1 在哪里?
示例(b1 是一个字节,w1 是一个字):
mov ah, 00h mov al, b1 mov bx, w2 add ax, bx
组装时间很长,但您可能需要使用进位标志(更多详细信息:检查是否设置了进位标志)