$_DFF_NN0_#

A negative edge D-type flip-flop with negative polarity reset.

Truth table:    D C R | Q
               -------+---
                - - 0 | 0
                d \ - | d
                - - - | q

Simulation model (Verilog)#

Listing 174 simcells.v:699#
module \$_DFF_NN0_ (D, C, R, Q);
    input D, C, R;
    output reg Q;
    always @(negedge C or negedge R) begin
        if (R == 0)
            Q <= 0;
        else
            Q <= D;
    end
endmodule

Note

This page was auto-generated from the output of help $_DFF_NN0_.