实验3 转移指令跳转原理及其简单应用编程

四、实验结论

1. 实验任务1

(1)给出程序task1.asm源码,及,运行截图

assume cs:code, ds:data

data segment
    x db 1, 9, 3
    len1 equ $ - x

    y dw 1, 9, 3
    len2 equ $ - y
data ends

code segment
start:
    mov ax, data
    mov ds, ax

    mov si, offset x
    mov cx, len1
    mov ah, 2
 s1:mov dl, [si]
    or dl, 30h
    int 21h

    mov dl, ' '
    int 21h

    inc si
    loop s1

    mov ah, 2
    mov dl, 0ah
    int 21h

    mov si, offset y
    mov cx, len2/2
    mov ah, 2
 s2:mov dx, [si]
    or dl, 30h
    int 21h

    mov dl, ' '
    int 21h

    add si, 2
    loop s2

    mov ah, 4ch
    int 21h
code ends
end start

 

(2)回答问题①

① line27, 汇编指令 loop s1 跳转时,是根据位移量跳转的。通过debug反汇编,查看其机器码,分析其跳转的位移量是多少?(位移量数值以十进制数值回答)-14

从CPU的角度,说明是如何计算得到跳转后标号s1其后指令的偏移地址的。

(1)(cx)=(cx)-1

(2)如果(cx)=0,什么也不做,程序继续向下执行;

位移量 补码F2=1111 0010,原码=1000 1110=-14

下一条指令地址001B=27, 跳转地址=27+(-14)=13=000Dh

回答问题②

② line44,汇编指令 loop s2 跳转时,是根据位移量跳转的。通过debug反汇编,查看其机器码,分析其跳转的位移量是多少(位移量数值以十进制数值回答)

-16

从CPU的角度,说明是如何计算得到跳转后标号s2其后指令的偏移地址的。

(1)(cx)=(cx)-1

(2)如果(cx)=0,什么也不做,程序继续向下执行;

位移量 补码F0=1111 0000,原码=1001 0000=-16

下一条指令地址0039=57,跳转地址=57+(-16)=41=0029h 

问题③

③ 附上上述分析时,在debug中进行调试观察的反汇编截图

 

 

 

 

2. 实验任务2

(1)给出程序task2.asm源码:

 

assume cs:code, ds:data

data segment
    dw 200h, 0h, 230h, 0h
data ends

stack segment
    db 16 dup(0)
stack ends

code segment
start:  
    mov ax, data
    mov ds, ax

    mov word ptr ds:[0], offset s1
    mov word ptr ds:[2], offset s2
    mov ds:[4], cs

    mov ax, stack
    mov ss, ax
    mov sp, 16

    call word ptr ds:[0]
s1: pop ax

    call dword ptr ds:[2]
s2: pop bx
    pop cx

    mov ah, 4ch
    int 21h
code ends
end start

① 根据call指令的跳转原理,先从理论上分析,程序执行到退出(line31)之前,寄存器(ax) =0021  寄存器(bx) = 0026 寄存器(cx) = 076C

② 对源程序进行汇编、链接,得到可执行程序task2.exe。使用debug调试,观察、验证调试结果与理论分析结果是否一致。 

 

 

 

 

3. 实验任务3

(1)给出程序源码task3.asm

assume cs:code, ds:data

data segment 
    x db 99, 72, 85, 63, 89, 97, 55 
    len equ $- x 
data ends

code segment
start:
    mov ax,data
    mov ds,ax
    
    mov si,offset x
    mov cx,len
    
  s:mov ah,0
    mov al,[si]
    mov bl,10
    div bl;用ax中的数字除以10,商在al中,余数在ah中mov dx,ax
             
    call printNumber
    call printSpace
    
    inc si
    loop s
    
    mov ah,4ch
    int 21h
    
printNumber: 
             mov dx,ax
             add dx,3030h;数字与字符串之间ascll码值的关系,将数字->字符
             mov ah,2;输出字符
             int 21h
             mov ah,2
             mov dl,dh
             int 21h
             ret
printSpace:  mov dl,' '
             int 21h
             ret
             
code ends
end start

 

4. 实验任务4

(1)给出程序源码task4.asm

assume cs:code, ds:data

data segment
str db 'try', 0
len equ $ - str
data ends

code segment
start:
mov ax, data
mov ds, ax
mov ax,0b800h  ;显示区缓存地址开始位置
mov es,ax

mov si,offset printStr
mov ah, 2  ;绿
mov bx,160 ;在第一行打印
call si  ; 第一次调用

mov si,offset printStr
mov ah,4 ;红
mov bx,3840 ;一行80个字符160字节,最后为24行,24*160=3840
call si

mov ah, 4ch
int 21h

printStr:
mov cx,len
mov si,0
s:
mov al,[si]
mov es:[bx+si],ax
inc si
inc bx
loop s
ret

code ends
end start

 

 

5. 实验任务5

(1)给出程序源码task5.asm

assume cs:code,ds:data

data segment
stu_no db '201983290168'
len = $ - stu_no
data ends

code segment
start:
mov ax,data
mov ds,ax
mov ax,0b800h
mov es,ax

mov si,offset stu_no
mov di,0
mov al,17h   ;蓝底白字:0 001 0 111为17h
call printBgcolor
call printHyphen
call printStuno
call printHyphen

mov ah,4ch
int 21h

;打印背景颜色为蓝色
printBgcolor:
mov cx,1920 ;背景颜色占24行,一行80个字符:24*80
s:
inc di
mov es:[di],al;
inc di
loop s
ret

;打印学号前后的34个'-'
printHyphen:
mov cx,34
s1:
mov word ptr es:[di],'-'
inc di
mov es:[di],al
inc di
loop s1
ret

;打印学号
printStuno:
mov cx,len   ;   stu_no长度
s2:
mov bl,ds:[si]
mov es:[di],bl
inc di
mov es:[di],al
inc si
inc di
loop s2
ret

code ends
end start

 

posted @ 2021-11-30 17:08  居林超  阅读(12)  评论(1编辑  收藏  举报