我试图使用fasm在装配中绘制一个三角形,但我无法做到。 我有以下代码来绘制一个矩形,我认为我应该减少循环内的[comp]值" ciclopinta"但这不起作用(或者我做错了)。
org 100h
mov ah,4fh
mov al,02h
mov bx,13h
int 10h
mov [alt],50
mov [comp], 100
mov dx, 100
mov cx,100
ciclopinta:
ciclo1:
mov ah,0ch
mov al,23h
mov bh, 0
int 10h
dec cx
dec byte[comp]
jnz ciclo1
mov cx, 100
mov [comp],100
dec dx
dec byte [alt]
jnz ciclopinta
mov ah, 07h
int 21h
mov ah,4ch
int 21h
comp rb 1
alt rb 1
答案 0 :(得分:3)
mov ah,4fh mov al,02h mov bx,13h int 10h
为什么使用VESA功能设置传统视频模式?通常不应该工作。更好地使用以下内容:
mov ax, 0013h ;320x200 256-colors
int 10h
在程序结束时,您使用BIOS功能07h到ScrollWindowUp,但您没有设置所有参数以使其工作。最好删除这些行mov ah, 07h
int 21h
你想减少 comp 变量的想法很好。我建议你写一下:
dec dx
mov [comp], dl ;It's a byte-sized variable