and resulting recursive import trickiness. --HG-- extra : convert_revision : 1ea93861eb8d260c9f3920dda0b8106db3e03705
7 lines
184 B
Python
7 lines
184 B
Python
from m5.SimObject import SimObject
|
|
from m5.params import *
|
|
from m5.proxy import *
|
|
class IntrControl(SimObject):
|
|
type = 'IntrControl'
|
|
cpu = Param.BaseCPU(Parent.any, "the cpu")
|