aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/abc9/abc9.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/techmap/abc9/abc9.v')
-rw-r--r--tests/techmap/abc9/abc9.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/techmap/abc9/abc9.v b/tests/techmap/abc9/abc9.v
new file mode 100644
index 000000000..2d9aea366
--- /dev/null
+++ b/tests/techmap/abc9/abc9.v
@@ -0,0 +1,6 @@
+module top(input [1:0] a, output [1:0] b, output c, output d, output e);
+assign b = a;
+assign c = ^a;
+assign d = ~c;
+assign e = d;
+endmodule