Implement D flip-flop with a couple of latches? Write a VHDL
Code for a D flip-flop?
Answer Posted / muthu
ibrary IEEE;
use IEEE.STD_LOGIC_1164.all;
entity gh_DFF is
port(
D : in STD_LOGIC;
CLK : in STD_LOGIC;
rst : in STD_LOGIC;
Q : out STD_LOGIC
);
end gh_DFF;
architecture a of gh_DFF is
begin
process(CLK,rst)
begin
if (rst = '1') then
Q <= '0';
elsif (rising_edge(CLK)) then
Q <= D;
end if;
end process;
end a;
| Is This Answer Correct ? | 36 Yes | 2 No |
Post New Answer View All Answers
What are the steps required to solve setup and hold violations in vlsi?
Explain the Working of a 2-stage OPAMP?
Explain Cross section of a PMOS transistor?
How about voltage source?
What are the different ways in which antenna violation can be prevented?
what is SCR (Silicon Controlled Rectifier)?
What happens if we delay the enabling of Clock signal?
In vlsi chip 1000s of transistors are dropped, specifically categorized. Which method is used to achieve this & how it is done practically?
What are the different classification of the timing control?
Are you familiar with the term snooping?
How does Vbe and Ic change with temperature?
Draw a transistor level two input NAND gate. Explain its sizing (a) considering Vth (b) for equal rise and fall times
Given a layout, draw its transistor level circuit. (I was given a 3 input AND gate and a 2 input Multiplexer. You can expect any simple 2 or 3 input gates)
Working of a 2-stage OPAMP?
Explain what is the use of defpararm?