summaryrefslogtreecommitdiff
path: root/python/m5/objects/Bus.py
blob: 26509d7d2d89ca75e8f4c0693c2aee65e962a005 (plain)
1
2
3
4
5
6
7
from m5 import *
from BaseHier import BaseHier

class Bus(BaseHier):
    type = 'Bus'
    clock = Param.Clock("bus frequency")
    width = Param.Int("bus width in bytes")