From 543fbd1fa9d1c1fe93d40b728bd7ebe68a62a7bd Mon Sep 17 00:00:00 2001 From: David Harris Date: Thu, 25 Aug 2022 18:21:18 -0700 Subject: [PATCH] Removed WordCountFlag --- pipelined/src/lsu/busfsm.sv | 3 --- 1 file changed, 3 deletions(-) diff --git a/pipelined/src/lsu/busfsm.sv b/pipelined/src/lsu/busfsm.sv index ee121feb3..1b0832aaa 100644 --- a/pipelined/src/lsu/busfsm.sv +++ b/pipelined/src/lsu/busfsm.sv @@ -54,7 +54,6 @@ module busfsm #(parameter integer LOGWPL) logic UnCachedBusRead; logic UnCachedBusWrite; - logic WordCountFlag; logic [2:0] LocalBurstType; @@ -69,8 +68,6 @@ module busfsm #(parameter integer LOGWPL) (* mark_debug = "true" *) busstatetype BusCurrState, BusNextState; - assign WordCountFlag = 1; // Detect when we are waiting on the final access. - always_ff @(posedge clk) if (reset) BusCurrState <= #1 STATE_BUS_READY; else BusCurrState <= #1 BusNextState;