diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:19 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:19 -0800 |
commit | 12daaed84a44920968adb6b16bd558561bd18801 (patch) | |
tree | 0f72b27373669de9b7c060b080ac4a4093b8cccc /configs | |
parent | ed814899541d65783e93a37ab320650c5075c72d (diff) | |
download | gem5-12daaed84a44920968adb6b16bd558561bd18801.tar.xz |
ruby: Added clock to ruby system
As a first step to migrate ruby to the M5 eventqueue, added a clock
variable to the ruby system.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/memtest-ruby.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/example/memtest-ruby.py b/configs/example/memtest-ruby.py index 8c7923512..844acefb4 100644 --- a/configs/example/memtest-ruby.py +++ b/configs/example/memtest-ruby.py @@ -158,7 +158,8 @@ network = SimpleNetwork(topology = makeCrossbar(l1_cntrl_nodes + \ mem_size_mb = sum([int(dir_cntrl.directory.size_mb) \ for dir_cntrl in dir_cntrl_nodes]) -system.ruby = RubySystem(network = network, +system.ruby = RubySystem(clock = '1GHz', + network = network, profiler = RubyProfiler(), tracer = RubyTracer(), debug = RubyDebug(), |