微型计算机原理实验_第1页
微型计算机原理实验_第2页
微型计算机原理实验_第3页
微型计算机原理实验_第4页
微型计算机原理实验_第5页
已阅读5页,还剩7页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、实验一:输出字符 a的源程序如下:prog segment assume cs:prog start: mov dl,a mov ah , 2 int 21h mov ah , 4ch int 21h prog ends end start 实验二:1. 把 bx中的二进制数转换成十进制数,在屏幕上显示出来,只考虑无符号数。程序如下: code segment assume cs:code start: mov bx,0fffh mov cx,10000 call dec_div mov cx, 1000 call dec_div mov cx,100 call dec_div mov cx,

2、10 call dec_div mov cx,1 call dec_div mov ah,4ch int 21h dec_div proc near mov ax,bx mov dx,0 div cx mov bx,dx mov dl,al add dl,30h mov ah,2 int 21h ret dec_div endp code ends end start 2. 把 bx中的带符号数转换成十进制数,在屏幕上显示出来。程序如下: code segment assume cs:code start: mov bx,8001h mov ax,8000h and ax,bx jnz min

3、us jmp disp minus: mov dl,- mov ah,2 int 21h neg bx jmp disp disp: mov cx,10000 call dec_div mov cx, 1000 call dec_div mov cx,100 call dec_div mov cx,10 call dec_div mov cx,1 call dec_div mov ah,4ch int 21h dec_div proc near mov ax,bx mov dx,0 div cx mov bx,dx mov dl,al add dl,30h mov ah,2 int 21h r

4、et dec_div endp code ends end start 3. 求一个数据块(由10 个单字节的无符号数组成)中的最大元素,并将结果在屏幕上显示出来,程序如下: data segment block db 1,0,5,7,10,30,100,127,90,80 result db ? data ends code segment assume cs:code,ds:data begin proc far mov ax,data mov ds,ax mov cx,9 lea si,block mov al,si x1: inc si cmp al,si jae x2 mov al,

5、si x2: loop x1 mov result,al mov ah ,0 mov bx,ax call xianshi mov ah,4ch int 21h begin endp xianshi proc near mov al,80h and al,bl jnz minus jmp disp minus: mov dl,- mov ah,2 int 21h neg bl jmp disp disp: mov cx,100 call dec_div mov cx,10 call dec_div mov cx,1 call dec_div mov ah,4ch int 21h xianshi

6、 endp dec_div proc near mov ax,bx mov dl,0 div cl mov bl,ah mov bh,0 mov dl,al add dl,30h mov ah,2 int 21h ret dec_div endp code ends end begin 4. 求一个数据块 (由 20个单字节的带符号数组成) 中的正数和(字)和负数和(字) ,并在屏幕上用十进制的形式显示出两个和。程序如下: data segment block dw -100,100,200,-200,5,6,7,8,9,10 dw 11,12,13,14,15,50,-50,150,-150

7、,-200 posit dw ? negat dw ? st1 db the sum of all the positive numbers:$ st2 db the sum of the negative numbers:$ data ends code segment assume cs:code ,ds:data start proc mov ax,data mov ds,ax mov bx,offset block mov si,0 mov di,0 mov cx,20 x1: mov ax,bx cmp ax,0 jge x3 add di,ax jmp x2 x3: add si,

8、ax x2: add bx,2 loop x1 mov posit,si mov negat,di mov bx,si mov dx,offset st1 mov ah,9 int 21h call xianshi mov dl,0dh mov ah,2 int 21h mov dl,0ah mov ah,2 int 21h mov bx,negat neg bx and bx,7fffh mov dx,offset st2 mov ah,9 int 21h mov dl,- mov ah,2 int 21h call xianshi mov ah,4ch int 21h start endp

9、 xianshi proc near mov cx,100 call dec_div mov cx,10 call dec_div mov cx,1 call dec_div ret xianshi endp dec_div proc near mov ax,bx mov dx,0 div cx mov bx,dx mov dl,al add dl,30h mov ah,2 int 21h ret dec_div endp code ends end start 5. 将寄存器 bx中的二进制数转换成十六进制数并在屏幕上显示出来。程序如下: code segment assume cs:cod

10、e binhex proc far mov ch,4 mov bx,1000 rotate: mov cl,4 rol bx,cl mov dl,bl and dl,0fh add dl,30h cmp dl,3ah jl output add dl,7 output: mov ah,2 int 21h dec ch jne rotate mov dl,h mov ah,2 int 21h mov ah,4ch int 21h binhex endp code ends end binhex实验三:1. 从键盘上输入一个十进制数(065535) ,转换成二进制数并放入寄存器bx中,其程序框图如

11、下:程序如下: code segment assume cs:code start proc call decbin call xianshi mov ah,4ch int 21h start endp decbin proc near mov cx,10 mov bx,0 lop1: mov ah,1 int 21h cmp al,30h jl exit cmp al,39h jg exit sub al,30h mov ah,00h xchg ax,bx mul cx add bx,ax jmp lop1 exit: ret decbin endp xianshi proc near lp

12、1: mov cx,10000 call dec_div mov cx,1000 call dec_div mov cx,100 call dec_div mov cx,10 call dec_div mov cx,1 call dec_div ret xianshi endp dec_div proc near mov ax,bx mov dx,0 div cx mov bx,dx mov dl,al add dl,30h mov ah,2 int 21h ret dec_div endp code ends end start 2. 从键盘上输入 065535 范围的一个十进制数,在屏幕上

13、显示出相应的十六进制数。程序如下: code segment assume cs:code start proc call decbin mov ch,4 call rotate mov ah,4ch int 21h start endp decbin proc near mov cx,10 mov bx,0 lop1: mov ah,1 int 21h cmp al,30h jl exit cmp al,39h jg exit sub al,30h mov ah,00h xchg ax,bx mul cx add bx,ax jmp lop1 exit: ret decbin endp ro

14、tate proc lop2: mov cl,4 rol bx,cl mov dl,bl and dl,0fh add dl,30h cmp dl,3ah jl output add dl,7 output: mov ah,2 int 21h dec ch jne lop2 mov dl,h mov ah,2 int 21h mov ah,4ch int 21h rotate endp code ends end start 实验四:1. 在内存中存有一字符串,以0 为结尾,程序开始输出hello 然后等待从键盘输入一字符, 再改字符串中寻找该字符, 若找到,输出 yes ;若找不到,输出 n

15、o ,然后再输入下一字符。程序如下: data segment str1 db hello,0dh,0ah,$ str2 db 20h,yes,0dh,0ah,$ str3 db 20h,no,0dh,0ah,$ str4 db 1 2 3 0 4 5 a b a=! ?,00h data ends code segment assume cs:code,ds:data start proc far mov ax,data mov ds,ax mov dx,offset str1 mov ah,9 int 21h loop1: mov ah,1 int 21h mov bx,offset st

16、r4 gon: mov ah,bx cmp ah,0 jz no inc bx cmp ah,al jnz gon mov dx,offset str2 go: mov ah,9 int 21h jmp loop1 no: mov dx,offset str3 jmp go start endp code ends end start 2. 实验内容1 的程序是个无限循环程序,若按esc 键,让程序退出循环,是系统返回dos 。已知 esc 键的键值是1bh ,按照上面要求对实验内容 1 的程序进行修改,然后重新汇编、链接和运行。程序如下: data segment str1 db hello,0dh,0ah,$ str2 db 20h,yes,0dh,0ah,$ str3 db 20h,no,0dh,0ah,$ str4 db 1 2 3 0 4 5 a b a=! ?,00h data ends code segment assume cs:code,ds:data start proc far mov a

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论