Implement D flip-flop with a couple of latches? Write a VHDL
Code for a D flip-flop?
Answer Posted / balaji
library ieee;
use ieee.std_logic_1164.all;
entity d_ff is
port(d,clk:in std_logic;
q,q'bar:out std_logic);
end d_ff;
architecture a_d_ff of d_ff is
begin
process(clk)
begin
if rising_edge(clk) then
q<=d;
q'bar<=not d;
end if;
end process;
end a_d_ff;
| Is This Answer Correct ? | 32 Yes | 13 No |
Post New Answer View All Answers
Explain Cross section of an NMOS transistor?
Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that results in heads.
What is the critical path in a SRAM?
How about voltage source?
Process technology? What package was used and how did you model the package/system? What parasitic effects were considered?
What work have you done on full chip Clock and Power distribution? What process technology and budgets were used?
What are the various regions of operation of mosfet? How are those regions used?
What happens if we use an Inverter instead of the Differential Sense Amplifier?
Draw a 6-T SRAM Cell and explain the Read and Write operations
why is the number of gate inputs to CMOS gates usually limited to four?
Draw a transistor level two input NAND gate. Explain its sizing (a) considering Vth (b) for equal rise and fall times
Explain the Various steps in Synthesis?
Calculate rise delay of a 3-input NAND gate driving a 3-input NOR gate through a 6mm long and 0.45m wide metal wire with sheet resistance R = 0.065 / and Cpermicron= 0.25 fF/m. The resistance and capacitance of the unit NMOS are 6.5k and 2.5fF. Use a 3 segment -model for the wire. Consider PMOS and NMOS size of reference inverter as 2 and 1 respectively. Use appropriate sizing for the NAND and NOR gate.
Cross section of a PMOS transistor?
Draw a CMOS Inverter. Explain its transfer characteristics