1.实验任务1
实验源码:
assume cs:code, ds:data data segment x dw 1020h, 2240h, 9522h, 5060h, 3359h, 6652h, 2530h, 7031h y dw 3210h, 5510h, 6066h, 5121h, 8801h, 6210h, 7119h, 3912h data ends code segment start: mov ax, data mov ds, ax mov si, offset x mov di, offset y call add128 mov ah, 4ch int 21h add128: push ax push cx push si push di sub ax, ax mov cx, 8 s: mov ax, [si] adc ax, [di] mov [si], ax inc si inc si inc di inc di loop s pop di pop si pop cx pop ax ret code ends end start
① 理论上不能,用adc进行加法运算会加上进位标志位(CF)寄存器中的值,而add在计算存在进位时会改变进位标识符,影响计算结果。
但在此题中,si,di加的是2,没有进位的情况,所以可以改成add指令。
②128位加之前数据段的值:
128位加之后数据段的值:
2.实验任务2
实验源码:
assume cs:code, ds:data data segment str db 80 dup(?) data ends code segment start: mov ax, data mov ds, ax mov si, 0 s1: mov ah, 1 int 21h mov [si], al cmp al, '#' je next inc si jmp s1 next: mov ah, 2 mov dl, 0ah int 21h mov cx, si mov si, 0 s2: mov ah, 2 mov dl, [si] int 21h inc si loop s2 mov ah, 4ch int 21h code ends end start
运行测试截图:
①汇编指令代码line11-18,实现的功能:在键盘上输入字符,并以#符号结束。
②汇编指令代码line20-22,实现的功能:输出一个换行符。
③汇编指令代码line24-30,实现的功能:在屏幕中显示所输入的字符(因为遇到#跳出循环,所以输出字符中不包含#)。
3.实验任务3
实验代码:
assume cs:code, ds:data data segment x dw 91, 792, 8536, 65521, 2021 len equ $ - x data ends stack segment db 16 dup(0) stack ends code segment start: mov ax, data mov ds, ax mov ax, stack mov ss, ax mov si, offset x mov cx, len/2 s1: call printNumber call printSpace add si, 2 loop s1 mov ah, 4ch int 21h printNumber: mov ax, [si] push cx mov cx,0 s2: mov dx, 0 mov bx, 10 div bx push dx inc cx cmp ax,0 jne s2 s3: pop bx mov ah, 2 mov dl, bl or dl, 30h int 21h loop s3 pop cx ret printSpace: mov ah, 2 mov dl, ' ' int 21h ret code ends end start
实验效果截图:
4.实验任务4
实验源码:
assume cs:code, ds:data data segment str db "assembly language, it's not difficult but tedious" len equ $ - str data ends code segment start: mov ax, data mov ds, ax mov si, offset str mov cx, len s1: call strupr inc si loop s1 mov ah, 4ch int 21h strupr: cmp byte ptr [si], 'a' jb s cmp byte ptr [si], 'z' ja s and byte ptr [si], 11011111B s:ret code ends end start
实验效果截图:
5.实验任务5
实验源码:
assume cs:code, ds:data data segment str1 db "yes", '$' str2 db "no", '$' data ends code segment start: mov ax, data mov ds, ax mov ah, 1 int 21h mov ah, 2 mov bh, 0 mov dh, 24 mov dl, 70 int 10h cmp al, '7' je s1 mov ah, 9 mov dx, offset str2 int 21h jmp over s1: mov ah, 9 mov dx, offset str1 int 21h over: mov ah, 4ch int 21h code ends end start
效果截图:
程序功能:输入一个字符,若字符为”7”,则在第24行,第70列开始显示”yes”,否则,在相同位置显示”no”。
6.实验任务6
实验效果截图:
对于中断、软中断实现机制的理解:
CPU中,使用中断向量表存储中断处理处理程序的入口地址。对于8086PC机,中断向量表指定在内存地址0处,内存0000:0000到0000:03ff中存放着中断向量表。中断向量表的一个表项占两个字,高地址字存放段地址,低地址字存放偏移地址。
中断过程就是用中断类型码找,在中断向量表找到中断处理程序的入口,并用它来设置CS和IP。这个工作是由CPU硬件自动完成的。