|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
检测点6.1
(1)下面的程序实现依次用内存0:0~0:15单元中的内容改写程序中的数据,完成程序:
assume cs:codesg
codesg segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
start: mov ax,0
mov ds,ax
mov bx,0
mov cx,8
s: mov ax,[bx]
mov cs:[bx],ax ————————————————————————————————————————————————————————————————————————
add bx,2
loop s
mov ax,4c00h
int 21h
codesg ends
end start
检测点6.1
(2)下面的程序实现依次用内存0:0~0:15单元中的内容改写程序中的数据,数据的传送用栈来进行。栈空间设置在程序内。完成程序:
assume cs:codesg
codesg segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,09 87h
dw 0,0,0,0,0,0,0,0,0,0
start: mov ax, codesg ;或mov ax, cs————————————————————————————————————————————————————————————————————
mov ss,ax
mov sp, 24h ;或mov sp, 36 ;(第一版填1ah或26)
mov ax,0
mov ds,ax
mov bx,0
mov cx,8
s: push [bx]
pop cs:[bx] ;或 pop ss:[bx] ————————————————————————————————————————————————————————————————————————
add bx,2
loop s
mov ax,4c00h
int 21h
codesg ends
end sta
****************************************
划横线的三个地方都不是很懂 也有回去看堆栈的视频还是不很理解
1.mov cs:[bx],ax 内存单元改写程序数据,为什么要是CS:[bx] 而不是其他
2.mov ax,cs 为什么要把cs的偏移地址传递给SS而不直接0000h或者其他
3.pop ss:[bx] 到底是在在哪一个地址操作的,操作了哪一个数。比如BX=0;10个空间的堆栈SS:[0]不是指堆栈最上面的吗。可是上面是空的 0123不是在下面的ss:[18]里面吗。 |
|