mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
23 lines
573 B
C
23 lines
573 B
C
|
/*
|
||
|
* PROJECT: ReactOS Kernel
|
||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||
|
* PURPOSE: Source File for MPS specific functions
|
||
|
* COPYRIGHT: Copyright 2021 Justin Miller <justinmiller100@gmail.com>
|
||
|
*/
|
||
|
|
||
|
/* INCLUDES *******************************************************************/
|
||
|
|
||
|
#include <hal.h>
|
||
|
#include <smp.h>
|
||
|
#define NDEBUG
|
||
|
#include <debug.h>
|
||
|
|
||
|
/* FUNCTIONS ******************************************************************/
|
||
|
|
||
|
VOID
|
||
|
HalpParseApicTables(
|
||
|
_In_ PLOADER_PARAMETER_BLOCK LoaderBlock)
|
||
|
{
|
||
|
UNIMPLEMENTED;
|
||
|
}
|