summaryrefslogtreecommitdiff
path: root/src/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/base')
-rw-r--r--src/base/CPA.py1
-rw-r--r--src/base/vnc/Vnc.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/base/CPA.py b/src/base/CPA.py
index c0beaedef..cbed29a37 100644
--- a/src/base/CPA.py
+++ b/src/base/CPA.py
@@ -3,6 +3,7 @@ from m5.params import *
class CPA(SimObject):
type = 'CPA'
+ cxx_header = "base/cp_annotate.hh"
enabled = Param.Bool(False, "Is Annotation enabled?")
user_apps = VectorParam.String([], "List of apps to get symbols for")
diff --git a/src/base/vnc/Vnc.py b/src/base/vnc/Vnc.py
index 4e8e18512..a7faefb41 100644
--- a/src/base/vnc/Vnc.py
+++ b/src/base/vnc/Vnc.py
@@ -40,9 +40,11 @@ from m5.params import *
class VncInput(SimObject):
type = 'VncInput'
+ cxx_header = "base/vnc/vncinput.hh"
frame_capture = Param.Bool(False, "capture changed frames to files")
class VncServer(VncInput):
type = 'VncServer'
+ cxx_header = "base/vnc/vncserver.hh"
port = Param.TcpPort(5900, "listen port")
number = Param.Int(0, "vnc client number")