8*8交织器代码VHDL

时间:2016-02-07 04:57:15
【文件属性】:

文件名称:8*8交织器代码VHDL

文件大小:4KB

文件格式:TXT

更新时间:2016-02-07 04:57:15

交织器 VHDL

用VHDL编写的交织器代码,ram通过调用ip核实现,并且有testbench 部分代码: waddress_gen: process(wclk) begin if(wclk'event and wclk='1')then if(wenable='1')then if(startflg='0')then waddress<="000000"; startflg<='1'; elsif(waddress<"111111")then waddress<=waddress+"000001"; else waddress<="111111"; end if; end if; end if; end process;


网友评论

  • 我想问少的ram那部分程序应该怎么做。