2009-02-27 01:29:17 +01:00
|
|
|
from m5.SimObject import SimObject
|
|
|
|
from m5.params import *
|
|
|
|
|
|
|
|
class CPA(SimObject):
|
|
|
|
type = 'CPA'
|
2012-11-02 17:32:01 +01:00
|
|
|
cxx_header = "base/cp_annotate.hh"
|
2009-02-27 01:29:17 +01:00
|
|
|
|
|
|
|
enabled = Param.Bool(False, "Is Annotation enabled?")
|
|
|
|
user_apps = VectorParam.String([], "List of apps to get symbols for")
|