王爽 汇编 问题7.2,用si和di实现将字符串'welcome to masm!'复制到它后面的数据区中
一、代码实现
1 ;目的:用si和di实现将字符串'welcome to masm!'复制到它后面的数据区中 2 ;编写:Tony 3 ;语言:asm 4 ;时间:2020.3.24 5 6 assume cs:code,ds:data 7 8 data segment 9 db 'welcome to masm!' 10 db '................' 11 data ends 12 13 code segment 14 start: mov ax,data 15 mov ds,ax 16 mov si,0 17 mov cx,8 18 s: mov ax,0[si] 19 mov 16[si],ax 20 add si,2 21 loop s 22 mov ax,4c00h 23 int 21h 24 code ends 25 end start
二、上机调试
待续
海阔凭鱼跃,天高任鸟飞,成功没有捷径,唯有努力前行!