diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-02-20 14:48:10 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-02-20 14:48:10 -0500 |
commit | bdf3fd92ba3ebe1fd300238e8fd9cca4ae5c2614 (patch) | |
tree | 9ceb62e1e96f9a7b7f2d49083471a1285d76a02a /arch/mips/SConscript | |
parent | 19534176e06578cb167d5f10d9146f6b1c361cb5 (diff) | |
download | gem5-bdf3fd92ba3ebe1fd300238e8fd9cca4ae5c2614.tar.xz |
make MIPS specific
--HG--
extra : convert_revision : c019fad60fbf1a316bc6201b8ce8acf5a9875989
Diffstat (limited to 'arch/mips/SConscript')
-rw-r--r-- | arch/mips/SConscript | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips/SConscript b/arch/mips/SConscript index bd67c98e9..a6af91669 100644 --- a/arch/mips/SConscript +++ b/arch/mips/SConscript @@ -42,7 +42,7 @@ Import('env') # Base sources used by all configurations. arch_base_sources = Split(''' arch/mips/decoder.cc - arch/mips/alpha_o3_exec.cc + arch/mips/mips_o3_exec.cc arch/mips/fast_cpu_exec.cc arch/mips/simple_cpu_exec.cc arch/mips/full_cpu_exec.cc @@ -52,9 +52,9 @@ arch_base_sources = Split(''' # Full-system sources arch_full_system_sources = Split(''' - arch/mips/alpha_memory.cc + arch/mips/memory.cc arch/mips/arguments.cc - arch/mips/ev5.cc + arch/mips/mips34k.cc arch/mips/osfpal.cc arch/mips/stacktrace.cc arch/mips/vtophys.cc @@ -62,9 +62,9 @@ arch_full_system_sources = Split(''' # Syscall emulation (non-full-system) sources arch_syscall_emulation_sources = Split(''' - arch/mips/alpha_common_syscall_emul.cc - arch/mips/alpha_linux_process.cc - arch/mips/alpha_tru64_process.cc + arch/mips/common_syscall_emul.cc + arch/mips/linux_process.cc + arch/mips/tru64_process.cc ''') # Set up complete list of sources based on configuration. |