support for attributes in unary, binary, and ternary expressions

Co-authored-by: qcorradi <[email protected]>
Co-authored-by: Zachary Snow <[email protected]>
This commit is contained in:
CORRADI Quentin
2023-07-31 22:52:28 -04:00
committed by GitHub
co-authored by qcorradi Zachary Snow
parent 211bce6bb1
commit 619bde4be1
20 changed files with 181 additions and 113 deletions
+4
View File
@@ -0,0 +1,4 @@
module top;
wire a, b, c, d, e;
assign a = b ? (* ternary *) ~^ (* unary *) c : d & (* binary *) e;
endmodule
+3
View File
@@ -0,0 +1,3 @@
affirm (* unary *)
affirm (* binary *)
affirm (* ternary *)