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
Implement a 2 I/P and gate using Tran gates?
Explain sizing of the inverter?
Are you familiar with the term MESI?
Write a program to explain the comparator?
Explain the operation of a 6T-SRAM cell?
what is verilog?
What is the purpose of having depletion mode device?
In vlsi chip 1000s of transistors are dropped, specifically categorized. Which method is used to achieve this & how it is done practically?
Explain why present VLSI circuits use MOSFETs instead of BJTs?
what is Slack?
What are the various regions of operation of mosfet? How are those regions used?
Explain various adders and difference between them?
why is the number of gate inputs to CMOS gates usually limited to four?
Draw the SRAM Write Circuitry
How do you size NMOS and PMOS transistors to increase the threshold voltage?