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