diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2007-05-15 18:06:35 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2007-05-15 18:06:35 -0400 |
commit | 0934f259d66c7adcf8446e84a2ce7db739794064 (patch) | |
tree | 9945e8007a3b7e8edfe1d425148d5bdb919e53f6 /configs/common | |
parent | f317227b4e5002b2c9d7c2e5068d317dcea5b0f9 (diff) | |
download | gem5-0934f259d66c7adcf8446e84a2ce7db739794064.tar.xz |
add an l2 cache option to se example config
configs/common/Options.py:
configs/example/fs.py:
move l2 cache option to Options.py
--HG--
extra : convert_revision : 5c0071c2827f7db6d56229d5276326364b50f0c8
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Options.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py index 69f48dc3b..4f2b317c0 100644 --- a/configs/common/Options.py +++ b/configs/common/Options.py @@ -1,4 +1,4 @@ -# Copyright (c) 2006 The Regents of The University of Michigan +# Copyright (c) 2006-2007 The Regents of The University of Michigan # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -31,6 +31,7 @@ parser.add_option("-d", "--detailed", action="store_true") parser.add_option("-t", "--timing", action="store_true") parser.add_option("-n", "--num_cpus", type="int", default=1) parser.add_option("--caches", action="store_true") +parser.add_option("--l2cache", action="store_true") # Run duration options parser.add_option("-m", "--maxtick", type="int") |