Tag: Mouse

Tag: Mouse

Assembly : Coding Posisi Mouse
Image December 20, 2019 Ari Usman,Artikel Komputer,Assembly Ari Usman

; mouse test name “mouse” org 100h print macro x, y, attrib, sdat LOCAL s_dcl, skip_dcl, s_dcl_end pusha mov dx, cs mov es, dx mov ah, 13h mov al, 1 mov bh, 0 mov bl, attrib mov cx, offset s_dcl_end – offset s_dcl mov dl, x mov dh, y mov bp, offset s_dcl int 10h

Details