diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-03-06 21:53:57 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-03-06 21:53:57 -0600 |
commit | c0618198908b592ff0c165b671cb5d8d785d83ca (patch) | |
tree | 96b98dbf6262a9f417c7d53ef59c09ff56018e2c /tests/configs/simple-timing-ruby.py | |
parent | e8802fa127f5a446e708eb9f7ce8509e850bf699 (diff) | |
download | gem5-c0618198908b592ff0c165b671cb5d8d785d83ca.tar.xz |
ruby: remove the functional copy of memory in se mode
This patch removes the functional copy of the memory that was maintained in
the se mode. Now ruby itself will provide the data.
Diffstat (limited to 'tests/configs/simple-timing-ruby.py')
-rw-r--r-- | tests/configs/simple-timing-ruby.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/configs/simple-timing-ruby.py b/tests/configs/simple-timing-ruby.py index 86869452a..41b4fdb1f 100644 --- a/tests/configs/simple-timing-ruby.py +++ b/tests/configs/simple-timing-ruby.py @@ -67,7 +67,7 @@ options.l3_assoc=2 options.num_cpus = 1 cpu = TimingSimpleCPU(cpu_id=0) -system = System(cpu = cpu, physmem = SimpleMemory()) +system = System(cpu = cpu, physmem = SimpleMemory(null = True)) Ruby.create_system(options, system) |