summaryrefslogtreecommitdiff
path: root/src/arch/x86/x86_traits.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 14:01:06 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 14:01:06 -0700
commitd0a43ce2b29da1640248a756dcd07f0f28561df0 (patch)
treefa3d8e0990b5a1d360c67d75d9d745307faaf242 /src/arch/x86/x86_traits.hh
parent3a1905157eec2ed80eaf2ddb8be69cb2f509dfee (diff)
downloadgem5-d0a43ce2b29da1640248a756dcd07f0f28561df0.tar.xz
X86: Fix the ordering of special physical address ranges.
Diffstat (limited to 'src/arch/x86/x86_traits.hh')
-rw-r--r--src/arch/x86/x86_traits.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/x86_traits.hh b/src/arch/x86/x86_traits.hh
index be7572517..0347a7099 100644
--- a/src/arch/x86/x86_traits.hh
+++ b/src/arch/x86/x86_traits.hh
@@ -92,8 +92,8 @@ namespace X86ISA
const Addr PhysAddrPrefixIO = ULL(0x8000000000000000);
const Addr PhysAddrPrefixPciConfig = ULL(0xC000000000000000);
- const Addr PhysAddrPrefixLocalAPIC = ULL(0xA000000000000000);
- const Addr PhysAddrPrefixInterrupts = ULL(0x2000000000000000);
+ const Addr PhysAddrPrefixLocalAPIC = ULL(0x2000000000000000);
+ const Addr PhysAddrPrefixInterrupts = ULL(0xA000000000000000);
// Each APIC gets two pages. One page is used for local apics to field
// accesses from the CPU, and the other is for all APICs to communicate.
const Addr PhysAddrAPICRangeSize = 1 << 12;