diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 05:35:43 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 05:35:43 -0500 |
commit | c5dcd152f264a837f50d39f98d0f4f81478e3553 (patch) | |
tree | 62a6b09123a49ca186c25395f849d3b3aa2aa9d9 /cpu/simple | |
parent | f56d42c53dbea1017d4fdd6b9f4ff9e976538246 (diff) | |
download | gem5-c5dcd152f264a837f50d39f98d0f4f81478e3553.tar.xz |
Changed targetarch to just arch.
SConscript:
Changed all of the "targetarch" files to be "arch" files
arch/SConscript:
Added all of the remaining targetarch files to isa_switch_hdrs
--HG--
extra : convert_revision : a37d18349e27cf92dce12814f21944daa7fe9480
Diffstat (limited to 'cpu/simple')
-rw-r--r-- | cpu/simple/cpu.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc index 4693c78c9..02ecbb12c 100644 --- a/cpu/simple/cpu.cc +++ b/cpu/simple/cpu.cc @@ -67,9 +67,9 @@ #include "mem/functional/memory_control.hh" #include "mem/functional/physical.hh" #include "sim/system.hh" -#include "targetarch/alpha_memory.hh" -#include "targetarch/stacktrace.hh" -#include "targetarch/vtophys.hh" +#include "arch/alpha_memory.hh" +#include "arch/stacktrace.hh" +#include "arch/vtophys.hh" #else // !FULL_SYSTEM #include "mem/functional/functional.hh" #endif // FULL_SYSTEM |