summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Bus.py
blob: 6710111e51f5d32f1215e28113ce48fe3c40a257 (plain)
1
2
3
4
5
6
7
8
9
10
from m5.params import *
from MemObject import MemObject

class Bus(MemObject):
    type = 'Bus'
    port = VectorPort("vector port for connecting devices")
    default = Port("Default port for requests that aren't handeled by a device.")
    bus_id = Param.Int(0, "blah")
    clock = Param.Clock("1GHz", "bus clock speed")
    width = Param.Int(64, "bus width (bytes)")