summaryrefslogtreecommitdiff
path: root/configs/example/se.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/example/se.py')
-rw-r--r--configs/example/se.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/configs/example/se.py b/configs/example/se.py
index d4f3e2dd9..d390fbad0 100644
--- a/configs/example/se.py
+++ b/configs/example/se.py
@@ -231,9 +231,10 @@ if options.ruby:
# Set the option for physmem so that it is not allocated any space
system.physmem = MemClass(range=AddrRange(options.mem_size),
null = True)
-
options.use_map = True
- Ruby.create_system(options, system)
+
+ system.piobus = NoncoherentBus()
+ Ruby.create_system(options, system, system.piobus)
assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))
for i in xrange(np):