From 6630c04633f0ef3ceaaf21127234e8609d7e9e4c Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 30 Sep 2020 10:19:00 +0100 Subject: [PATCH] halve the number of icache lines for now --- src/soc/experiment/icache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/icache.py b/src/soc/experiment/icache.py index 03c3f4a3..9481eb7f 100644 --- a/src/soc/experiment/icache.py +++ b/src/soc/experiment/icache.py @@ -60,7 +60,7 @@ LINE_SIZE = 64 # ROW_SIZE is the width in bytes of the BRAM (based on WB, so 64-bits) ROW_SIZE = WB_DATA_BITS // 8 # Number of lines in a set -NUM_LINES = 32 +NUM_LINES = 16 # Number of ways NUM_WAYS = 4 # L1 ITLB number of entries (direct mapped) -- 2.30.2