summaryrefslogtreecommitdiff
path: root/src/arch/alpha/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-11-10 05:29:05 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-11-10 05:29:05 -0500
commit9731fb3fd72ed2e8f5bf3423a33d45a5c35f636f (patch)
treec04443e92240c078159dc75f0c640753b446e4e1 /src/arch/alpha/SConscript
parentb4dfbf3aab700f4cc9c5638c2275c588a56778c8 (diff)
downloadgem5-9731fb3fd72ed2e8f5bf3423a33d45a5c35f636f.tar.xz
Moved the Alpha float regfile into it's own regfile and got rid of constants.hh and isa_traits.cc
--HG-- extra : convert_revision : 55afd7d21c276906520da375b3bbb563be420880
Diffstat (limited to 'src/arch/alpha/SConscript')
-rw-r--r--src/arch/alpha/SConscript14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/arch/alpha/SConscript b/src/arch/alpha/SConscript
index b0a725e7a..3cc5ec270 100644
--- a/src/arch/alpha/SConscript
+++ b/src/arch/alpha/SConscript
@@ -48,27 +48,29 @@ Import('env')
# Base sources used by all configurations.
base_sources = Split('''
faults.cc
- isa_traits.cc
- miscregfile.cc
+ floatregfile.cc
intregfile.cc
+ miscregfile.cc
+ regfile.cc
''')
# Full-system sources
full_system_sources = Split('''
- tlb.cc
arguments.cc
ev5.cc
+ freebsd/system.cc
idle_event.cc
ipr.cc
kernel_stats.cc
+ linux/system.cc
osfpal.cc
+ pagetable.cc
stacktrace.cc
- vtophys.cc
remote_gdb.cc
system.cc
- freebsd/system.cc
- linux/system.cc
+ tlb.cc
tru64/system.cc
+ vtophys.cc
''')