Added stubs for a few functions.

This commit is contained in:
Florian Goth 2004-03-25 05:28:54 +00:00 committed by Alexandre Julliard
parent b400edb0e7
commit cc96d67aee
1 changed files with 24 additions and 0 deletions

View File

@ -35,6 +35,20 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
{
switch(AH_reg(context))
{
case 0x4f: /*catch keyboard*/
FIXME("INT15: catch keyboard not handled yet\n");
break;
case 0x83: /* start timer*/
switch(AL_reg(context))
{
case 0x00: /* Start Timer*/
FIXME("INT15: Start Timer not handled yet\n");
break;
case 0x01: /* stop timer*/
FIXME("INT15: Stop Timer not handled yet\n");
break;
}
break;
case 0x84: /* read joystick information */
FIXME("Read joystick information not implemented\n");
@ -57,6 +71,16 @@ void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
RESET_CFLAG(context);
break;
case 0x85: /* sysreq - key used*/
FIXME("INT15: SysReq - Key not handled yet\n");
break;
case 0x86: /* wait*/
FIXME("INT15: Wait not correctly handled yet\n");
if ( AL_reg( context ) != 0x00 ) ERR("Invalid Input to Int15 function 0x86h AL != 0x00 \n");
break;
case 0x87: /* move memory regions*/
FIXME("INT15: Move memory regions not implemented\n");
break;
case 0x88: /* get size of memory above 1 M */
SET_AX( context, 64 ); /* FIXME: are 64K ok? */