标签:程序 汇编 code inf 开始 com bubuko deb 技术分享
assume cs:code
code segment
mov ax,0b800h
mov ds,ax
mov bx,07b8h
mov cx,000fh
S:
mov [bx],0403h
inc bx
inc bx
loop s
mov ax,4c00h
int 21h
code ends
end
assume cs:code
code segment
mov ax,00020h
mov ds,ax
mov bx,0
mov cx,3fh
s:
mov [bx],bx
inc bx
loop s
mov ax,4c00h
int 21h
code ends
end
通过debug,使用d命令查看内存单元看到已经成功写入
assume cs:code
code segment
mov ax,cs
mov ds,ax
mov ax,0020h
mov es,ax
mov bx,0
mov cx,17h
s:
mov al,[bx]
mov es:[bx],al
inc bx
loop s
mov ax,4c00h
int 21h
code ends
end
此次实验使用了[bx]来表示内存单元,可以实现变量表示内存单元,配合loop循环语句,可以实现循环
标签:程序 汇编 code inf 开始 com bubuko deb 技术分享
原文地址:https://www.cnblogs.com/Major-blog/p/9977899.html