Exams/ece241 2014 q4 Verilog code failing at 140

前端 未结 0 2120
走了就别回头了
走了就别回头了 2020-12-10 11:05
module dff1(input d,input clk,output q,output qbar);
    
  initial begin
        q<=0;
        qbar<=1;
    end
    always @(posedge clk)begin
        q<=d         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题