What is a D-latch? Write the VHDL Code for it?
Answer Posted / sghsg
library ieee;
use ieee.std_logic_1164.all;
entity D_latch is
port (
clk : in std_logic;
d : in std_logic;
q : out std_logic
);
end D_latch;
architecture arch_D_latch of D_latch is
begin
process(d,clk)
begin
-- +ve level sensitive
if(clk = '1') then
q <= d;
else
q <= q;
end if;
end process;
end arch_D_latch;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes considering Channel Length Modulation.
What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?
What's the price in 1K quantity?
Mention what are three regions of operation of mosfet and how are they used?
What is the difference between the mealy and moore state machine?
How binary number can give a signal or convert into a digital signal?
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
Give the logic expression for an AOI gate. Draw its transistor level equivalent. Draw its stick diagram
In vlsi chip 1000s of transistors are dropped, specifically categorized. Which method is used to achieve this & how it is done practically?
What transistor level design tools are you proficient with? What types of designs were they used on?
Draw a transistor level two input NAND gate. Explain its sizing (a) considering Vth (b) for equal rise and fall times
Differences between Array and Booth Multipliers?
what is a sequential circuit?
Write a VLSI program that implements a toll booth controller?
What is Body Effect?