1
0
mirror of synced 2026-01-26 20:23:59 +00:00
Files
YosysHQ.yosys/frontends
Brett Witherspoon 979053855c sv: improve support for wire and var with user-defined types
- User-defined types must be data types. Using a net type (e.g. wire) is
  a syntax error.
- User-defined types without a net type are always variables (i.e.
  logic).
- Nets and variables can now be explicitly declared using user-defined
  types:

    typedef logic [1:0] W;
    wire W w;

    typedef logic [1:0] V;
    var V v;

Fixes #2846
2021-08-12 22:41:41 -06:00
..
2020-10-19 13:40:57 +02:00
2021-08-02 10:29:58 +02:00