FUPool.py revision 2292
1from m5 import *
2from FullCPU import OpType
3from FullCPU import OpDesc
4from FullCPU import FUDesc
5
6class FUPool(SimObject):
7    type = 'FUPool'
8    FUList = VectorParam.FUDesc("list of FU's for this pool")
9