From dbdf2f14ae6b586efd31b73aa4548a38ecee263f Mon Sep 17 00:00:00 2001 From: Ron Dreslinski Date: Wed, 15 Nov 2006 18:22:15 -0500 Subject: Add L2 cache option to fs.py --l2cache --HG-- extra : convert_revision : 5bdd1129c3b23e91d441e7b83f6a824ef7740fab --- configs/common/Caches.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configs/common') 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 + -- cgit v1.2.3