[求助]哪位兄弟帮帮小弟编编程 ??
用汇编 语言编写题目一
编写一程序,比较两个字符串sting1和sting2所含的字符是否相同。
若相同则显示‘match' 否则显示’no match' .
题目2
将内存DATA1单元开始的0~15共16个数据传送到DATA2单元开始的数据区中。
哪位兄弟快来帮帮我啊
很急 的
题目一:
data segment
sting1 db 'people'
sting2 db 'person'
buf1 db 'match$'
buf2 db 'no match$'
n equ $-sting1
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov si,offset sting1
mov di,offset sting2
mov cx,n
cld
repe cmps
cmp cx,0
jz equ1
mov dx,offset buf2
jmp next
equ1:mov dx,offset buf1
next:mov ah,09h
int 21h
mov ah,4ch
int 21h
code ends
end start