Cursor Help
Posted: Thu Sep 26, 2002 4:37 pm
I am trying to get the cursor to work. I want to use this simple cursor code in protected mode. It works fine in a real mode bootsector.
mov ah,2 ; Set cursor fubction
mov dh,10 ; Row 10
mov dl,20 ; Column 20
mov bh,0 ; Video page 0
int 10h ; Call BIOS
I would be able to use this code but considering I can't use the int 10h because its a bios interrupt , Im stuck.
How can I use this code in protected mode?
How would I get around the bios interrupt?
mov ah,2 ; Set cursor fubction
mov dh,10 ; Row 10
mov dl,20 ; Column 20
mov bh,0 ; Video page 0
int 10h ; Call BIOS
I would be able to use this code but considering I can't use the int 10h because its a bios interrupt , Im stuck.
How can I use this code in protected mode?
How would I get around the bios interrupt?