$_SDFFCE_NN1P_#

A negative edge D-type flip-flop with negative polarity synchronous set and positive polarity clock enable (with clock enable having priority).

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

Simulation model (Verilog)#

Listing 218 simcells.v:2846#
module \$_SDFFCE_NN1P_ (D, C, R, E, Q);
    input D, C, R, E;
    output reg Q;
    always @(negedge C) begin
        if (E == 1) begin
            if (R == 0)
                Q <= 1;
            else
                Q <= D;
        end
    end
endmodule

Note

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