本文共 413 字,大约阅读时间需要 1 分钟。
本文为《汇编语言程序设计》0703小节例程。点击进课程主页。
问题:用寄存器SI和DI实现将字符串‘welcome to masm!’复制到它后面的数据区中。
assume cs:codesg,ds:datasgdatasg segment db 'welcome to masm!' db '................'datasg endscodesg segmentstart: mov ax,datasg mov ds,ax mov si,0 mov di,16 mov cx,8 s: mov ax,[si] mov [di],ax add si,2 add di,2 loop s mov ax,4c00h int 21hcodesg endsend start
转载地址:http://ahlox.baihongyu.com/