aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-11-22 15:32:46 +0000
committerDavid Shah <dave@ds0.me>2020-02-02 16:13:13 +0000
commit0488492ad269df9641ab317eac5568353dd61076 (patch)
tree23d26103ac47ed62f2d0f805b6677943ef4f1795
parent4bfd2ef4f328b4a95918ed3e0d7a7e38406c4ae8 (diff)
downloadyosys-0488492ad269df9641ab317eac5568353dd61076.tar.gz
yosys-0488492ad269df9641ab317eac5568353dd61076.tar.bz2
yosys-0488492ad269df9641ab317eac5568353dd61076.zip
Update CHANGELOG and README
Signed-off-by: David Shah <dave@ds0.me>
-rw-r--r--CHANGELOG1
-rw-r--r--README.md4
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 481ba266e..241fba9e8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -55,6 +55,7 @@ Yosys 0.9 .. Yosys 0.9-dev
- Added "check -mapped"
- Added checking of SystemVerilog always block types (always_comb,
always_latch and always_ff)
+ - Added support for SystemVerilog wildcard port connections (.*)
- Added "xilinx_dffopt" pass
- Added "scratchpad" pass
- Added "abc9 -dff"
diff --git a/README.md b/README.md
index 77e9410da..327d407f9 100644
--- a/README.md
+++ b/README.md
@@ -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