diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2012-10-02 14:35:45 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2012-10-02 14:35:45 -0500 |
commit | 4488379244cdf3c211e76dbf3b4278347f639039 (patch) | |
tree | d8ae21ee6a35e60c0856d91479e199126f4ba5ac /configs/ruby | |
parent | b370f6a7b2fb9a4cd8e38b1db12845d401d3adf3 (diff) | |
download | gem5-4488379244cdf3c211e76dbf3b4278347f639039.tar.xz |
ruby: changes to simple network
This patch makes the Switch structure inherit from BasicRouter, as is
done in two other networks.
Diffstat (limited to 'configs/ruby')
-rw-r--r-- | configs/ruby/Ruby.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py index a8fc94d3d..bcb939165 100644 --- a/configs/ruby/Ruby.py +++ b/configs/ruby/Ruby.py @@ -135,7 +135,7 @@ def create_system(options, system, piobus = None, dma_ports = []): class NetworkClass(SimpleNetwork): pass class IntLinkClass(SimpleIntLink): pass class ExtLinkClass(SimpleExtLink): pass - class RouterClass(BasicRouter): pass + class RouterClass(Switch): pass # # Important: the topology must be instantiated before the network and after |