1from m5.SimObject import SimObject 2from m5.params import * 3 4class CPA(SimObject): 5 type = 'CPA' 6 cxx_header = "base/cp_annotate.hh" 7 8 enabled = Param.Bool(False, "Is Annotation enabled?") 9 user_apps = VectorParam.String([], "List of apps to get symbols for") 10