summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Bridge.py
blob: ada715ce9817b0e9b7d89de59c5b730a73d38b2e (plain)
1
2
3
4
5
6
7
8
9
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")