From 446ad498aafef8ac9daa6adb4d12bdf08a7c69a2 Mon Sep 17 00:00:00 2001 From: slmnemo Date: Wed, 1 Jun 2022 01:04:49 +0000 Subject: [PATCH] Fixed double assignment on LSUBurstType --- pipelined/src/lsu/busfsm.sv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pipelined/src/lsu/busfsm.sv b/pipelined/src/lsu/busfsm.sv index 5832fc30..c8a0ecf1 100644 --- a/pipelined/src/lsu/busfsm.sv +++ b/pipelined/src/lsu/busfsm.sv @@ -125,10 +125,10 @@ module busfsm #(parameter integer WordCountThreshold, always_comb begin case(WordCountThreshold) - 4: LSUBurstType = 3'b010; // WRAP4 - 8: LSUBurstType = 3'b100; // WRAP8 - 16: LSUBurstType = 3'b110; // WRAP16 - default: LSUBurstType = 3'b000; // No Burst + 4: LocalBurstType = 3'b010; // WRAP4 + 8: LocalBurstType = 3'b100; // WRAP8 + 16: LocalBurstType = 3'b110; // WRAP16 + default: LocalBurstType = 3'b000; // No Burst endcase // This block might be better in the FSM. WordCountThreshold is WordsPerLine end