blob: 398ba47f9cf9243f431ee36f2e7dd9a31f76685a (
plain)
1
2
3
4
5
6
|
from m5.SimObject import SimObject
from m5.params import *
from m5.proxy import *
class IntrControl(SimObject):
type = 'IntrControl'
sys = Param.System(Parent.any, "the system we are part of")
|