求程序: 将30H单元中存放的一个两位的BCD拆开并存入31H 和32H单元单...
发布网友
发布时间:2024-07-03 14:14
我来回答
共2个回答
热心网友
时间:2024-07-23 16:48
微机原理接口 无符号数 有符号类似
MOV AX,0089H
MOV DI,31H
START:MOV BL,10
DIV BL
MOV [DI],AH
MOV [DI+1],AL
HLT
热心网友
时间:2024-07-23 16:49
DATA segment
info db 100 dup(?)
DATA ends
CODE segment
assume cs:CODE,ds:DATA
start:
mov ax,DATA
mov ds,ax
mov ds:[30h],byte ptr 89h
mov al,ds:[30h]
mov ah,al
and al,0fh
mov ds:[31h],al
mov cx,4
shr ah,cl
mov ds:[32h],ah
mov ah,4ch
int 21h
CODE ends
end start