mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-27 19:05:52 +00:00
sv: support assignments within expressions
- Add support for assignments within expressions, e.g., `x[y++] = z;` or `x = (y *= 2) - 1;`. The logic is handled entirely within the parser by injecting statements into the current procedural block. - Add support for pre-increment/decrement statements, which are behaviorally equivalent to post-increment/decrement statements. - Fix non-standard attribute position used for post-increment/decrement statements.
This commit is contained in:
parent
83b1a57eed
commit
4edb1a1921
15 changed files with 231 additions and 24 deletions
|
@ -592,6 +592,8 @@ from SystemVerilog:
|
|||
- SystemVerilog interfaces (SVIs) are supported. Modports for specifying whether
|
||||
ports are inputs or outputs are supported.
|
||||
|
||||
- Assignments within expressions are supported.
|
||||
|
||||
|
||||
Building the documentation
|
||||
==========================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue