diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2014-03-20 09:14:14 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2014-03-20 09:14:14 -0500 |
commit | b5cc4c760478240bf8c5f7de977bf2b56fd8dfd4 (patch) | |
tree | f4d9bf0eee60c59b294f8e25504e67e58bfdd1f6 /configs/example/se.py | |
parent | f2059f8399b22ecc544413a0e9d5a13a6f965411 (diff) | |
download | gem5-b5cc4c760478240bf8c5f7de977bf2b56fd8dfd4.tar.xz |
config: ruby: rename _cpu_ruby_ports to _cpu_ports
Diffstat (limited to 'configs/example/se.py')
-rw-r--r-- | configs/example/se.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/se.py b/configs/example/se.py index 34a3f045e..92a950319 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -233,10 +233,10 @@ if options.ruby: null = True) options.use_map = True Ruby.create_system(options, system) - assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) + assert(options.num_cpus == len(system.ruby._cpu_ports)) for i in xrange(np): - ruby_port = system.ruby._cpu_ruby_ports[i] + ruby_port = system.ruby._cpu_ports[i] # Create the interrupt controller and connect its ports to Ruby # Note that the interrupt controller is always present but only |