⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 design_top.v

📁 XILINX的FPGA实现的双口ram源码
💻 V
字号:
module design_top (
	din,
	wr_en,
	wr_clk,
	rd_en,
	rd_clk,
	ainit,
	dout,
	full,
	empty,
	almost_full,
	almost_empty,
	wr_count,
	rd_count,
	rd_ack,
	rd_err,
	wr_ack,
	wr_err);

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;
output [1 : 0] wr_count;
output [1 : 0] rd_count;
output rd_ack;
output rd_err;
output wr_ack;
output wr_err;

	my_async_fifo u0(
		.din(din),
		.wr_en(wr_en),
		.wr_clk(wr_clk),
		.rd_en(rd_en),
		.rd_clk(rd_clk),
		.ainit(ainit),
		.dout(dout),
		.full(full),
		.empty(empty),
		.almost_full(almost_full),
		.almost_empty(almost_empty),
		.wr_count(wr_count),
		.rd_count(rd_count),
		.rd_ack(rd_ack),
		.rd_err(rd_err),
		.wr_ack(wr_ack),
		.wr_err(wr_err));
endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -