pokerlee 发表于 2015-7-25 09:35:49

照王爽书上的代码敲出来的程序有错误~求指教~~

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,0,0,0,0,0
c ends

b segment
d:mov ax,c
        mov ss,ax
        mov sp,20h
       
        mov ax,a
        mov ds,ax
       
        mov bx,0
        mov cx,8
s:push
        add bx,2
        loop s
       
        mov bx,0
        mov cx,8
s0:pop
        add bx,2
        loop s0
       
        mov ax,4c00h
        int 21h

b ends
end d但是结果显示如图,求指教~~

牡丹花下死做鬼 发表于 2015-7-25 09:54:06

不能是c 改一个比如f g什么都可以
c我记得是关键字把好像

pokerlee 发表于 2015-7-25 10:16:21

谢谢~~我是新手~~

pokerlee 发表于 2015-7-25 10:17:18

牡丹花下死做鬼 发表于 2015-7-25 09:54
不能是c 改一个比如f g什么都可以
c我记得是关键字把好像

谢谢~~我是新手~~
页: [1]
查看完整版本: 照王爽书上的代码敲出来的程序有错误~求指教~~