diff options
Diffstat (limited to 'python/m5/objects/FUPool.py')
-rw-r--r-- | python/m5/objects/FUPool.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/m5/objects/FUPool.py b/python/m5/objects/FUPool.py new file mode 100644 index 000000000..5eecfd12f --- /dev/null +++ b/python/m5/objects/FUPool.py @@ -0,0 +1,8 @@ +from m5 import * +from FullCPU import OpType +from FullCPU import OpDesc +from FullCPU import FUDesc + +class FUPool(SimObject): + type = 'FUPool' + FUList = VectorParam.FUDesc("list of FU's for this pool") |