Question

. Generate a a code in Verilog file to Construct T-FlipFlop using D-FlipFlop.

. Generate a a code in Verilog file to Construct T-FlipFlop using D-FlipFlop.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

// T flip flop using D flip flop verilog code

module t_flip_flop ( t ,clk ,reset ,dout );

output dout ;

input t ;
input clk ;
input reset ;

wire ip;
wire op;

assign ip = t ^ op;

d_flip_flop u0 (.din(ip),
.clk(clk),
.reset(reset),
.dout(op));

assign dout = op;


endmodule

// D flip flop verilog code

/*

module d_flip_flop ( din ,clk ,reset ,dout );

output dout ;
reg dout;

input din ;
input clk ;
input reset ;

always @ (posedge clk)
begin
if (reset)
dout <= 1;
else
dout <= din;
end


endmodule

*/

Add a comment
Know the answer?
Add Answer to:
. Generate a a code in Verilog file to Construct T-FlipFlop using D-FlipFlop.
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT