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 19 CODE_SEG("INIT") 20 VOID 21 NTAPI 22 KiInitializeMTRR(IN BOOLEAN FinalCpu) 23 { 24 /* FIXME: Support this */ 25 DPRINT("MTRR support detected but not yet taken advantage of\n"); 26 } 27 28 CODE_SEG("INIT") 29 VOID 30 NTAPI 31 KiAmdK6InitializeMTRR(VOID) 32 { 33 /* FIXME: Support this */ 34 DPRINT("AMD MTRR support detected but not yet taken advantage of\n"); 35 } 36