3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-13 17:36:16 +00:00
Commit graph

3 commits

Author SHA1 Message Date
Emil J. Tywoniak
af0bab9fc7 ast, read_verilog: ownership in AST, use C++ styles for parser and lexer 2025-05-21 12:14:50 +02:00
Zachary Snow
4edb1a1921 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.
2023-09-05 22:27:55 -04:00
Eddie Hung
e7fd8912f0 tests: attributes before task enable 2020-05-14 16:09:41 -07:00