Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sunil401

    Clock Divider 100MHz to 26MHz

    Hi all, Following is the sample code for 26MHz generation from a 100MHz input clock. entity c1hz is port( clk:in bit; clkout:out bit); end c1hz; architecture behavior of c1hz is begin process(clk) variable cnt : integer range 0 to 383; begin if(clk'event and clk='1') then if(cnt=383)then...

Part and Inventory Search

Back
Top