微机原理与接口技术 一、实验目的及要求 1.熟练掌握顺序、分支程序的设计方法 2.熟练掌握程序的编写与调试 二、实验内容
1.从键盘输入字符串,按回车键结束,在第二行显示输入内容。
1.编写源程序 data segment buf db 20 db ? db 20 dup (?) data ends code segment assume cs:code,ds:data start: mov ax,data mov ds,ax mov ah,0Ah lea dx,buf int 21h mov dl,0dh mov ah,2 int 21h
mov dl,0ah mov ah,2 int 21h mov cl,buf+1 lea si,buf+2 next: mov dx,[si] mov ah,2 int 21h inc si loop next mov ah,4ch int 21h code ends end start
汇编连接 实验结果