diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:23 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:23 -0800 |
commit | 134cc3d48dc389aecbe6bebe27482e5e378eb692 (patch) | |
tree | 13589ed946a9f5d7192a285ae78a11b3bea3916e /src/mem/ruby/system/RubySystem.py | |
parent | 3a835c7cbb481808a46a0491cf23b29378c0f866 (diff) | |
download | gem5-134cc3d48dc389aecbe6bebe27482e5e378eb692.tar.xz |
ruby: convert to M5 MemorySize
Converted both ruby caches and directory memory to use the M5 MemorySize python
type.
Diffstat (limited to 'src/mem/ruby/system/RubySystem.py')
-rw-r--r-- | src/mem/ruby/system/RubySystem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/system/RubySystem.py b/src/mem/ruby/system/RubySystem.py index d53271e45..3b079f9c0 100644 --- a/src/mem/ruby/system/RubySystem.py +++ b/src/mem/ruby/system/RubySystem.py @@ -9,7 +9,7 @@ class RubySystem(SimObject): clock = Param.Clock('1GHz', "") block_size_bytes = Param.Int(64, "default cache block size; must be a power of two"); - mem_size_mb = Param.Int(""); + mem_size = Param.MemorySize("total memory size of the system"); network = Param.RubyNetwork("") debug = Param.RubyDebug("the default debug object") profiler = Param.RubyProfiler(""); |