aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hana/test_intermout_bufrm_6_test.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hana/test_intermout_bufrm_6_test.v')
-rw-r--r--tests/hana/test_intermout_bufrm_6_test.v22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/hana/test_intermout_bufrm_6_test.v b/tests/hana/test_intermout_bufrm_6_test.v
deleted file mode 100644
index d4f3878d5..000000000
--- a/tests/hana/test_intermout_bufrm_6_test.v
+++ /dev/null
@@ -1,22 +0,0 @@
-module test(in, out);
-input in;
-output out;
-
-wire w1, w2, w3, w4;
-assign w1 = in;
-assign w2 = w1;
-assign w4 = w3;
-assign out = w4;
-mybuf _mybuf(w2, w3);
-endmodule
-
-module mybuf(in, out);
-input in;
-output out;
-wire w1, w2, w3, w4;
-
-assign w1 = in;
-assign w2 = w1;
-assign out = w2;
-endmodule
-