module (
,
input ,
output reg
);
 always @ ( )
begin
;
end
module ;
// Declare the input and output variables
reg ;
reg ;
wire ;
DFF
(
,
,
) ;
initial begin
CLK = 0;
// Defining the input D Wave
//
$finish;
end
always begin
#2 CLK = ~CLK;
end