我怎样才能把两个数值相加,使它们的值以16为基数,然后在汇编程序上以10为基数得出结果例如:

"5h+5h=10h" - I know it's wrong, I just want it to be visually 10h

而不是:
5h+5h=Ah

代码:
MOV AX,5h
MOV BX,5h
ADD AX,BX

result: ax=Ah - Not the result that i want...

result: ax=10h - The result that i want.

我试图通过谷歌找到答案,但没有找到任何可以帮助我的东西。。。

最佳答案

这是你要找的密码

MOV AX,5h
MOV BX,5h
ADD AX,BX
DAA

现在斧头有10小时

08-26 08:14