实验1 8086汇编指令编码和调试

试验任务2

 

 

 

不能。设置好的不能改写的数据。

实验任务3

 

 

 

 

实验任务4

1、002E

2  002C

3  002A

4  002B

5  002A

6  002C

7  002E

8  0030

 

回答问题

1 逻辑地址 0020:0030 物理地址00230H

 

 3

 

 4

 

 

实验任务5

回答

1       不是,执行修改ss的指令时

2       把接下来要执行的命令地址存在了栈中

实验任务6

assume cs:code
code segment
start:
mov cx, 10
mov dl, '0'
s: mov ah, 2
int 21h
add dl, 1
loop s
mov ah, 4ch
int 21h
code ends
end start

 

 

 

 

 

 

实验任务7

assume cs:code
code segment
mov ax, cs
mov ds, ax
mov ax, 0020h
mov es, ax
mov bx, 0
mov cx, 200
s: mov al, [bx]
mov es:[bx], al
inc bx
loop s
mov ax, 4c00h
int 21h
code ends
end

 

posted @ 2021-10-23 11:03  jsbyyz  阅读(38)  评论(3编辑  收藏  举报