Controller.py revision 6876:a658c315512c
1from m5.params import *
2from m5.SimObject import SimObject
3
4class RubyController(SimObject):
5    type = 'RubyController'
6    cxx_class = 'AbstractController'
7    abstract = True
8    version = Param.Int("")
9    transitions_per_cycle = \
10        Param.Int(32, "no. of  SLICC state machine transitions per cycle")
11    buffer_size = Param.Int(0, "max buffer size 0 means infinite")
12    recycle_latency = Param.Int(10, "")
13    number_of_TBEs = Param.Int(256, "")
14