diff options
-rw-r--r-- | configs/learning_gem5/part3/ruby_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/learning_gem5/part3/ruby_test.py b/configs/learning_gem5/part3/ruby_test.py index a7ccbb576..9b14a7a8f 100644 --- a/configs/learning_gem5/part3/ruby_test.py +++ b/configs/learning_gem5/part3/ruby_test.py @@ -61,8 +61,8 @@ system.tester = RubyTester(checks_to_complete = 100, wakeup_frequency = 10, num_cpus = 2) -# Create a DDR3 memory controller and connect it to the membus -system.mem_ctrl = DDR3_1600_8x8() +# Create a simple memory controller and connect it to the membus +system.mem_ctrl = SimpleMemory(latency="50ns", bandwidth="0GB/s") system.mem_ctrl.range = system.mem_ranges[0] # Create the Ruby System |