mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[NTVDM]
Implement INT 10h, function 04h (Query Light Pen) (deprecated) svn path=/branches/ntvdm/; revision=59677
This commit is contained in:
@@ -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:
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user