diff options
author | Nathan Binkert <nate@binkert.org> | 2010-02-26 18:14:48 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-02-26 18:14:48 -0800 |
commit | f0b4259e98773bee04cd0af5dda7bcfba5032589 (patch) | |
tree | 6507a2f53b7e645d7ab30fd43384afa4b6b98b48 /src/cpu/ozone | |
parent | ac106767c86e58af623c81ed04521ea40ad7b8a9 (diff) | |
download | gem5-f0b4259e98773bee04cd0af5dda7bcfba5032589.tar.xz |
cpu_models: get rid of cpu_models.py and move the stuff into SCons
Diffstat (limited to 'src/cpu/ozone')
-rw-r--r-- | src/cpu/ozone/SConsopts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cpu/ozone/SConsopts b/src/cpu/ozone/SConsopts index 341644dcd..adfda63a9 100644 --- a/src/cpu/ozone/SConsopts +++ b/src/cpu/ozone/SConsopts @@ -30,4 +30,10 @@ Import('*') -all_cpu_list.append('OzoneCPU') +CpuModel('OzoneSimpleCPU', 'ozone_simple_exec.cc', + '#include "cpu/ozone/dyn_inst.hh"', + { 'CPU_exec_context': 'OzoneDynInst<SimpleImpl>' }) +CpuModel('OzoneCPU', 'ozone_exec.cc', + '#include "cpu/ozone/dyn_inst.hh"', + { 'CPU_exec_context': 'OzoneDynInst<OzoneImpl>' }) + |