发布网友 发布时间:2022-10-17 23:29
共1个回答
热心网友 时间:2023-11-04 17:28
一、 mov si,offset buff1 mov di,offset buff2 mov cx,100 s: mov al,[si] cmp al,0 jae next mov [di],al inc di next: inc si loop s 二、 不知道你说的后继字符是什么?我只能估计是它ascii码之后的一个码所代表的字符了。 mov ah,1 int 21h mov dl,al inc dl mov ah,2 int 21h