汇编语言有如下的汇编程序段,请完成code段中的代码,实现将string1段和string2段中的数据拷贝到string3段中,并且将string3段中的数据输出到屏幕。

有如下的汇编程序段,请完成code段中的代码,实现将string1段和string2段中的数据拷贝到string3段中,并且将string3段中的数据输出到屏幕。

题目:
有如下的汇编程序段,请完成code段中的代码,实现将string1段和string2段中的数据拷贝到string3段中,并且将string3段中的数据输出到屏幕。

string1 segment

str1 db ‘welcome to $’

string1 ends

string2 segment

str2 db ‘quanzhou$’

string2 ends

string3 segment

str3 db 20 dup(0)

string3 ends

CODES SEGMENT

方案一:


CODES SEGMENT



START:

    mov ax,string1

    mov ds,ax         ;数据段设置为string1

    

    mov ax,string3

    mov es,ax         ;辅助段设置为string3

    

    mov bx,0

    mov cx,11

s:  mov al,[bx]

    mov es:[bx],al

    inc bx

    loop s            ;拷贝string1到string3

    

    mov ax,string2

    mov ds,ax         ;数据段改变为string2

    

    mov bx,0

    mov cx,8

s1: mov al,[bx]

    mov es:[bx+11],al

    inc bx

    loop s1           ;拷贝string2到string3



    mov bx,0

    mov cx,19

s2: mov dl,es:[bx]

    mov ah,02

    int 21h

    inc bx

    loop s2           ;将string3输出到屏幕

    

    MOV AH,4CH

    INT 21H

CODES ENDS

    END START

方案二:

CODES SEGMENT

start: mov ax,string1

   mov ds,ax

   mov ax,string3

   mov es,ax

   mov bx,0

   mov cx,11

s:mov ax,[bx]

   mov es:[bx],ax

   inc bx

   loop s

   mov ax,string2

   mov ds,ax

   mov bx,0

   mov cx,8

s1:mov ax,[bx]

   mov es:[bx+11],ax

   inc bx

   loop s1

   mov bx,0

   mov cx,19

   mov dx,offset string3

   mov ah,09

   int 21h

   mov ax,004ch

   int 21h

CODES ends

end start
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值