migrate substitution keywords to SVN
[reactos.git] / reactos / hal / halx86 / up / halinit_up.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
17 #define NDEBUG
18 #include <internal/debug.h>
19
20 /* FUNCTIONS ***************************************************************/
21
22 VOID
23 HalpInitPhase0(VOID)
24 {
25 HalpInitPICs();
26
27 /* Setup busy waiting */
28 HalpCalibrateStallExecution();
29 }
30
31 /* EOF */