aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/efinix/logic.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/efinix/logic.v')
-rw-r--r--tests/arch/efinix/logic.v18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/arch/efinix/logic.v b/tests/arch/efinix/logic.v
deleted file mode 100644
index e5343cae0..000000000
--- a/tests/arch/efinix/logic.v
+++ /dev/null
@@ -1,18 +0,0 @@
-module top
-(
- input [0:7] in,
- output B1,B2,B3,B4,B5,B6,B7,B8,B9,B10
- );
-
- assign B1 = in[0] & in[1];
- assign B2 = in[0] | in[1];
- assign B3 = in[0] ~& in[1];
- assign B4 = in[0] ~| in[1];
- assign B5 = in[0] ^ in[1];
- assign B6 = in[0] ~^ in[1];
- assign B7 = ~in[0];
- assign B8 = in[0];
- assign B9 = in[0:1] && in [2:3];
- assign B10 = in[0:1] || in [2:3];
-
-endmodule