Ditto for HAL
[reactos.git] / reactos / hal / halx86 / xbox / halinit_xbox.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/hal/x86/halinit.c
6 * PURPOSE: Initalize the x86 hal
7 * PROGRAMMER: David Welch (welch@cwcom.net)
8 * UPDATE HISTORY:
9 * 11/06/98: Created
10 */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ddk/ntddk.h>
15 #include <hal.h>
16 #include "halxbox.h"
17
18 #include <internal/debug.h>
19 #define NDEBUG
20 #include <debug.h>
21
22 /* FUNCTIONS ***************************************************************/
23
24 VOID
25 HalpInitPhase0(VOID)
26 {
27 HalpHooks.InitPciBus = HalpXboxInitPciBus;
28
29 HalpInitPICs();
30
31 /* Setup busy waiting */
32 HalpCalibrateStallExecution();
33
34 HalpXboxInitPartIo();
35 }
36
37 /* EOF */