diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-05-07 18:50:41 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-05-07 18:50:41 -0400 |
commit | 1047215ee58bf2b3df0b5e72f1e97da3891e3ed2 (patch) | |
tree | a8b9941d00c16d0017b1ea9b475fe3f14ee5cd11 /arch/mips/SConscript | |
parent | 0930024b886e9102ba73c8e15a81d1e253ff141b (diff) | |
download | gem5-1047215ee58bf2b3df0b5e72f1e97da3891e3ed2.tar.xz |
First Steps in cleaning up MIPS code - This changeset rearranges the files in the MIPS directory by moving where constants/types/classes are defined
arch/mips/SConscript:
arch/mips/isa_traits.cc:
arch/mips/isa_traits.hh:
arch/mips/process.cc:
arch/mips/linux/linux.cc:
arch/mips/utility.hh:
arch/mips/linux/process.cc:
arch/mips/int_regfile.hh:
arch/mips/misc_regfile.hh:
arch/mips/regfile.hh:
arch/mips/types.hh:
MIPS directory rearranging
--HG--
rename : arch/mips/mips_linux.cc => arch/mips/linux/linux.cc
rename : arch/mips/mips_linux.hh => arch/mips/linux/linux.hh
rename : arch/mips/linux_process.cc => arch/mips/linux/process.cc
rename : arch/mips/linux_process.hh => arch/mips/linux/process.hh
extra : convert_revision : 138eee48c8ed75efcf38572f335a556aaec38fc7
Diffstat (limited to 'arch/mips/SConscript')
-rw-r--r-- | arch/mips/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/SConscript b/arch/mips/SConscript index 06b313203..ef1ef25d6 100644 --- a/arch/mips/SConscript +++ b/arch/mips/SConscript @@ -57,8 +57,8 @@ full_system_sources = Split(''' # Syscall emulation (non-full-system) sources syscall_emulation_sources = Split(''' - mips_linux.cc - linux_process.cc + linux/linux.cc + linux/process.cc process.cc ''') |