summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/SimConsole.py
blob: 9e1452c6d31369fd225948122ad46474fe2b81a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from m5.config import *
class ConsoleListener(SimObject):
    type = 'ConsoleListener'
    port = Param.TcpPort(3456, "listen port")

class SimConsole(SimObject):
    type = 'SimConsole'
    append_name = Param.Bool(True, "append name() to filename")
    intr_control = Param.IntrControl(Parent.any, "interrupt controller")
    listener = Param.ConsoleListener("console listener")
    number = Param.Int(0, "console number")
    output = Param.String('console', "file to dump output to")