diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-02-03 17:04:54 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-02-03 17:04:54 -0500 |
commit | 52403a5ddf1e02f53d0624254f41e27e3914df29 (patch) | |
tree | 8f3940b5cba764c2f9c2118b0ff3acd41c173597 /objects/Root.mpy | |
parent | 936ad584022be7a4e89292c708cc624841198f62 (diff) | |
download | gem5-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.mpy | 2 |
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") |