debug -a mov ax,11 mov bx,12 add ax,bx mov ax,00 -t ;一条一条执行即可
ax bx cx dx都是寄存器
mov ax,11 ;ax=11H add ax,E ;ax=ax+EH
debug默认16进制,因为四位二进制对应一位16进制,好用