码迷,mamicode.com
首页 > 其他好文 > 详细

实验5

时间:2018-11-26 02:29:49      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:end   4.4   png   ack   img   分享   inf   bug   编写   

1.将ex5_1进行编译,连接,用debug加载,追踪。

assume cs:code, ds:data, ss:stack
data segment
dw 0123h, 0456h, 0789h, 0abch, 0defh, 0fedh, 0cbah, 0987h
data ends

stack segment
dw 0, 0, 0, 0, 0, 0, 0, 0
stack ends

code segment
start: mov ax,stack
mov ss, ax
mov sp,16

mov ax, data
mov ds, ax

push ds:[0]
push ds:[2]
pop ds:[2]
pop ds:[0]

mov ax,4c00h
int 21h

code ends
end start

 

技术分享图片

使用r命令观察,发现DS=075A,所以程序从076A:0开始存放。

技术分享图片

以下即为程序返回前data的值。

技术分享图片

用u反汇编,data段的段地址为x-2,stack段的段地址为x-1。再用g命令回到上一步,得到程序返回前cs,ss,ds的值。

技术分享图片

 

 2.将ex5_2进行编译,连接,用debug加载,追踪。

assume cs:code, ds:data, ss:stack
data segment
dw 0123h, 0456h
data ends

stack segment
dw 0, 0
stack ends

code segment
start: mov ax,stack
mov ss, ax
mov sp,16

mov ax, data
mov ds, ax

push ds:[0]
push ds:[2]
pop ds:[2]
pop ds:[0]

mov ax,4c00h
int 21h

code ends
end start

技术分享图片

按照练习一,程序返回前data的数据:

技术分享图片

按照练习一,cs,ss,ds值:

技术分享图片

data段的段地址为x-2,stack段的段地址为x-1。

实际占用的空间为(N/16+1)*16。

3.将ex5_3进行编译,连接,用debug加载,追踪。

assume cs:code, ds:data, ss:stack

code segment
start: mov ax,stack
mov ss, ax
mov sp,16

mov ax, data
mov ds, ax

push ds:[0]
push ds:[2]
pop ds:[2]
pop ds:[0]

mov ax,4c00h
int 21h

code ends
data segment
dw 0123h, 0456h
data ends

stack segment
dw 0,0
stack ends
end start

 技术分享图片

data段的段地址为x+3,stack段的段地址为x+4。

 4.4.只有3可正确执行,因为去掉start后就不指明程序入口,程序从头开始执行,而1,2,是以数据段开头,只有3是命令段,能正确运行下去。

 

 5.

技术分享图片

编译连接后观察ss后8字节

技术分享图片

 总结:编写代码段是要注意程序入口

实验5

标签:end   4.4   png   ack   img   分享   inf   bug   编写   

原文地址:https://www.cnblogs.com/wsjy/p/10017905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!