x86 Question:
Download Questions PDF

Write an RTL Description for D latch and D flip flop?

x86 Interview Question
x86 Interview Question

Answer:

For D Latch:always@(enable)q<=d;
For D flip flop:always@(posedge clock)q<=d;

Download x86 Interview Questions And Answers PDF

Previous QuestionNext Question
What are the blocking and nonblocking assignments in Verilog and which is preferred in Sequential circuits?Design a 2-bit magnitude comparator and write itsRTL description also?