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 various interrupts in 8086?
Explain the characteristics of the cmp instructions?
Which register handles the arithmetic operations in the 8085?
What are the major differences in short label and near label jump instructions?
What is the maximum memory addressable size by the 8086?
What is the RST for the TRAP?
Discuss pc and sp?
What is the difference between a microprocessor and a microcontroller?
Define macros with the help of an example.
List various types of interrupts available in 8051 microcontroller?
Explain xthl, daa, rc instructions.
What is coprocessor?
Explain dma?
explain about externally initiated operations
What does eu do?