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 TouchToneTommy 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. Magneto71

    Synthesis of Program with multiple if statements in a process

    Adithya, you are hardcoding rst<= '0'; at the top of your code, hence the condition if(rst='1') is never true. Synthesis will find that everything until the corresponding end if; is never reached and gets optimised out. Also, do not need to have more than (starting, clk) in your sensitivity list
  2. Magneto71

    Error - unexpected TICK

    You are assigning ADC to Data, so assuming that they are of the same type you should write. when Read => Data <= ADC; Ticks are used for properties such as when Read => Data <= ADC(Data'range); if Data and ADC are of different width for instance.

Part and Inventory Search

Back
Top