Explain the concept of a Clock Divider Circuit? Write a VHDL
code for the same?

Answer Posted / jaya suriya


IN SPARTAN 3E BOARD.. THE INTERNAL CLOCK FREQUENCY IS
16MHZ... IF WE WANT TO INTERFACING THE EXT DIPLAY DEVICES
WE WON'T RUN IT WITH A NORMAL CLOCK FREQ(16
MHZ)....THATSWHY I HAVE TO CREATED NEW CLOCK PULSE WITH THE
FREQ OF 1HZ BY DEVIDING THE CLOCK..... TAKE THE NORMAL CLK
AS A REFERENCE...THIS IS KNOWN AS CLOCK DIVIDER CONCEPT...

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;
SIGNAL CLKN:STD_LOGIC;
BEGIN
PROCESS(CLK)
BEGIN
IF CLK='1' AND CLK'EVENT THEN
COUNT:=COUNT+1;
IF COUNT=8000000 THEN
NEWCLK<= NOT CLKN
COUNT:=0;
END PROCESS;
END BEH;

Is This Answer Correct ?    19 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the working of Insights of a pass gate ?

682


Why do we gradually increase the size of inverters in buffer design? Why not give the output of a circuit to one large inverter?

828


You have a driver that drives a long signal & connects to an input device. At the input device there is either overshoot, undershoot or signal threshold violations, what can be done to correct this problem?

2194


Draw a 6-T SRAM Cell and explain the Read and Write operations

807


Explain why is the number of gate inputs to cmos gates usually limited to four?

1029






Give the logic expression for an AOI gate. Draw its transistor level equivalent. Draw its stick diagram

863


Explain Basic Stuff related to Perl?

619


What was your role in the silicon evaluation/product ramp? What tools did you use?

3223


What is Body Effect?

2043


what is SCR (Silicon Controlled Rectifier)?

640


In the design of a large inverter, why do we prefer to connect small transistors in parallel (thus increasing effective width) rather than lay out one transistor with large width?

691


Explain what is multiplexer?

634


Cross section of a PMOS transistor?

4263


What is the difference between nmos and pmos technologies?

657


If not into production, how far did you follow the design and why did not you see it into production?

1689