aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2021-09-09 10:06:20 -0700
committerGitHub <noreply@github.com>2021-09-09 10:06:20 -0700
commit65316ec9262e1cc10fdc7215f2d3ead579d1e258 (patch)
tree3e91e19b89af3700b3844bb6c5d3ac4d7dcb90f0 /tests/techmap
parentf03e2c30aa3ad92bffb7ecd7179fe859d1b993b0 (diff)
downloadyosys-65316ec9262e1cc10fdc7215f2d3ead579d1e258.tar.gz
yosys-65316ec9262e1cc10fdc7215f2d3ead579d1e258.tar.bz2
yosys-65316ec9262e1cc10fdc7215f2d3ead579d1e258.zip
abc9: holes module to instantiate cells with NEW_ID (#2992)
* Add testcase * holes module to instantiate cells with NEW_ID
Diffstat (limited to 'tests/techmap')
-rw-r--r--tests/techmap/bug2759.ys14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/techmap/bug2759.ys b/tests/techmap/bug2759.ys
new file mode 100644
index 000000000..05699bef8
--- /dev/null
+++ b/tests/techmap/bug2759.ys
@@ -0,0 +1,14 @@
+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