Implement INT 10h, function 04h (Query Light Pen) (deprecated)

svn path=/branches/ntvdm/; revision=59677
This commit is contained in:
Hermès Bélusca-Maïto 2013-08-09 13:06:01 +00:00
parent 5670c032a9
commit d497b99734

View file

@ -667,6 +667,17 @@ VOID BiosVideoService(LPWORD Stack)
break;
}
/* Query Light Pen */
case 0x04:
{
/*
* On modern BIOSes, this function returns 0
* so that we can ignore the other registers.
*/
EmulatorSetRegister(EMULATOR_REG_AX, 0);
break;
}
/* Select Active Display Page */
case 0x05:
{