实验4 8086标志寄存器及中断

1.实验任务1

(1) task1.asm源码

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

    add si,2
    add di,2
    loop s

    pop di
    pop si
    pop cx
    pop ax
    ret
code ends
end start

(2) line31-line34不能替换成add si,2和add di,2。因为add对零标志位、进位标志位均有影响,但inc对零标志位有影响,对进位标志位没有影响。但在本题中,si与di增加并没有产生进位,所以替换之后效果相同。

(3)做128位加之前和加之后的数值段的值变化

加之前:

实验4 8086标志寄存器及中断

 加之后:

实验4 8086标志寄存器及中断

 替换为add后:

实验4 8086标志寄存器及中断

 

2.实验任务2

 (1) task2.asm源码

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

(2) 运行测试截图

实验4 8086标志寄存器及中断

 (3)

问题1:line11-18实现的功能是从键盘输入字符后,将其存入偏移地址为s1的内存,然后将其与'#'比较,如果相等跳转到next段,不等的话si自增,输入下一个字符。

问题2:line20-22实现的功能是输出换行符。

问题3:line24-30实现的功能是输出从键盘输入的字符。

 

3.实验任务3

(1)task3.asm源码

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 cx,len
   mov si,offset x
s:
   mov ax,ds:[si]   ;被除数放到ax中
   call printNumber
   call printSpace
   inc si
   inc si
   loop s

   mov ah,4ch
   int 21h
printNumber:
   mov bx,0AH  ;除数放到bx中
   mov dx,0
   mov di,0 ;计数
   push cx
s1:
   div bx     ;除以bx
   push dx   ;dx中的余数入栈
   inc di      ;计数加一
   mov dx,0
   cmp ax,0 ;比较商是否为0,为0时ZF=1
   je next     ;ZF=1时,跳转到next处
   jmp s1     ;ZF=0时,说明商不为0,继续s1的循环
next:
   mov ah,2
   mov cx,di  ;di是余数个数,放到cx中,作为循环次数
s2:
   pop dx  ;将栈中的余数放入dx
   or dl,30H  ;转换后输出
   int 21h
   loop s2

   pop cx
   ret
printSpace:
    mov dl,' '
    mov ah,2  ;输出空格
    int 21h
    ret
code ends
end start

(2) 运行测试截图

实验4 8086标志寄存器及中断

 

4.实验任务4

(1) task4.asm源码

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 cx,len   ;循环次数,即str长度
    mov si,offset str
s:
    call strupr
    inc si
    loop s
    
    mov ah,4ch
    int 21h
strupr:
    mov al,[si]
    cmp al,'a'
    jb  s1    ;小于则跳转
    cmp al,'z'
    ja s1    ;大于则跳转
    and byte ptr [si],11011111b
s1:
    ret
code ends
end start

(2)调试截图

调用前:

实验4 8086标志寄存器及中断

 调用后:

实验4 8086标志寄存器及中断

 

5.实验任务5

(1) task5.asm源码

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

(2) 程序运行测试截图

实验4 8086标志寄存器及中断

 实验4 8086标志寄存器及中断

 (3) 程序的功能是:当输入字符为7时,输出yes,不为7则输出no。

 

6.实验任务6

 运行结果:

实验4 8086标志寄存器及中断

在计算机科学中,中调查到断是指由于接收到外围硬件(相对于CPU与内存而言)的异步信号或者来自软件的同步信号而进行相应的硬件/软件处理。由软件本身发给操作系统内核的中断信号,称之为软中断。通常是由硬中断处理程序或进程调度程序对操作系统内核的中断。

4_task61.exe安装中断代码,4_task62.exe向CPU发出中断指令,实现了42号中断处理程序。

上一篇:redis 简单整理——redis 的有序集合基本结构和命令[六]


下一篇:02.依赖导致原则 - Dependence Inversion Principle