summaryrefslogtreecommitdiff
path: root/python/m5/objects/Bridge.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/Bridge.py')
-rw-r--r--python/m5/objects/Bridge.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/python/m5/objects/Bridge.py b/python/m5/objects/Bridge.py
deleted file mode 100644
index ada715ce9..000000000
--- a/python/m5/objects/Bridge.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from m5 import *
-from MemObject import MemObject
-
-class Bridge(MemObject):
- type = 'Bridge'
- queue_size_a = Param.Int(16, "The number of requests to buffer")
- queue_size_b = Param.Int(16, "The number of requests to buffer")
- delay = Param.Latency('0ns', "The latency of this bridge")
- write_ack = Param.Bool(False, "Should this bridge ack writes")