From 08124b917f371c30f93d1264fbe9ae590ddfb41e Mon Sep 17 00:00:00 2001 From: David Harris Date: Sat, 28 Jan 2023 11:00:05 -0800 Subject: [PATCH] Comment cleanup in subcachelineread --- pipelined/src/cache/subcachelineread.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipelined/src/cache/subcachelineread.sv b/pipelined/src/cache/subcachelineread.sv index 346ec710..49061807 100644 --- a/pipelined/src/cache/subcachelineread.sv +++ b/pipelined/src/cache/subcachelineread.sv @@ -30,8 +30,8 @@ `include "wally-config.vh" module subcachelineread #(parameter LINELEN, WORDLEN, - parameter MUXINTERVAL // The number of bits between mux. Set to 16 for I$ to support compressed. Set to `LLEN for D$ -)( + parameter MUXINTERVAL )( // The number of bits between mux. Set to 16 for I$ to support compressed. Set to `LLEN for D$ + input logic [$clog2(LINELEN/8) - $clog2(MUXINTERVAL/8) - 1 : 0] PAdr, // Physical address input logic [LINELEN-1:0] ReadDataLine,// Read data of the whole cacheline output logic [WORDLEN-1:0] ReadDataWord // read data of selected word.