summaryrefslogtreecommitdiff
path: root/python/m5/objects/Ethernet.py
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-06-02 11:19:01 -0400
committerNathan Binkert <binkertn@umich.edu>2005-06-02 11:19:01 -0400
commit0ee75f27b8d7bdc803ca2b30b578de7c3231cb84 (patch)
treeabe4bd6e96628f8cbdaaae991efbd382b78e512a /python/m5/objects/Ethernet.py
parent960672719a465397f2276ace8beac368ba512302 (diff)
downloadgem5-0ee75f27b8d7bdc803ca2b30b578de7c3231cb84.tar.xz
Fix-up some config issues
python/m5/config.py: Make NetworkBandwidth and MemoryBandwidth work python/m5/objects/Ethernet.py: Make 1Gbps default for ethernet --HG-- extra : convert_revision : 59e62f7e62624356ae8d7304598617f60667f040
Diffstat (limited to 'python/m5/objects/Ethernet.py')
-rw-r--r--python/m5/objects/Ethernet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/Ethernet.py b/python/m5/objects/Ethernet.py
index c89505477..61386a08d 100644
--- a/python/m5/objects/Ethernet.py
+++ b/python/m5/objects/Ethernet.py
@@ -12,7 +12,7 @@ class EtherLink(SimObject):
int1 = Param.EtherInt("interface 1")
int2 = Param.EtherInt("interface 2")
delay = Param.Latency('0us', "packet transmit delay")
- speed = Param.NetworkBandwidth('100Mbps', "link speed")
+ speed = Param.NetworkBandwidth('1Gbps', "link speed")
dump = Param.EtherDump(NULL, "dump object")
class EtherBus(SimObject):