Give a circuit to divide frequency of clock cycle by two ?
Answer Posted / harikrishna h
take an xor gate, connect output to one of the input of xor gate and other input as the clock. verilog code for the same is given below
module a(input in,rst,output reg ot);
always @(in or rst)
begin
if(rst)
ot<=0;
else
ot<=ot ^ in;
end
endmodule
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are the temporary registers of 8085?
Define the functions of the dx register.
What are the different types of instructions of 8085?
How many hardware interrupts 8085 supports?
Describe the accumulator register of 8085?
What is function of ale in 8085 microprocessor?
Explain the functions of ale in 8085?
What are the data pins of microprocessors? What is their use?
What does a microprocessor mean?
Define psp?
How are time delays calculated in the 8085?
What are the functions of base registers?
Which segment is used to store interrupt and subroutine return address registers?
Explain the purpose of the status register?
Give here your suggestion about microprocessor 8085 and 8086. These 2 processors used in old time. I want to know its program execution time, memory space?