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, 0 insertions, 6 deletions
diff --git a/tests/techmap/abc9/abc9.v b/tests/techmap/abc9/abc9.v
deleted file mode 100644
index 2d9aea366..000000000
--- a/tests/techmap/abc9/abc9.v
+++ /dev/null
@@ -1,6 +0,0 @@
-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