Platform.py revision 3102
1from m5.SimObject import SimObject
2from m5.params import *
3from m5.proxy import *
4class Platform(SimObject):
5    type = 'Platform'
6    abstract = True
7    intrctrl = Param.IntrControl(Parent.any, "interrupt controller")
8