summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/SimConsole.py
blob: dfad18eb67c0429d41b98026c8c3ab10746eb401 (plain)
1
2
3
4
5
6
7
8
9
10
11
from m5.SimObject import SimObject
from m5.params import *
from m5.proxy import *

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