mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
154 B
17 lines
154 B
.model small,pascal
|
|
|
|
.code
|
|
|
|
int10 proc pRegs:ptr
|
|
|
|
mov bx,pRegs
|
|
mov ax,[bx]
|
|
mov cx,[bx].4
|
|
mov dx,[bx].6
|
|
mov bx,[bx].2
|
|
int 10H
|
|
ret
|
|
|
|
int10 endp
|
|
|
|
end
|