diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-06-21 17:21:25 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-06-21 17:21:25 -0700 |
commit | d4a03f19009b9a537d99d54620784d441f9c3a92 (patch) | |
tree | 865d044e0a86840ce9e9837f0eaac6e9da1a1bed /src/arch/arm/SConscript | |
parent | 2a39570b78dd5871582089e7e1b21b739d2e9d68 (diff) | |
download | gem5-d4a03f19009b9a537d99d54620784d441f9c3a92.tar.xz |
ARM: Simplify the ISA desc by pulling some classes out of it.
Diffstat (limited to 'src/arch/arm/SConscript')
-rw-r--r-- | src/arch/arm/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/arm/SConscript b/src/arch/arm/SConscript index dbd12e240..60a5ca3b0 100644 --- a/src/arch/arm/SConscript +++ b/src/arch/arm/SConscript @@ -35,6 +35,10 @@ if env['TARGET_ISA'] == 'arm': # Scons bug id: 2006 M5 Bug id: 308 Dir('isa/formats') Source('faults.cc') + Source('insts/branch.cc') + Source('insts/mem.cc') + Source('insts/pred_inst.cc') + Source('insts/static_inst.cc') Source('pagetable.cc') Source('regfile/regfile.cc') Source('tlb.cc') |