diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-02-23 12:54:07 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-02-23 12:54:07 +0000 |
commit | c0c3a3f491aa02d237cb0d918c962572b547634a (patch) | |
tree | e7a40ef9dab946f8d9bf5287b04d796c4330e05f /src/python/m5/objects/SimConsole.py | |
parent | f8ffc84d0b4fc908487a0af200abcc3cfce56633 (diff) | |
parent | a5b73a6e332c3f27ce29346229e1f91c04f53cf9 (diff) | |
download | gem5-c0c3a3f491aa02d237cb0d918c962572b547634a.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem
into ahchoo.blinky.homelinux.org:/home/gblack/m5/newmem
--HG--
extra : convert_revision : e0eb0240848698496bd55093a313eb2e0f512ebc
Diffstat (limited to 'src/python/m5/objects/SimConsole.py')
-rw-r--r-- | src/python/m5/objects/SimConsole.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/python/m5/objects/SimConsole.py b/src/python/m5/objects/SimConsole.py index bdd7f246d..dfad18eb6 100644 --- a/src/python/m5/objects/SimConsole.py +++ b/src/python/m5/objects/SimConsole.py @@ -1,14 +1,11 @@ from m5.SimObject import SimObject from m5.params import * from m5.proxy 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") + port = Param.TcpPort(3456, "listen port") number = Param.Int(0, "console number") output = Param.String('console', "file to dump output to") |