diff options
author | David Shah <dave@ds0.me> | 2020-02-02 18:12:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 18:12:28 +0000 |
commit | 7033503cd9e40e16c11fe6c805a436b0e23989dd (patch) | |
tree | 23d26103ac47ed62f2d0f805b6677943ef4f1795 /README.md | |
parent | 9f5613100b360beb60608df1296ee81dc185e56c (diff) | |
parent | 0488492ad269df9641ab317eac5568353dd61076 (diff) | |
download | yosys-7033503cd9e40e16c11fe6c805a436b0e23989dd.tar.gz yosys-7033503cd9e40e16c11fe6c805a436b0e23989dd.tar.bz2 yosys-7033503cd9e40e16c11fe6c805a436b0e23989dd.zip |
Merge pull request #1516 from YosysHQ/dave/dotstar
sv: Add support for wildcard port connections (.*)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -387,6 +387,10 @@ Verilog Attributes and non-standard features according to the type of the always. These are checked for correctness in ``proc_dlatch``. +- The cell attribute ``wildcard_port_conns`` represents wildcard port + connections (SystemVerilog ``.*``). These are resolved to concrete + connections to matching wires in ``hierarchy``. + - In addition to the ``(* ... *)`` attribute syntax, Yosys supports the non-standard ``{* ... *}`` attribute syntax to set default attributes for everything that comes after the ``{* ... *}`` statement. (Reset |