Bridge.py revision 2568
1from m5 import * 2from MemObject import MemObject 3 4class Bridge(MemObject): 5 type = 'Bridge' 6 queue_size_a = Param.Int(16, "The number of requests to buffer") 7 queue_size_b = Param.Int(16, "The number of requests to buffer") 8 delay = Param.Latency('0ns', "The latency of this bridge") 9 write_ack = Param.Bool(False, "Should this bridge ack writes") 10