Question: Can someone write a test bench for this d flip flop in verilog D-flip-flop (DFF) with enable and reset store a single bit module dff_async_reset

Can someone write a test bench for this d flip flop in verilog

D-flip-flop (DFF) with enable and reset store a single bit

module dff_async_reset (q, data, clk, reset, enable);

input data , clk, reset, enable;

output reg q;

always @ ( posedge clk or negedge reset)

if (~reset) begin

q <= 1'b0;

end

else if (enable) begin

q <= data;

end

endmodule

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!