Giter VIP home page Giter VIP logo

Comments (3)

cliffordwolf avatar cliffordwolf commented on July 18, 2024

You can work around that problem by making sure the parameter is defined before it is being used. You can do that by either going all-in with the Verilog-2001 syntax for port and parameter declarations:

module test2 #( 
    parameter WIDTH = 16 * 2
) (
    output [WIDTH-1:0] out
);
endmodule

Or by falling back to the Verilog-95 syntax:

module test3 (out);
    parameter WIDTH = 16 * 2;
    output [WIDTH-1:0] out;
endmodule

I'll see if I can fix this and post another comment then.

Would you consider fixing this bug

I would not call it a bug. E.g. modelsim also refuses to process your code:

-- Compiling module multiply
** Error: test2.v(5): (vlog-2730) Undefined variable: 'A_WIDTH'.
** Error: test2.v(5): 'a' already declared in this scope (multiply).
** Error: test2.v(6): (vlog-2730) Undefined variable: 'B_WIDTH'.
** Error: test2.v(6): 'b' already declared in this scope (multiply).
** Error: test2.v(7): (vlog-2730) Undefined variable: 'OUT_WIDTH'.
** Error: test2.v(8): 'out' already declared in this scope (multiply).
....

And modelsim is even pickier: It doesn't matter if the parameter points to an expression or a literal. The only difference is that modelsim creates better error messages.

from yosys.

cliffordwolf avatar cliffordwolf commented on July 18, 2024

Fixed in commit 422794c.

from yosys.

gaomy3832 avatar gaomy3832 commented on July 18, 2024

Thanks for the quick reply and fix! That's really helpful!

from yosys.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.