王爽 汇编语言 实验九
assume cs:codesg , ds:datasg
datasg segment
db 'welcome to masm!'
datasg ends
codesg segment
start:
mov bx , 0
mov cx , 16
mov si , 0
mov bp , 0744h
mov ax , datasg
mov es , ax
mov ax , 0b800h
mov ds , ax
s1:
mov al , es:[bx]
mov ah , 02h
mov ds:[bp+si] , ax
mov al ,es:[bx]
mov ah , 36
mov ds:[bp+si+00a0h] , ax
mov al ,es:[bx]
mov ah , 113
mov ds:[bp+si+0140h] , ax
inc bx
add si , 2
loop s1
mov ax , 4c00h
int 21h
codesg ends
end start
作者:BuildNewApp
出处:http://syxchina.cnblogs.com、 BuildNewApp.com
本文版权归作者、博客园和百度空间共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则作者会诅咒你的。
如果您阅读了我的文章并觉得有价值请点击此处,谢谢您的肯定1。