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
If not into production, how far did you follow the design and why did not you see it into production?
What happens if we use an Inverter instead of the Differential Sense Amplifier?
What are the main issues associated with multiprocessor caches and how might you solve them?
What types of high speed CMOS circuits have you designed?
Draw a 6-T SRAM Cell and explain the Read and Write operations
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;
For a single computer processor computer system, what is the purpose of a processor cache and describe its operation?
Explain how MOSFET works?
If an/ap = 0.5, an/ap = 1, an/ap = 3, for 3 inverters draw the transfer characteristics?
What is the main function of metastability in vsdl?
What products have you designed which have entered high volume production?
Draw the timing diagram for a SRAM Read. What happens if we delay the enabling of Clock signal?
Design an 8 is to 3 encoder using 4 is to encoder?
What is the difference between nmos and pmos technologies?
Basic Stuff related to Perl?