diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-04-06 17:58:57 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-04-06 17:58:57 -0400 |
commit | 1ee77fb23e12e6d75b4bc7395a244e9f19c7d0db (patch) | |
tree | f47f7ad1106d8ba15bfaa511ecb0fb1069ba2f0e /python/m5 | |
parent | 060bb32f2779be5054d8d53479f37cdba52a1996 (diff) | |
download | gem5-1ee77fb23e12e6d75b4bc7395a244e9f19c7d0db.tar.xz |
formatting
--HG--
extra : convert_revision : 0b041556222c3892ee72e4d56c8acdda72bfc303
Diffstat (limited to 'python/m5')
-rw-r--r-- | python/m5/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py index e744b9ffb..30ce340f6 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -1145,7 +1145,7 @@ class Tick(CheckedInt): cppname = 'Tick'; size = 64; unsigned = True class TcpPort(CheckedInt): cppname = 'uint16_t'; size = 16; unsigned = True class UdpPort(CheckedInt): cppname = 'uint16_t'; size = 16; unsigned = True -class Percent(CheckedInt): cppname = 'int'; min = 0; max = 100 +class Percent(CheckedInt): cppname = 'int'; min = 0; max = 100 class MemorySize(CheckedInt): cppname = 'uint64_t' |