blob: 31ea5871a5beb24acf170a850ae571cc359ffa81 [file] [log] [blame]
module d_flip_flop(clk, q, d);
input clk;
input q;
output d;
reg temp;
always @ (posedge clk)
begin
d <= q;
end
endmodule