这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » FPGA » 如何把下面的程序改成可综合的

共1条 1/1 1 跳转至

如何把下面的程序改成可综合的

菜鸟
2015-05-20 11:11:12     打赏
module fsk_2_de(out,in,rst,clk);
output out;
input in;
input clk;
input rst;

reg out;
reg [2:0] m;
reg [3:0] count;

always@(posedge in or negedge rst)
begin
     if(!rst)
   begin 
         m<=0; 
       end
     else 
       begin
     m<=m+1;
end 
end

always@(posedge clk or negedge rst)
begin
     if(!rst)
   begin 
         count<=0; 
     out<=0;
       end
     else if(count==4'b1110)
            begin
          if(m<=3'b001)
            out<=0;
          else
         out<=1;
 count<=count+1;
            end
          else if(count==4'b1111)
             count<=0;
 m<=0;
           else
             count<=count+1;
end 

endmodule


       



关键词: FPGA          综合    

共1条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]