mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[HAL]
Fix build svn path=/branches/ros-amd64-bringup/; revision=45189
This commit is contained in:
parent
f7a3094ecc
commit
663e3ac4c2
2 changed files with 21 additions and 1 deletions
|
@ -94,7 +94,7 @@ HalInitSystem(IN ULONG BootPhase,
|
|||
DPRINT1("HalInitSystem 1\n");
|
||||
|
||||
/* Initialize the PICs */
|
||||
HalpInitPICs();
|
||||
HalpInitializePICs(FALSE);
|
||||
|
||||
DPRINT1("HalInitSystem 2\n");
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue