王爽 汇编语言 实验六
assume cs:codesg , ss:stacksg , ds:datasg
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 cx , 4
mov si , 3
s1:
mov al , [bx][si]
and al , 11011111b
mov [bx][si] , al
inc si
loop s1
pop cx
add bx , 16
loop s0
mov ax , 4c00h
int 21h
codesg ends
end start
作者:BuildNewApp
出处:http://syxchina.cnblogs.com、 BuildNewApp.com
本文版权归作者、博客园和百度空间共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则作者会诅咒你的。
如果您阅读了我的文章并觉得有价值请点击此处,谢谢您的肯定1。