问题:我们给了一个16位十进制数字,我们必须以二进制格式打印该数字
例子:
Input: d1 = 16
Output: 10000
Input: d1 = 7
Output: 111
解释:
- 将存储的值加载到寄存器中
- 将值除以2可将其转换为二进制
- 将其余部分推入堆栈
- 增加数量
- 重复这些步骤,直到寄存器的值大于0
- 直到计数大于零
- 弹出堆栈
- 将48添加到顶部元素以将其转换为ASCII
- 使用中断打印字符
- 减少计数
程序:
;8086 program to convert a 16 bit decimal number to binary
.MODEL SMALL
.STACK 100H
.DATA
d1 dw 16
.CODE
MAIN PROC FAR
MOV AX,
@DATA
MOV DS,
AX
;load the value stored;
in variable d1
mov ax,
d1
;convert the value to binary;
print the value
CALL PRINT
;interrupt to exit
MOV AH,
4CH INT 21H
MAIN ENDP
PRINT PROC
;initilize count
mov cx,
0 mov dx, 0 label1:;
if
ax is zero
cmp ax,
0 je print1
;initilize bx to 2 mov bx, 2
;devide it by 2
;to convert it to binary
div bx
;push it in the stack
push dx
;increment the count
inc cx
;set dx to 0
xor dx,
dx
jmp label1
print1:
;check if count
;is greater than zero
cmp cx,
0 je exit
;pop the top of stack
pop dx
;add 48 so that it
;represents the ASCII
;value of digits
add dx,
48
;interrupt to print a
;character
mov ah,
02h int 21h
;decrease the count
dec cx
jmp print1
exit : ret
PRINT ENDP
END MAIN
输出:
10000
注意:该程序无法在在线编辑器上运行,请使用MASM运行该程序,并使用dos框运行MASM,您可以使用任何8086仿真器运行该程序