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
Explain the three regions of operation of a mosfet.
What is look up table in vlsi?
Explain how Verilog is different to normal programming language?
For CMOS logic, give the various techniques you know to minimize power consumption
what are three regions of operation of MOSFET and how are they used?
What is threshold voltage?
Differences between IRSIM and SPICE?
Why does the present vlsi circuits use mosfets instead of bjts?
What transistor level design tools are you proficient with? What types of designs were they used on?
Write a program to explain the comparator?
Explain the working of Insights of an inverter ?
Explain CMOS Inverter transfer characteristics?
Explain Cross section of a PMOS transistor?
What is Body Effect?
Explain the working of Insights of a pass gate ?