回覆列表
  • 1 # 使用者4666406496409

    module d(rst1,rst0,clk,in,out); input rst1,rst0,clk,in; output out; reg out; always@(posedge clk or negedge rst1 or negedge rst0) begin if(~rst1) out<=1; //注意下降沿配套的條件寫法 else if(~rst0) out<=0; //注意下降沿配套的條件寫法 else out <= in; //直接完成D觸發器的特性方程就可以了 //begin //if(in) out<=in; //else out<=out; //end end endmodule

  • 2 # 藍風24

    module d(rst1,rst0,clk,in,out);

    input rst1,rst0,clk,in;

    output out;

    reg out;

    always@(posedge clk or negedge rst1 or negedge rst0)

    begin

    if() out //注意下降沿配套的條件寫法

    else if() out//注意下降沿配套的條件寫法

    else

    //begin

    //if(in) out

    //else out

    //end

    end

    endmodule

  • 中秋節和大豐收的關聯?
  • "人閒的沒事喝茶"可以用什麼詞形容?