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

What is the difference between jmp and call?

818


The address capability of 8085 is 64 kb.explain?

1710


Why do you use two ground pins in microprocessor 8086?

769


Give example for non-maskable interrupts?

795


What is special purpose registers in 8086?

840


What are the four distinct types of memory in 8051?

1511


Signal voltage ranges for a logic high and for a logic low in RS-232C standard are

858


What is the maximum size of segment in 8086 microprocessor?

750


What are the typical errors associated with using stack in a program?

808


Does 8085 have serial i/o control?

799


What are the functions of general purpose registers?

798


What is instruction cycle?

887


How many i/o ports are present in the 8086?

831


How many types memory mgt can divided?

814


What is segment address in 8086?

757