From 310b454fa1cedff95bb96e1f02debc802c8074c4 Mon Sep 17 00:00:00 2001 From: Ross Thompson Date: Wed, 21 Jul 2021 14:40:14 -0500 Subject: [PATCH] Added comment about better muxing. --- wally-pipelined/src/cache/dcache.sv | 1 + 1 file changed, 1 insertion(+) diff --git a/wally-pipelined/src/cache/dcache.sv b/wally-pipelined/src/cache/dcache.sv index 51f5dc20..e1db7d16 100644 --- a/wally-pipelined/src/cache/dcache.sv +++ b/wally-pipelined/src/cache/dcache.sv @@ -305,6 +305,7 @@ module dcache // Convert the Read data bus ReadDataSelectWay into sets of XLEN so we can // easily build a variable input mux. + // *** consider using a limited range shift to do this final muxing. generate for (index = 0; index < WORDSPERLINE; index++) begin assign ReadDataBlockSetsM[index] = ReadDataBlockM[((index+1)*`XLEN)-1: (index*`XLEN)];