[NTVDM]: We do not have an Extended BIOS Data Area yet. Make INT 15h, C1h report correctly this fact.

svn path=/trunk/; revision=64381
This commit is contained in:
Hermès Bélusca-Maïto 2014-09-28 21:48:46 +00:00
parent 17cc5b0dab
commit 2245653d55

View file

@ -240,10 +240,22 @@ static VOID WINAPI BiosMiscService(LPWORD Stack)
break;
}
/* Return Extended-Bios Data-Area Segment Address (PS) */
case 0xC1:
{
// Stack[STACK_FLAGS] &= ~EMULATOR_FLAG_CF;
// setES(???);
/* We do not support EBDA yet */
Stack[STACK_FLAGS] |= EMULATOR_FLAG_CF;
break;
}
/* Pointing Device BIOS Interface (PS) */
case 0xC2:
{
DPRINT1("INT 15h, AH = 0x%02X must be implemented in order to support vendor mouse drivers\n");
DPRINT1("INT 15h, AH = C2h must be implemented in order to support vendor mouse drivers\n");
break;
}