mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-09-04 19:31:00 +02:00
18 lines
237 B
Plaintext
18 lines
237 B
Plaintext
read_verilog <<EOT
|
|
|
|
module uut(
|
|
input a,
|
|
output y, z
|
|
);
|
|
assign y = a == a;
|
|
assign z = a != a;
|
|
endmodule
|
|
|
|
EOT
|
|
|
|
copy uut after
|
|
opt_expr after
|
|
clean
|
|
|
|
show -format dot -prefix opt_expr_full -notitle -color cornflowerblue uut
|