diff options
Diffstat (limited to 'python/m5/objects/IntrControl.py')
-rw-r--r-- | python/m5/objects/IntrControl.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/m5/objects/IntrControl.py b/python/m5/objects/IntrControl.py new file mode 100644 index 000000000..66c82c182 --- /dev/null +++ b/python/m5/objects/IntrControl.py @@ -0,0 +1,4 @@ +from m5 import * +class IntrControl(SimObject): + type = 'IntrControl' + cpu = Param.BaseCPU(Parent.any, "the cpu") |