我用汇编写了一段向屏幕显示字符串的代码但是就是运行不出来 请各位好友看一下 帮帮忙 我是初学者 呵呵 下面是代码
assume cs:codesg,ds:datasg
datasg segment
db 'welcome to masm!'
datasg ends
codesg segment
start:mov ax,datasg
mov ds,ax ;初始化段寄存器
mov bx,0h ;字符的递增
mov si,160 ;显存的偏移地址
mov ax,0b800h ;显存的段地址
mov es,ax
mov cx,16 ;循环次数
s:mov al,ds:[bx]
mov ah,04h ;把字符放入显存
mov es:[si],ax
inc bx ;把字符属性放入显存
add si,2
loop s
mov ax,4c00h
int 21h
codesg ends
end start
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>