summaryrefslogtreecommitdiff
path: root/objects/BaseSystem.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/BaseSystem.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/BaseSystem.mpy')
-rw-r--r--objects/BaseSystem.mpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/objects/BaseSystem.mpy b/objects/BaseSystem.mpy
index 460bce736..1cbdf4e99 100644
--- a/objects/BaseSystem.mpy
+++ b/objects/BaseSystem.mpy
@@ -11,5 +11,5 @@ simobj BaseSystem(SimObject):
boot_osflags = Param.String("a", "boot flags to pass to the kernel")
system_type = Param.UInt64("Type of system we are emulating")
system_rev = Param.UInt64("Revision of system we are emulating")
- bin = Param.Bool(false, "is this system binned")
+ bin = Param.Bool(False, "is this system binned")
binned_fns = VectorParam.String([], "functions broken down and binned")