error in Synplify pro - verilog

This is a discussion on error in Synplify pro - verilog ; Hi, When I am synthesizing using Synplify Pro, I am getting the following errors: 1. Internal error in m_xilinx 2. No component with name top_module.v Actually I have created a file called top_module.v and instantiated other modules in that file. ...

+ Reply to Thread
Results 1 to 5 of 5

error in Synplify pro

  1. Default error in Synplify pro

    Hi,
    When I am synthesizing using Synplify Pro, I am getting the following
    errors:
    1. Internal error in m_xilinx
    2. No component with name top_module.v

    Actually I have created a file called top_module.v and instantiated
    other modules in that file. I have included this file name in Top level
    module option in Implementation options. Is that wrong?


  2. Default Re: error in Synplify pro

    The module you should specify for the "top module" is the verilog code
    that starts wil "module" and ends with "endmodule" rather than the file
    name. One file can contain many modules; SynplifyPro simply wants to
    know which of these many modules across several files is top? Which
    module specifies your pins?

    srini wrote:
    > Hi,
    > When I am synthesizing using Synplify Pro, I am getting the following
    > errors:
    > 1. Internal error in m_xilinx
    > 2. No component with name top_module.v
    >
    > Actually I have created a file called top_module.v and instantiated
    > other modules in that file. I have included this file name in Top level
    > module option in Implementation options. Is that wrong?


  3. Default Re: error in Synplify pro

    Hi,
    The top_module.v is my TOP module in which I am instantiating all the
    other modules. This will be the module that specifies my pins. Do I
    have to include some pin information in my TOP module?


  4. Default Re: error in Synplify pro

    "srini" <g.shrinivasan@gmail.com> wrote in message
    news:1144817093.047840.185190@z34g2000cwc.googlegroups.com...
    > Hi,
    > The top_module.v is my TOP module in which I am instantiating all the
    > other modules. This will be the module that specifies my pins. Do I
    > have to include some pin information in my TOP module?


    There are modules and there are files.
    top_module.v is a file.
    In that file if you find:

    module top_module ( input ...
    full pin list
    );
    ... // lots of code, some of which instantiates other modules

    endmodule

    then your top module is top_module, not the file top_module.v.

    Synplify is NOT asking for the file that contains your top module.



  5. Default Re: error in Synplify pro

    Hi,
    Synplify Pro carries out synthesis even if dont specify ant top module.
    Then what is the significance of this option? Also there is a "extract
    parameters" button. When I press this button, I am not seeing
    difference in my window. How to use these options?

    Thanks & Regards,
    Srini.


+ Reply to Thread

Similar Threads

  1. More width issues in Synplify Pro 8.8
    By Application Development in forum vhdl
    Replies: 4
    Last Post: 06-30-2007, 07:45 AM
  2. Width issues in Synplify Pro 8.8
    By Application Development in forum vhdl
    Replies: 0
    Last Post: 06-29-2007, 08:50 AM
  3. Error in Synplify Pro Synthesis
    By Application Development in forum verilog
    Replies: 2
    Last Post: 05-11-2006, 02:58 AM
  4. How to instantiate DPRAM in Synplify Pro
    By Application Development in forum verilog
    Replies: 2
    Last Post: 04-27-2006, 09:05 PM
  5. How to pack flops in IOB using Synplify
    By Application Development in forum verilog
    Replies: 1
    Last Post: 04-25-2006, 07:25 AM