FIFO的HDL代码

bit_space 52 0 NONE 2019-06-05 01:06:29

moduleFIFO2(clock,reset,data,wrreq,rdreq,q,full,empty);parameterN=8;parameterM=16;inputclock;inputreset;//低有效input[N-1:0]data;inputwrreq;inputrdreq;output[N-1:0]q;outputfull;//FIFO为满时,输出高电平,不可写outputempty;//FIFO为空时,输出高电平,不可读regfull;regempty;reg[N-1:0]q;

用户评论
请输入评论内容
评分:
暂无评论