小问题
初学汇编,遇到这个问题BX 里是 37H也就是55D
我想在屏幕上输出55 应该有什么办法,方法越多,越简洁越好呀!
能用 DOS 或 BIOS 超好,谢谢帮助!!!
code segment 'code'
assume cs:code
start:
mov bx,37h
mov ax,bx
mov cl,10
div cl
mov cx,ax
or cl,30h
or ch,30h
mov ah,2
mov dl,cl
int 21h
mov dl,ch
int 21h
mov ah,4ch
int 21h
code ends
end start
非常感谢,
还有更好的方法没,..
在次 感谢