mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
8db8073cbb
svn path=/branches/shell-experiments/; revision=63271
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: kbdbios.c
|
|
* PURPOSE: VDM Keyboard BIOS Support Library
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#define NDEBUG
|
|
|
|
#include "emulator.h"
|
|
#include "callback.h"
|
|
#include "bop.h"
|
|
|
|
#include "bios.h"
|
|
// #include "kbdbios.h"
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
/* BOP Identifiers */
|
|
#define BOP_KBD_IRQ 0x09
|
|
#define BOP_KBD_INT 0x16
|
|
|
|
/* PUBLIC FUNCTIONS ***********************************************************/
|
|
|
|
static VOID WINAPI KbdBiosIRQ(LPWORD Stack)
|
|
{
|
|
DPRINT1("KbdBiosIRQ is UNIMPLEMENTED\n");
|
|
}
|
|
|
|
static VOID WINAPI KbdBiosINT(LPWORD Stack)
|
|
{
|
|
DPRINT1("KbdBiosINT is UNIMPLEMENTED\n");
|
|
}
|
|
|
|
BOOLEAN KbdBiosInitialize(VOID)
|
|
{
|
|
/* Register the BIOS support BOPs */
|
|
RegisterBop(BOP_KBD_IRQ, KbdBiosIRQ);
|
|
RegisterBop(BOP_KBD_INT, KbdBiosINT);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
VOID KbdBiosCleanup(VOID)
|
|
{
|
|
}
|
|
|
|
/* EOF */
|