blob: c0beaedeffcad21d69bb1dd913e0b6d04232a0b3 (
plain)
1
2
3
4
5
6
7
8
|
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")
|