Implement D flip-flop with a couple of latches? Write a VHDL
Code for a D flip-flop?
Answer Posted / rakesh
ibrary IEEE;
use IEEE.STD_LOGIC_1164.all;
entity DFlip_Flop is
port(
D : in STD_LOGIC;
CLK : in STD_LOGIC;
rst : in STD_LOGIC;
Q : out STD_LOGIC
);
end DFlip_Flop;
Architecture of DFlip_Flop is
begin
---ANother way of writing code for creating D_Flip_Flop in VHDL
process(Clk, Rst)
begin
if (Rst ='1') then
Q <= '0';
elsif(clk='1' and clk'event) then
Q <= D;
end if;
end process;
end ;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Give a big picture of the entire SRAM Layout showing your placements of SRAM Cells, Row Decoders, Column Decoders, Read Circuit, Write Circuit and Buffers
Explain Cross section of an NMOS transistor?
Explain why present VLSI circuits use MOSFETs instead of BJTs?
What work have you done on full chip Clock and Power distribution? What process technology and budgets were used?
Explain how MOSFET works?
How can you model a SRAM at RTL Level?
How to improve these parameters? (Cascode topology, use long channel transistors)
What are the various regions of operation of mosfet? How are those regions used?
6-T XOR gate?
How do you size NMOS and PMOS transistors to increase the threshold voltage?
Let A & B be two inputs of the NAND gate. Say signal A arrives at the NAND gate later than signal B. To optimize delay, of the two series NMOS inputs A & B, which one would you place near the output?
Differences between Array and Booth Multipliers?
In a SRAM layout, which metal layers would you prefer for Word Lines and Bit Lines? Why?
What is threshold voltage?
what is the use of defpararm?