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


Please Help Members By Posting Answers For Below Questions

write the assembly language programming to find the 2's complement for a string of 100 bytes

731


Explain what is the difference between isr & function call?

605


explain about the characters of internal interrupts?

647


Explain sim and rim instructions?

712


rtos kernal have memory managament,sheduler and timer but not haveing file system how vxworks allocate file table process in memory? bud gpos have inside kernal

2720






These are two ways in which a microprocessor can come out of Halt state.

679


What type of interrupt is the “trap” and what does it do?

577


Describe the non-vectored interrupt process?

648


The operation being performed by the 8085 can be checked by which pins?

584


List out the features of 8051 microcontroller?

714


Indicate different machine cycles of 8085?

698


The interrupt response time is determined by?

597


What is the purpose of segment register?

557


Differentiate between div and idiv instructions with the help of examples.

2041


What are the flags in 8086?

641