mirror of https://github.com/zachjs/sv2v.git
5 lines
118 B
Systemverilog
5 lines
118 B
Systemverilog
|
|
module top;
|
||
|
|
wire a, b, c, d, e;
|
||
|
|
assign a = b ? (* ternary *) ~^ (* unary *) c : d & (* binary *) e;
|
||
|
|
endmodule
|