aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/ice40/shifter.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/ice40/shifter.v')
-rw-r--r--tests/arch/ice40/shifter.v22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/arch/ice40/shifter.v b/tests/arch/ice40/shifter.v
deleted file mode 100644
index c55632552..000000000
--- a/tests/arch/ice40/shifter.v
+++ /dev/null
@@ -1,22 +0,0 @@
-module top (
-out,
-clk,
-in
-);
- output [7:0] out;
- input signed clk, in;
- reg signed [7:0] out = 0;
-
- always @(posedge clk)
- begin
-`ifndef BUG
- out <= out >> 1;
- out[7] <= in;
-`else
-
- out <= out << 1;
- out[7] <= in;
-`endif
- end
-
-endmodule