- NDK 0.98, now with versionned headers. Too many changes to list, see the TinyKRNL...
[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 <halxbox.h>
15
16 #define NDEBUG
17 #include <debug.h>
18
19 /* FUNCTIONS ***************************************************************/
20
21 VOID
22 HalpInitPhase0(PROS_LOADER_PARAMETER_BLOCK LoaderBlock)
23 {
24 HalpHooks.InitPciBus = HalpXboxInitPciBus;
25
26 HalpInitPICs();
27
28 /* Setup busy waiting */
29 HalpCalibrateStallExecution();
30
31 HalpXboxInitPartIo();
32 }
33
34 /* EOF */