Fix build

svn path=/branches/ros-amd64-bringup/; revision=45189
This commit is contained in:
Timo Kreuzer 2010-01-21 19:34:30 +00:00
parent f7a3094ecc
commit 663e3ac4c2
2 changed files with 21 additions and 1 deletions

View file

@ -94,7 +94,7 @@ HalInitSystem(IN ULONG BootPhase,
DPRINT1("HalInitSystem 1\n");
/* Initialize the PICs */
HalpInitPICs();
HalpInitializePICs(FALSE);
DPRINT1("HalInitSystem 2\n");

View file

@ -169,3 +169,23 @@ KeQueryPerformanceCounter(
return Result;
}
VOID
NTAPI
HalDisableSystemInterrupt(
ULONG Vector,
KIRQL Irql)
{
UNIMPLEMENTED;
}
BOOLEAN
NTAPI
HalEnableSystemInterrupt(
ULONG Vector,
KIRQL Irql,
KINTERRUPT_MODE InterruptMode)
{
UNIMPLEMENTED;
return FALSE;
}