mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
6afbc8f483
svn path=/branches/reactos-yarotows/; revision=45219
32 lines
637 B
C
32 lines
637 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/hal/x86/halinit.c
|
|
* PURPOSE: Initalize the x86 hal
|
|
* PROGRAMMER: David Welch (welch@cwcom.net)
|
|
* UPDATE HISTORY:
|
|
* 11/06/98: Created
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include "halxbox.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS ***************************************************************/
|
|
|
|
VOID
|
|
HalpInitPhase0(PLOADER_PARAMETER_BLOCK LoaderBlock)
|
|
{
|
|
HalpXboxInitPartIo();
|
|
}
|
|
|
|
VOID
|
|
HalpInitPhase1(VOID)
|
|
{
|
|
}
|
|
|
|
/* EOF */
|