Root.py revision 4167
1from m5.SimObject import SimObject
2from m5.params import *
3
4class Root(SimObject):
5    type = 'Root'
6    dummy = Param.Int(0, "We don't support objects without params")
7