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
Why does the present vlsi circuits use mosfets instead of bjts?
What is the critical path in a SRAM?
Draw the Layout of an Inverter?
If not into production, how far did you follow the design and why did not you see it into production?
Explain the Various steps in Synthesis?
Draw the stick diagram of a NOR gate. Optimize it
Are you familiar with the term snooping?
Draw the Cross Section of an Inverter? Clearly show all the connections between M1 and poly, M1 and diffusion layers etc?
For an AND-OR implementation of a two input Mux, how do you test for Stuck-At-0 and Stuck-At-1 faults at the internal nodes? (You can expect a circuit with some redundant logic)
Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes with increasing Vgs.
Explain the Working of a 2-stage OPAMP?
Explain the operation of a 6T-SRAM cell?
What's the price in 1K quantity?
What are the various regions of operation of mosfet? How are those regions used?
What are the different gates where boolean logic are applicable?