Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/newmem
[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
5 class SimConsole(SimObject):
6 type = 'SimConsole'
7 append_name = Param.Bool(True, "append name() to filename")
8 intr_control = Param.IntrControl(Parent.any, "interrupt controller")
9 port = Param.TcpPort(3456, "listen port")
10 number = Param.Int(0, "console number")
11 output = Param.String('console', "file to dump output to")