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 flags in 8086?
List various types of interrupts available in 8051 microcontroller?
What is the difference between program memory and data memory?
Point out the differences between the 8086 and 8088 microprocessor?
How clock signal is generated in 8086?
Explain what is sim and rim instructions?
Explain the functions of ale in 8085?
What is a locator?
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?
What is the significance of the clk pin in the 8086?
What does the eu do in the 8086?
Explain an interrupt?
How is the 8085 microprocessor different from the previous 8 series microprocessors?
What is the difference between 8085 and 8086 in microprocessor?
Mention the types of interrupts that 8085 supports?