|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 XT孓珏 于 2020-2-20 16:09 编辑
程序运行死循环,调试的时候到codesg 的第三行就有问题,但我看不出来问题在哪
- 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,datasg
- mov ds,ax
- mov ax,stacksg
- mov ss,ax
- mov sp,16
-
- mov bx,3
- mov cx,4
- s0: push cx
- mov si,0
- mov cx,4
-
- s: mov al,[bx+si]
- and al,11011111b
- mov [bx+si],al
- inc si
- loop s
-
- add bx,16
- pop cx
- loop s0
-
- mov ax,4c00h
- int 21h
-
- codesg ends
- end start
复制代码 |
|