diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2012-04-06 13:47:08 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2012-04-06 13:47:08 -0700 |
commit | 8c1494112f7b0a2f8c92373da70c2daf880c56b1 (patch) | |
tree | 82a1b0a111457079f756e731dca689e03ec99152 /configs | |
parent | a5287efc58ed783b6c03d0fcf7e3f3499533206a (diff) | |
download | gem5-8c1494112f7b0a2f8c92373da70c2daf880c56b1.tar.xz |
ruby: set SimpleTiming as the default cpu
Diffstat (limited to 'configs')
-rw-r--r-- | configs/ruby/Ruby.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py index 046797a3c..87939fac8 100644 --- a/configs/ruby/Ruby.py +++ b/configs/ruby/Ruby.py @@ -45,6 +45,9 @@ from m5.objects import * from m5.defines import buildEnv def define_options(parser): + # By default, ruby uses the simple timing cpu + parser.set_defaults(cpu_type="timing") + # ruby network options parser.add_option("--topology", type="string", default="Crossbar", help="check src/mem/ruby/network/topologies for complete set") |