Files

17 lines
239 B
Plaintext
Raw Permalink Normal View History

2024-01-17 11:00:42 +13:00
read_verilog <<EOT
module uut(
input a, b, c, d,
output y
2026-06-23 07:24:59 +02:00
);
2024-01-17 11:00:42 +13:00
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