mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
Just cause it ain't AMD64 ain't meaning it's just x86... so make the macro x86-inclusive instead of x64-exclusive (since we don't want those definitions on ARM either)
svn path=/trunk/; revision=41870
This commit is contained in:
parent
b7705f8eeb
commit
cc54067fdd
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
|||
/* Base Addres of Kernel in Physical Memory */
|
||||
#define KERNEL_BASE_PHYS 0x800000
|
||||
|
||||
#if !defined(_M_AMD64)
|
||||
#if defined(_M_IX86)
|
||||
|
||||
/* Bits to shift to convert a Virtual Address into an Offset in the Page Table */
|
||||
#define PFN_SHIFT 12
|
||||
|
|
Loading…
Reference in a new issue