ReactOS 0.4.15-dev-7953-g1f49173
mtrr.c
Go to the documentation of this file.
1/*
2* PROJECT: ReactOS Kernel
3* LICENSE: GPL - See COPYING in the top level directory
4* FILE: ntoskrnl/ke/i386/mtrr.c
5* PURPOSE: Support for MTRR and AMD K6 MTRR
6* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7*/
8
9/* INCLUDES ******************************************************************/
10
11#include <ntoskrnl.h>
12#define NDEBUG
13#include <debug.h>
14
15/* GLOBALS *******************************************************************/
16
17/* FUNCTIONS *****************************************************************/
18
19CODE_SEG("INIT")
20VOID
23{
24 /* FIXME: Support this */
25 DPRINT("MTRR support detected but not yet taken advantage of\n");
26}
27
28CODE_SEG("INIT")
29VOID
32{
33 /* FIXME: Support this */
34 DPRINT("AMD MTRR support detected but not yet taken advantage of\n");
35}
#define CODE_SEG(...)
unsigned char BOOLEAN
VOID NTAPI KiAmdK6InitializeMTRR(VOID)
Definition: mtrr.c:31
VOID NTAPI KiInitializeMTRR(IN BOOLEAN FinalCpu)
Definition: mtrr.c:22
#define DPRINT
Definition: sndvol32.h:71
#define NTAPI
Definition: typedefs.h:36
#define IN
Definition: typedefs.h:39