1997-10-12 18:30:17 +02:00
|
|
|
/*
|
|
|
|
* BIOS interrupt 15h handler
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright 1997 Jan Willamowius
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1997-10-12 18:30:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "miscemu.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2002-11-24 23:34:04 +01:00
|
|
|
#include "wine/winbase16.h"
|
1997-10-12 18:30:17 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(int);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1997-10-12 18:30:17 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
2002-11-24 23:34:04 +01:00
|
|
|
* DOSVM_Int15Handler (WINEDOS16.121)
|
1997-10-12 18:30:17 +02:00
|
|
|
*
|
2000-08-20 20:47:48 +02:00
|
|
|
* Handler for int 15h
|
1997-10-12 18:30:17 +02:00
|
|
|
*/
|
2002-11-24 23:34:04 +01:00
|
|
|
void WINAPI DOSVM_Int15Handler( CONTEXT86 *context )
|
1997-10-12 18:30:17 +02:00
|
|
|
{
|
|
|
|
switch(AH_reg(context))
|
|
|
|
{
|
2000-08-20 20:47:48 +02:00
|
|
|
case 0x84: /* read joystick information */
|
|
|
|
FIXME("Read joystick information not implemented\n");
|
|
|
|
|
|
|
|
/* FIXME: report status as if no game port exists */
|
|
|
|
switch(DX_reg(context))
|
|
|
|
{
|
|
|
|
case 0x0: /* read joystick switches */
|
2002-08-31 20:47:00 +02:00
|
|
|
SET_AL( context, 0x0 ); /* all switches open */
|
2000-08-20 20:47:48 +02:00
|
|
|
break;
|
|
|
|
case 0x1: /* read joystick position */
|
2002-08-31 20:47:00 +02:00
|
|
|
SET_AX( context, 0x0 );
|
|
|
|
SET_BX( context, 0x0 );
|
|
|
|
SET_CX( context, 0x0 );
|
|
|
|
SET_DX( context, 0x0 );
|
2000-08-20 20:47:48 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
INT_BARF( context, 0x15 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
RESET_CFLAG(context);
|
|
|
|
break;
|
|
|
|
|
1997-10-12 18:30:17 +02:00
|
|
|
case 0x88: /* get size of memory above 1 M */
|
2002-08-31 20:47:00 +02:00
|
|
|
SET_AX( context, 64 ); /* FIXME: are 64K ok? */
|
1997-10-12 18:30:17 +02:00
|
|
|
RESET_CFLAG(context);
|
|
|
|
break;
|
|
|
|
|
1999-01-24 10:32:10 +01:00
|
|
|
case 0xc0: /* GET CONFIGURATION */
|
2002-11-24 23:34:04 +01:00
|
|
|
if (ISV86(context))
|
|
|
|
{
|
|
|
|
/* real mode segment */
|
2000-09-26 01:53:07 +02:00
|
|
|
context->SegEs = 0xf000;
|
2002-11-24 23:34:04 +01:00
|
|
|
}
|
1999-01-24 10:32:10 +01:00
|
|
|
else
|
2002-11-24 23:34:04 +01:00
|
|
|
{
|
|
|
|
/* KERNEL.194: __F000H - protected mode selector */
|
|
|
|
FARPROC16 proc = GetProcAddress16( GetModuleHandle16("KERNEL"),
|
|
|
|
(LPCSTR)(ULONG_PTR)194 );
|
|
|
|
context->SegEs = LOWORD(proc);
|
|
|
|
}
|
2002-08-31 20:47:00 +02:00
|
|
|
SET_BX( context, 0xe6f5 );
|
|
|
|
SET_AH( context, 0x0 );
|
1999-01-24 10:32:10 +01:00
|
|
|
RESET_CFLAG(context);
|
|
|
|
break;
|
2002-11-24 23:34:04 +01:00
|
|
|
|
1999-03-17 16:15:14 +01:00
|
|
|
case 0xc2:
|
|
|
|
switch(AL_reg(context))
|
|
|
|
{
|
|
|
|
case 0x00: /* Enable-Disable Pointing Device (mouse) */
|
|
|
|
/* BH = newstate, 00h = disabled 01h = enabled */
|
2002-06-01 01:06:46 +02:00
|
|
|
switch(BH_reg(context))
|
1999-03-17 16:15:14 +01:00
|
|
|
{
|
|
|
|
case 0x00:
|
1999-06-26 21:09:08 +02:00
|
|
|
FIXME("Disable Pointing Device - not implemented\n");
|
1999-03-17 16:15:14 +01:00
|
|
|
break;
|
|
|
|
case 0x01:
|
1999-06-26 21:09:08 +02:00
|
|
|
FIXME("Enable Pointing Device - not implemented\n");
|
1999-03-17 16:15:14 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
INT_BARF( context, 0x15 );
|
|
|
|
break;
|
|
|
|
}
|
2002-08-31 20:47:00 +02:00
|
|
|
SET_AH( context, 0x00 ); /* successful */
|
1999-03-17 16:15:14 +01:00
|
|
|
break;
|
|
|
|
case 0x02: /* Set Sampling Rate */
|
|
|
|
/* BH = sampling rate */
|
1999-06-26 21:09:08 +02:00
|
|
|
FIXME("Set Sampling Rate - not implemented\n");
|
2002-08-31 20:47:00 +02:00
|
|
|
SET_AH( context, 0x00 ); /* successful */
|
1999-03-17 16:15:14 +01:00
|
|
|
break;
|
|
|
|
case 0x04: /* Get Pointing Device Type */
|
1999-06-26 21:09:08 +02:00
|
|
|
FIXME("Get Pointing Device Type - not implemented\n");
|
2002-11-24 23:34:04 +01:00
|
|
|
/* FIXME: BH = Device id, What is it supposed to be? */
|
|
|
|
SET_BH( context, 0x01 );
|
1999-03-17 16:15:14 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
INT_BARF( context, 0x15 );
|
|
|
|
}
|
|
|
|
break;
|
1999-01-24 10:32:10 +01:00
|
|
|
|
1997-10-12 18:30:17 +02:00
|
|
|
default:
|
|
|
|
INT_BARF( context, 0x15 );
|
|
|
|
}
|
|
|
|
}
|