mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-26 10:38:47 +00:00
16 lines
239 B
Text
16 lines
239 B
Text
read_verilog <<EOT
|
|
|
|
module uut(
|
|
input a, b, c, d,
|
|
output y
|
|
);
|
|
assign y = a ? (a ? b : c) : d;
|
|
endmodule
|
|
|
|
EOT
|
|
|
|
copy uut after
|
|
opt_muxtree after
|
|
clean
|
|
|
|
show -format dot -prefix opt_muxtree_full -notitle -color cornflowerblue uut
|