1
0
mirror of synced 2026-04-08 23:40:56 +00:00
Files
YosysHQ.yosys/tests
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
..
2021-05-20 12:49:51 +02:00
2021-08-11 13:34:10 +02:00
2020-09-21 15:07:02 +02:00
2021-03-29 22:01:57 -07:00
2021-06-09 12:40:33 +02:00
2020-09-21 15:07:02 +02:00