1957415658 发表于 2018-9-30 09:14:46

mov al,[bx+3+si]为什么是错的?

大神帮我解读一下,谢谢{:10_277:}

assume cs:codesg,ds:datasg,ss:stacksg

stacksg segment
dw 0,0,0,0,0,0,0,0
stacksg ends

datasg segment
db'1.display......'
db'2.brows........'
db'3.replace......'
db'4.modify.......'
datasg ends

codesg segment
start:mov ax,stacksg
      mov ss,ax
          mov sp,16
          mov ax,datasg
          mov ds,ax
          mov bx,0
          
          mov cx,4
   s0:push cx
      mov si,0
          mov cx,4
   s: mov al,   《《《《这个
      and al,11011111b
          mov ,al    《《《这个
          inc si
          loop s
          
          add bx,16
          pop cx
          loop s0
          mov ax,4c00h
          int 21h
          
          codesg ends
          end start

57158597@qq.com 发表于 2018-9-30 10:28:24

小伙子把写成这样,至于为什么要这样写,应该是编译器的问题
页: [1]
查看完整版本: mov al,[bx+3+si]为什么是错的?