git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1819 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
9 lines
232 B
Python
9 lines
232 B
Python
from m5.SimObject import SimObject
|
|
from m5.params import *
|
|
|
|
class CPA(SimObject):
|
|
type = 'CPA'
|
|
|
|
enabled = Param.Bool(False, "Is Annotation enabled?")
|
|
user_apps = VectorParam.String([], "List of apps to get symbols for")
|