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
What was your role in the silicon evaluation/product ramp? What tools did you use?
Tell me how MOSFET works.
Give various factors on which threshold voltage depends.
What is the function of tie-high and tie-low cells?
Draw the Layout of an Inverter?
Design an 8 is to 3 encoder using 4 is to encoder?
What is the difference between the mealy and moore state machine?
What are the ways to Optimize the Performance of a Difference Amplifier?
Explain the operation considering a two processor computer system with a cache for each processor.
Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes with increasing transistor width.
What is look up table in vlsi?
Explain various adders and difference between them?
If not into production, how far did you follow the design and why did not you see it into production?
What was your role in the silicon evaluation or product ramp? What tools did you use?
Explain what is multiplexer?