2021年4月25日 星期日

HBLbits_Verilog Basic_Dualedge

 HBLbits_Verilog Basic_Dualedge

flip-flops that are triggered on the positive edge of the clock, or negative edge of the clock. A dual-edge triggered flip-flop is triggered on both edges of the clock. However, FPGAs don't have dual-edge triggered flip-flops, and always @(posedge clk or negedge clk) is not accepted as a legal sensitivity list.

Build a circuit that functionally behaves like a dual-edge triggered flip-flop:


module top_module (

    input clk,

    input d,

    output q

);

reg p, n;

// A positive-edge triggered flip-flop

    always @(posedge clk)

        p <= d ^ n;

        

    // A negative-edge triggered flip-flop

    always @(negedge clk)

        n <= d ^ p;

    

    // Why does this work? 

    // After posedge clk, p changes to d^n. Thus q = (p^n) = (d^n^n) = d.

    // After negedge clk, n changes to p^n. Thus q = (p^n) = (p^p^n) = d.

    // At each (positive or negative) clock edge, p and n FFs alternately

    // load a value that will cancel out the other and cause the new value of d to remain.

    assign q = p ^ n;

// Can't synthesize this.

/*always @(posedge clk, negedge clk) begin

q <= d;

end*/

endmodule


沒有留言:

張貼留言

2026 作業3 RFID+ Telegram 練習

 2026 作業3  RFID+ Telegram  練習 (Wokwi 與 Telegram 二者溝通訊息反映比較慢 ) 歡迎 Alex 使用 RFID 控制系統 /on : 開啟 LED /off : 關閉 LED /flash : 閃爍模式 /timer : 開啟 5 秒 ...