Get rid of the Trace ParamContext and give python direct
[gem5.git] / src / python / m5 / objects / SimConsole.py
1 from m5.SimObject import SimObject
2 from m5.params import *
3 from m5.proxy import *
4 class ConsoleListener(SimObject):
5 type = 'ConsoleListener'
6 port = Param.TcpPort(3456, "listen port")
7
8 class SimConsole(SimObject):
9 type = 'SimConsole'
10 append_name = Param.Bool(True, "append name() to filename")
11 intr_control = Param.IntrControl(Parent.any, "interrupt controller")
12 listener = Param.ConsoleListener("console listener")
13 number = Param.Int(0, "console number")
14 output = Param.String('console', "file to dump output to")