本文为《汇编语言程序设计》0503小节例程。点击链接…进课程主页。
问题:计算ffff:0006字节单元中的数乘以3,结果存储在dx中
assume cs:code
code segment
mov ax,0ffffh
mov ds,ax
mov bx,6
mov al,[bx]
mov ah,0
mov dx,0
mov cx,3
s: add dx,ax
loop s
mov ax,4c00h
int 21h
code ends
end
时间: 2025-01-25 01:44:44