summaryrefslogtreecommitdiff
path: root/objects/Root.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/Root.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/Root.mpy')
-rw-r--r--objects/Root.mpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/objects/Root.mpy b/objects/Root.mpy
index 5806ec826..b21396e36 100644
--- a/objects/Root.mpy
+++ b/objects/Root.mpy
@@ -7,5 +7,5 @@ simobj Root(SimObject):
config_output_file = Param.String('m5config.out',
"file to dump simulator config to")
full_system = Param.Bool("Full system simulation?")
- hier = HierParams(do_data = false, do_events = true)
+ hier = HierParams(do_data = False, do_events = True)
checkpoint = Param.String('', "Checkpoint file")