Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6656227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:37:02+00:00 2026-05-26T01:37:02+00:00

I am using a Basys2 board to program a simple string detector to read

  • 0

I am using a Basys2 board to program a simple string detector to read patterns like “0101”. I am using the Xilinix Design Suite 13.2 for this project. The .ucf file gives the following message.

ERROR:Place:1018 - A clock IOB / clock component pair have been found that are not
placed at an optimal clock IOB clock site pair. 
The clock component <reset_IBUF_BUFG> is placed at site <BUFGMUX_X1Y1>. 
The IO component <reset> is placed at site <IPAD73>.

Here’s what my user constrains file looks like:

NET "x"     LOC = "P11";# input switch
NET "reset" LOC = "K3"; # reset switch
NET "ck"    LOC = "B8"; # clock
NET "b1"    LOC = "A7"; # button 1
NET "b2"    LOC = "M4"; # button 2
NET "z"     LOC = "M5"; # output

One of the solutions I found online was to use this in the ucf:

CLOCK_DEDICATED_ROUTE = FALSE;

But unfortunately this didn’t work for me. I’d appreciate any help with this problem.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:37:03+00:00Added an answer on May 26, 2026 at 1:37 am

    The message appears to imply that your reset is being detected as a clock signal. That should be worrying – do you have processes which are sensitive to the edge of the reset signal?

    You should (until you really know what you’re doing) only use a couple of forms of process.


    Asynchronous reset

    process (clk, reset)
    begin
      if reset = '1' then
      -- async reset stuff
      elsif rising_edge(clk) then
      -- sync stuff
      end if;
    end process;
    

    Synchronous reset

    process (clk)
    begin
      if reset = '1' then
        --sync reset stuff
      else
        -- other sync stuff
      end if;
    end process;
    

    Also, be careful – you still need to release the reset signal to these processes synchronously.

    Here’s a good read on various reset strategies:

    http://www.xilinx.com/support/documentation/white_papers/wp272.pdf

    Finally, using CLOCK_DEDICATED_ROUTE = FALSE; is another no-no for almost every situation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using preview 4 of ASP.NET MVC Code like: <%= Html.CheckBox( myCheckBox, Click Here, True,
using file_get_contents , I open an Internet URL and get the contents of this
Using NLTK and WordNet , how do I convert simple tense verb into its
Using the RichTextArea in GWT, It looks like I can only change the font
using System; f.involk() failed since it needs a string parameter, how to correct the
Using this example . Pretend there are date fields in both forms. How would
Using the ndk I have compiled a code written in C. The program is
using the jquery ui modal dialog , the background shades grey (i assuming this
Using Ivy with this Ant target: <target name=retrieve-jars> <ivy:retrieve pattern=WebContent/WEB-INF/lib/[artifact].[ext] /> </target> to fetch
Using delphi 2010, i am wondering if there someway to escape the following string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.