From 830c907065cf0341012edd27527f60720f93f338 Mon Sep 17 00:00:00 2001 From: Manuel Eggimann Date: Mon, 14 Jun 2021 12:09:31 +0200 Subject: [PATCH] Fix port list copy paste bug (#120) The introduction of a new port to an existing module is not backward compatible and thus breaks every other repository that uses the `spill_registers` from common cells. I guess the intention was to not introduce this port and have the spill_register module act as just a wrapper. --- src/spill_register.sv | 1 - 1 file changed, 1 deletion(-) diff --git a/src/spill_register.sv b/src/spill_register.sv index 4fc0918b..80ff37f1 100644 --- a/src/spill_register.sv +++ b/src/spill_register.sv @@ -21,7 +21,6 @@ module spill_register #( input logic clk_i , input logic rst_ni , input logic valid_i , - input logic flush_i , output logic ready_o , input T data_i , output logic valid_o ,