Explain the concept of a Clock Divider Circuit? Write a VHDL
code for the same?
Answer Posted / senthil
I am using the Mr.Suriya code with little modification.
ENTITY CLK_DIV IS
PORT(CLK: IN STD_LOGIC;
NEWCLK:OUT STD_LOGIC);
END CLK_DIV
ARCH BEH OF CLK_DIV IS
VARIABLE COUNT:INTEGER:=0;
BEGIN
PROCESS(CLK)
BEGIN
IF CLK='1' AND CLK'EVENT THEN
COUNT:=COUNT+1;
IF COUNT=8000000 THEN
NEWCLK<= '1';
COUNT:=0;
ELSE
NEWCLK<= '0';
END IF;
END IF;
END PROCESS;
END BEH;
| Is This Answer Correct ? | 12 Yes | 12 No |
Post New Answer View All Answers
How do you size NMOS and PMOS transistors to increase the threshold voltage?
How about voltage source?
What are the changes that are provided to meet design power targets?
Help with VHDL programming. Write a VHDL code for a D-Latch with clear input ?? (Hint: Set up a “Process” with appropriate sensitivity list to get the desired D-Latch with Clr working.) Inputs AND OUTPUTS: entity Lab4b is Port ( Clr, Clk, D : in STD_LOGIC; Q : out STD_LOGIC); end Lab4b;
Draw the Differential Sense Amplifier and explain its working. Any idea how to size this circuit? (Consider Channel Length Modulation)
Are you familiar with the term MESI?
Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes with increasing Vgs.
What are the different design techniques required to create a layout for digital circuits?
Explain what is the use of defpararm?
what is a sequential circuit?
What is the ideal input and output resistance of a current source?
Differences between Array and Booth Multipliers?
6-T XOR gate?
What work have you done on full chip Clock and Power distribution? What process technology and budgets were used?
What work have you done on full chip Clock and Power distribution? What process technology and budgets were used?