6 lines
155 B
Python
6 lines
155 B
Python
|
from m5 import *
|
||
|
class Platform(SimObject):
|
||
|
type = 'Platform'
|
||
|
abstract = True
|
||
|
intrctrl = Param.IntrControl(Parent.any, "interrupt controller")
|