画面に「F」を表示したい。コードをコンパイルしたところ、問題はなかったが「F」が表示されなかった。コンパイラは次のとおりです。emu8086コードは次のとおりです。
stseg segment
db 64 dup(?)
stseg ends
dtseg segment
dtseg ends
cdseg segment
main proc far
assume cs:cdseg,ds:dtseg,ss:stseg
mov ax,dtseg
mov ds,ax
call clear
call color
call moh
mov ah,4ch
int 21h
main endp
clear proc
mov ax,0600h
mov bh,07
mov cx,0000
mov dx,184fh
clear endp
color proc
mov ah,0b
mov bh,0
mov bl,4
int 10h
color endp
moh proc
mov cx,100
mov dx,30
back:mov ah,0ch
mov al,01
int 10h
inc cx
cmp cx,130
jnz back
mov cx,100
mov dx,50
loo: mov ah,0ch
mov al,01
int 10h
inc cx
cmp cx,130
jnz loo
mov cx,100
mov dx,30
joo: mov ah,0ch
mov al,01
int 10h
inc cx
cmp cx,50
jnz joo
cdseg ends