diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-16 14:41:56 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-16 14:41:56 -0500 |
commit | 14ebaa1eccff4032d59147783e98e07b81b5f1ae (patch) | |
tree | 4c738d02f4876cb394d0f9510d08380a6f5384c1 /configs/common/Caches.py | |
parent | ac2c7967f69e3ffd29a1ed04a15838073dc060de (diff) | |
parent | dbdf2f14ae6b586efd31b73aa4548a38ecee263f (diff) | |
download | gem5-14ebaa1eccff4032d59147783e98e07b81b5f1ae.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem/
into zower.eecs.umich.edu:/home/gblack/m5/newmemmemops
--HG--
extra : convert_revision : c49b760eac758dbde30867cb638fcb3b790f4721
Diffstat (limited to 'configs/common/Caches.py')
-rw-r--r-- | configs/common/Caches.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configs/common/Caches.py b/configs/common/Caches.py index d86fba246..4692ef537 100644 --- a/configs/common/Caches.py +++ b/configs/common/Caches.py @@ -37,3 +37,10 @@ class L1Cache(BaseCache): tgts_per_mshr = 5 protocol = CoherenceProtocol(protocol='moesi') +class L2Cache(BaseCache): + assoc = 8 + block_size = 64 + latency = 10 + mshrs = 20 + tgts_per_mshr = 12 + |