$_DFFSR_PPN_#

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

Truth table:    C S R D | Q
               ---------+---
                - - 0 - | 0
                - 1 - - | 1
                / - - d | d
                - - - - | q

Simulation model (Verilog)#

Listing 172 simcells.v:1715#
module \$_DFFSR_PPN_ (C, S, R, D, Q);
    input C, S, R, D;
    output reg Q;
    always @(posedge C, posedge S, negedge R) begin
        if (R == 0)
            Q <= 0;
        else if (S == 1)
            Q <= 1;
        else
            Q <= D;
    end
endmodule

Note

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