mirror of https://github.com/YosysHQ/yosys.git
11 lines
161 B
Plaintext
11 lines
161 B
Plaintext
|
read_verilog <<EOT
|
||
|
module top(input i, j, s, output o, p);
|
||
|
assign o = s ? j : i;
|
||
|
assign p = ~i;
|
||
|
endmodule
|
||
|
EOT
|
||
|
|
||
|
select t:$mux
|
||
|
aigmap -select
|
||
|
select -assert-any %
|