标签: assembly x86-16
如何在Assembly中获得特定像素的颜色? 我需要将像素的颜色与红色进行比较。
proc GraphicsScreen mov al, 13h mov ah, 0 int 10h ret endp GraphicsScreen
答案 0 :(得分:1)
没关系,我找到了答案:
mov ah,0Dh mov cx,[X] mov dx,[Y] int 10H ; AL = COLOR cmp al, [COLOR]