Bochs / QEMU VGA Compatibility
Posted: Sun Jun 08, 2008 11:41 pm
I'm trying to setup the bordercolor for the VGA using BIOS 0x10 services, but QEMU and Bochs does not show the border color. Anyone knows if Qemu or Bochs emulate the overscan color?
Here's the code:
Thanks.
Here's the code:
Code: Select all
setupvid:
push ax
push bx
xor bx, bx
mov ax, 0x1001
mov bh, 0x11 ;blue
int 10h
pop bx
pop ax
ret