Move NDEBUG higher so it actually works and doesn't output all debug messages (fix...
[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 #define NDEBUG
15
16 #include <ddk/ntddk.h>
17 #include <hal.h>
18 #include "halxbox.h"
19
20 #include <internal/debug.h>
21 #include <debug.h>
22
23 /* FUNCTIONS ***************************************************************/
24
25 VOID
26 HalpInitPhase0(PLOADER_PARAMETER_BLOCK LoaderBlock)
27 {
28 HalpHooks.InitPciBus = HalpXboxInitPciBus;
29
30 HalpInitPICs();
31
32 /* Setup busy waiting */
33 HalpCalibrateStallExecution();
34
35 HalpXboxInitPartIo();
36 }
37
38 /* EOF */