1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00

Fixing cdc linter error

This commit is contained in:
aolofsson 2022-06-23 17:50:14 -04:00
parent 19f278ddb3
commit 354148d176

View File

@ -29,6 +29,15 @@ module oh_fifo_cdc
output empty // fifo is empty
);
// wire declarations
wire wr_en;
wire rd_en;
wire rd_empty;
wire wr_almost_full;
wire wr_full;
wire wr_prog_full;
wire nreset_out;
// FIFO control logic
assign wr_en = valid_in;
assign rd_en = ~empty & ready_in;
@ -62,8 +71,8 @@ module oh_fifo_cdc
.vddio (1'b1),
.vdd (1'b0),
.vss (1'b0),
.bist_en (bist_en),
.bist_we (bist_we),
.bist_en (1'b0),
.bist_we (1'b0),
.bist_wem ({(N){1'b0}}),
.bist_addr ({(AW){1'b0}}),
.bist_din ({(N){1'b0}}),