diff options
author | Nathan Binkert <nate@binkert.org> | 2009-07-06 15:49:47 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-07-06 15:49:47 -0700 |
commit | da704f52e55dd2649e53bf233f948c897727f13d (patch) | |
tree | 150514b6e67a108c56ad771adeb908713b06df65 /tests/configs/simple-atomic-ruby.py | |
parent | a7904e2cf341d5452c5622adfcbdcd268d4ab7d1 (diff) | |
download | gem5-da704f52e55dd2649e53bf233f948c897727f13d.tar.xz |
ruby: Fix RubyMemory to work with the newer ruby.
Diffstat (limited to 'tests/configs/simple-atomic-ruby.py')
-rw-r--r-- | tests/configs/simple-atomic-ruby.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/configs/simple-atomic-ruby.py b/tests/configs/simple-atomic-ruby.py index 95f922ddc..c9c61788c 100644 --- a/tests/configs/simple-atomic-ruby.py +++ b/tests/configs/simple-atomic-ruby.py @@ -29,8 +29,11 @@ import m5 from m5.objects import * +import ruby_config +ruby_memory = ruby_config.generate("MI_example-homogeneous.rb", 1) + system = System(cpu = AtomicSimpleCPU(cpu_id=0), - physmem = RubyMemory(), + physmem = ruby_memory, membus = Bus()) system.physmem.port = system.membus.port system.cpu.connectMemPorts(system.membus) |