summaryrefslogtreecommitdiff
path: root/src/cpu/ozone
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2010-02-26 18:14:48 -0800
committerNathan Binkert <nate@binkert.org>2010-02-26 18:14:48 -0800
commitf0b4259e98773bee04cd0af5dda7bcfba5032589 (patch)
tree6507a2f53b7e645d7ab30fd43384afa4b6b98b48 /src/cpu/ozone
parentac106767c86e58af623c81ed04521ea40ad7b8a9 (diff)
downloadgem5-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/SConsopts8
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>' })
+