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

/*

FUNCTION	: D-FLIP-FLOP with clock enable

*/

`timescale  100 ps / 10 ps


module FDE_1 (Q, C, CE, D);

    parameter INIT = 1'b0;

    output Q;
    reg    q_out;

    input  C, CE, D;

    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 (CE)
		q_out <= D;

    specify
	if (CE)
	    (negedge C => (Q +: D)) = (1, 1);
    endspecify

endmodule