diff --git a/reactos/hal/hal/hal.c b/reactos/hal/hal/hal.c index 21f0be33430..afd73b18c7d 100644 --- a/reactos/hal/hal/hal.c +++ b/reactos/hal/hal/hal.c @@ -126,6 +126,16 @@ HalAllocateCommonBuffer( } +VOID +NTAPI +HalAllocateCrashDumpRegisters( + ULONG Unknown1, + ULONG Unknown2) +{ + UNIMPLEMENTED; +} + + NTSTATUS NTAPI HalAssignSlotResources( diff --git a/reactos/hal/hal/hal.def b/reactos/hal/hal/hal.def index 3b38a267076..0076c3eadaa 100644 --- a/reactos/hal/hal/hal.def +++ b/reactos/hal/hal/hal.def @@ -11,7 +11,7 @@ HalAdjustResourceList@4 HalAllProcessorsStarted@0 HalAllocateAdapterChannel@16 HalAllocateCommonBuffer@16 -;HalAllocateCrashDumpRegisters@8 +HalAllocateCrashDumpRegisters@8 HalAssignSlotResources@32 HalBeginSystemInterrupt@12 HalCalibratePerformanceCounter@4 diff --git a/reactos/hal/halx86/generic/misc.c b/reactos/hal/halx86/generic/misc.c index 227479f9f85..369f9815761 100644 --- a/reactos/hal/halx86/generic/misc.c +++ b/reactos/hal/halx86/generic/misc.c @@ -16,6 +16,17 @@ /* FUNCTIONS ****************************************************************/ + +VOID +NTAPI +HalAllocateCrashDumpRegisters( + ULONG Unknown1, + ULONG Unknown2) +{ + UNIMPLEMENTED; +} + + VOID STDCALL HalHandleNMI(ULONG Unused) {