Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 are the flags in 8086?

1176


List various types of interrupts available in 8051 microcontroller?

1106


What is the difference between program memory and data memory?

1199


Point out the differences between the 8086 and 8088 microprocessor?

1199


How clock signal is generated in 8086?

1303


Explain what is sim and rim instructions?

1253


Explain the functions of ale in 8085?

1080


What is a locator?

1175


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?

997


What is the significance of the clk pin in the 8086?

1275


What does the eu do in the 8086?

1119


Explain an interrupt?

1100


How is the 8085 microprocessor different from the previous 8 series microprocessors?

1176


What is the difference between 8085 and 8086 in microprocessor?

1116


Mention the types of interrupts that 8085 supports?

1060