URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [orp/] [orp_soc/] [rtl/] [verilog/] [audio/] [fifo_empty_16.v] - Rev 793
Go to most recent revision | Compare with Previous | Blame | View Log
// synopsys translate_off `include "timescale.v" // synopsys translate_on module fifo_empty_16 ( DIN, WR_EN, WR_CLK, RD_EN, RD_CLK, AINIT, DOUT, FULL, EMPTY, ALMOST_FULL, ALMOST_EMPTY); input [15 : 0] DIN; input WR_EN; input WR_CLK; input RD_EN; input RD_CLK; input AINIT; output [15 : 0] DOUT; output FULL; output EMPTY; output ALMOST_FULL; output ALMOST_EMPTY; assign DOUT = DIN; assign FULL = 1'b0; assign EMPTY = 1'b0; assign ALMOST_FULL = 1'b0; assign ALMOST_EMPTY = 1'b0; endmodule
Go to most recent revision | Compare with Previous | Blame | View Log