FDRS_1.v 736 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/FDRS_1.v,v 1.1 2003/08/20 23:46:46 berndt Exp $

/*

FUNCTION	: D-FLIP-FLOP with sync reset, sync set

*/

`timescale  100 ps / 10 ps


module FDRS_1 (Q, C, D, R, S);

    parameter INIT = 1'b0;

    output Q;
    reg    q_out;

    input  C, D, R, S;

    tri0 GSR = glbl.GSR;

    buf B1 (Q, q_out);

	always @(GSR)
	    if (GSR)
		assign q_out = INIT;
	    else
		deassign q_out;

	always @(negedge C)
	    if (R)
		q_out <= 0;
	    else if (S)
		q_out <= 1;
	    else
		q_out <= D;

    specify
	if (R)
	    (negedge C => (Q +: 1'b0)) = (1, 1);
	if (!R && S)
	    (negedge C => (Q +: 1'b1)) = (1, 1);
	if (!R && !S)
	    (negedge C => (Q +: D)) = (1, 1);
    endspecify

endmodule