13977075227 发表于 2023-11-15 13:16:29

求助,字节设置问题

assume cs:b,ds:a,ss:c
a segment
dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h;
a ends
c segment
dw 0,0,0,0,0,0,0,0,0,0,0,00,0,0,0
c ends

b segment
d: mov ax,c

mov ss,axmov'sp,20h;       >>>>>>>>>>>>>>>>怎么根据dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h;这句内容设置SP为20h,请解析下
;希望用c段当作栈空间,设置 ss:sp 指向 c:20
mov ax,a
mov ds,ax
mov bx,0
mov cx,8s: push
add bx,2loop s
;希望用 ds:bx 访问a 段中的数据,ds 指向 a 段
;ds:bx 指向 a 段中的第一个单元
;以上将 a 段中的 0~15 单元中的 8 个字型数据依次入栈
mov bx,0
mov cx,8
s0: pop
add bx,2
loop s0
;以上依次出栈 8 个字型数据到 a 段的 0~15 单元中
mov ax,4c00h
int 21h
b ends
end d
页: [1]
查看完整版本: 求助,字节设置问题