3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-17 04:50:29 +00:00

verilog: indirect AST_CONCAT and AST_TO_UNSIGNED port connections

- AST_CONCAT and AST_TO_UNSIGNED are always unsigned, but may generate
  RTLIL that exclusively reference a signed wire.
- AST_CONCAT may also contain a memory write.
This commit is contained in:
Zachary Snow 2024-02-11 13:28:14 -05:00 committed by Emil Jiří Tywoniak
parent e8f8297e5d
commit f55fbb5803
6 changed files with 72 additions and 9 deletions

View file

@ -4,6 +4,11 @@ List of major changes and improvements between releases
Yosys 0.57 .. Yosys 0.58-dev
--------------------------
* Verilog
- Fixed an issue that prevented using `{<expr>}` or `$unsigned(<expr>)` for
certain signed expressions in port connections
- Fixed an issue that prevented writing to a memory word via a concatenation
in an output port connection
Yosys 0.56 .. Yosys 0.57
--------------------------