Removed WordCountFlag

This commit is contained in:
David Harris 2022-08-25 18:21:18 -07:00
parent d118fcbde8
commit 543fbd1fa9

View File

@ -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;