1
0
mirror of synced 2026-01-25 20:06:27 +00:00
Files
YosysHQ.yosys/tests/techmap/bug2759.ys
Eddie Hung 65316ec926 abc9: holes module to instantiate cells with NEW_ID (#2992)
* Add testcase

* holes module to instantiate cells with NEW_ID
2021-09-09 10:06:20 -07:00

15 lines
226 B
Plaintext

read_verilog -specify <<EOT
(* abc9_box, whitebox *)
module box(input [1:0] i, output o);
specify
(i *> o) = 1;
endspecify
assign o = ^i;
endmodule
module top(input [1:0] i, output o);
box i1(i, o);
endmodule
EOT
abc9 -lut 4