summaryrefslogtreecommitdiff
path: root/objects/SimConsole.mpy
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-02-03 17:04:54 -0500
committerNathan Binkert <binkertn@umich.edu>2005-02-03 17:04:54 -0500
commit52403a5ddf1e02f53d0624254f41e27e3914df29 (patch)
tree8f3940b5cba764c2f9c2118b0ff3acd41c173597 /objects/SimConsole.mpy
parent936ad584022be7a4e89292c708cc624841198f62 (diff)
downloadgem5-52403a5ddf1e02f53d0624254f41e27e3914df29.tar.xz
get rid of defined and just access the env dict directly
get rid of the alias for true to True and false to False to keep consistent python syntax. util/stats/info.py: Fix typo --HG-- extra : convert_revision : e69588a8de52424e043315e70008ca3a3ede7d5b
Diffstat (limited to 'objects/SimConsole.mpy')
-rw-r--r--objects/SimConsole.mpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/objects/SimConsole.mpy b/objects/SimConsole.mpy
index 1231e81dc..ab88db8c6 100644
--- a/objects/SimConsole.mpy
+++ b/objects/SimConsole.mpy
@@ -4,7 +4,7 @@ simobj ConsoleListener(SimObject):
simobj SimConsole(SimObject):
type = 'SimConsole'
- append_name = Param.Bool(true, "append name() to filename")
+ append_name = Param.Bool(True, "append name() to filename")
intr_control = Param.IntrControl(Super, "interrupt controller")
listener = Param.ConsoleListener("console listener")
number = Param.Int(0, "console number")