mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-10 17:28:40 -08:00
lfsr: Add input and output enable parameters to LFSR module to remove dead code
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
@@ -165,7 +165,9 @@ taxi_lfsr #(
|
||||
.LFSR_GALOIS(LFSR_GALOIS),
|
||||
.LFSR_FEED_FORWARD('1),
|
||||
.REVERSE(REVERSE),
|
||||
.DATA_W(DATA_W)
|
||||
.DATA_W(DATA_W),
|
||||
.DATA_IN_EN(1'b1),
|
||||
.DATA_OUT_EN(1'b1)
|
||||
)
|
||||
lfsr_inst (
|
||||
.data_in(INVERT ? ~data_in : data_in),
|
||||
|
||||
Reference in New Issue
Block a user