mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
Fixing broken empty signal
- Snuck in during the wip changes
This commit is contained in:
parent
b741fcb3a9
commit
69a0dd2d3d
@ -32,7 +32,6 @@ module oh_fifo_cdc
|
|||||||
// wire declarations
|
// wire declarations
|
||||||
wire wr_en;
|
wire wr_en;
|
||||||
wire rd_en;
|
wire rd_en;
|
||||||
wire rd_empty;
|
|
||||||
wire wr_almost_full;
|
wire wr_almost_full;
|
||||||
wire wr_full;
|
wire wr_full;
|
||||||
wire wr_prog_full;
|
wire wr_prog_full;
|
||||||
@ -79,12 +78,12 @@ module oh_fifo_cdc
|
|||||||
.bist_dout (),
|
.bist_dout (),
|
||||||
.wr_count (),
|
.wr_count (),
|
||||||
.rd_count (),
|
.rd_count (),
|
||||||
|
.rd_empty (empty),
|
||||||
/*AUTOINST*/
|
/*AUTOINST*/
|
||||||
// Outputs
|
// Outputs
|
||||||
.wr_full (wr_full),
|
.wr_full (wr_full),
|
||||||
.wr_almost_full (wr_almost_full),
|
.wr_almost_full (wr_almost_full),
|
||||||
.wr_prog_full (wr_prog_full),
|
.wr_prog_full (wr_prog_full),
|
||||||
.rd_empty (rd_empty),
|
|
||||||
// Inputs
|
// Inputs
|
||||||
.nreset (nreset),
|
.nreset (nreset),
|
||||||
.wr_en (wr_en),
|
.wr_en (wr_en),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user