diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-08-23 16:14:24 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-08-23 16:14:24 -0700 |
commit | 25ffa8eb8b3ebdfe62f1e17f51030ffdf79b5275 (patch) | |
tree | 01b73f5ede03967b0577ddb45c552efd9b3a9170 /src/arch/x86/system.cc | |
parent | 7a6ed1b10bd483589e474985bc664233d3a43e35 (diff) | |
download | gem5-25ffa8eb8b3ebdfe62f1e17f51030ffdf79b5275.tar.xz |
X86: Create a directory for files that define register indexes.
This is to help tidy up arch/x86. These files should not be used external to
the ISA.
--HG--
rename : src/arch/x86/apicregs.hh => src/arch/x86/regs/apic.hh
rename : src/arch/x86/floatregs.hh => src/arch/x86/regs/float.hh
rename : src/arch/x86/intregs.hh => src/arch/x86/regs/int.hh
rename : src/arch/x86/miscregs.hh => src/arch/x86/regs/misc.hh
rename : src/arch/x86/segmentregs.hh => src/arch/x86/regs/segment.hh
Diffstat (limited to 'src/arch/x86/system.cc')
-rw-r--r-- | src/arch/x86/system.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/system.cc b/src/arch/x86/system.cc index 46d17cdb3..f12d6e424 100644 --- a/src/arch/x86/system.cc +++ b/src/arch/x86/system.cc @@ -39,7 +39,7 @@ #include "arch/x86/bios/smbios.hh" #include "arch/x86/bios/intelmp.hh" -#include "arch/x86/miscregs.hh" +#include "arch/x86/regs/misc.hh" #include "arch/x86/system.hh" #include "arch/vtophys.hh" #include "base/intmath.hh" |