这是我的代码。
我希望:在图形模式下,显示字符串,但是什么都不显示。
请教大家,这是什么问题呢?
data segment
s db 20 dup(219)
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov ax,0012h
int 10h
mov bp,offset s
mov ah,13h
mov bh,1
mov bl,01h
mov cx,20
mov dh,30
mov dl,40
int 21h
code ends
end start