summaryrefslogtreecommitdiff
path: root/python/m5/objects/SimConsole.mpy
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/SimConsole.mpy')
-rw-r--r--python/m5/objects/SimConsole.mpy11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/m5/objects/SimConsole.mpy b/python/m5/objects/SimConsole.mpy
new file mode 100644
index 000000000..fb74f1775
--- /dev/null
+++ b/python/m5/objects/SimConsole.mpy
@@ -0,0 +1,11 @@
+simobj ConsoleListener(SimObject):
+ type = 'ConsoleListener'
+ port = Param.UInt16(3456, "listen port")
+
+simobj SimConsole(SimObject):
+ type = 'SimConsole'
+ append_name = Param.Bool(True, "append name() to filename")
+ intr_control = Param.IntrControl(Super, "interrupt controller")
+ listener = Param.ConsoleListener("console listener")
+ number = Param.Int(0, "console number")
+ output = Param.String('console', "file to dump output to")