reactos/ntoskrnl/ke/i386/mtrr.c
Art Yerkes c501d8112c Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
2008-08-01 11:32:26 +00:00

34 lines
860 B
C

/*
* PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ke/i386/mtrr.c
* PURPOSE: Support for MTRR and AMD K6 MTRR
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
*/
/* INCLUDES ******************************************************************/
#include <ntoskrnl.h>
#define NDEBUG
#include <debug.h>
/* GLOBALS *******************************************************************/
/* FUNCTIONS *****************************************************************/
VOID
NTAPI
KiInitializeMTRR(IN BOOLEAN FinalCpu)
{
/* FIXME: Support this */
DPRINT1("Your machine supports MTRR but ReactOS doesn't yet.\n");
}
VOID
NTAPI
KiAmdK6InitializeMTRR(VOID)
{
/* FIXME: Support this */
DPRINT1("Your machine supports AMD MTRR but ReactOS doesn't yet.\n");
}