aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/dynamic_part_select
diff options
context:
space:
mode:
authordiego <diego@symbioticeda.com>2020-04-20 12:45:35 -0500
committerdiego <diego@symbioticeda.com>2020-04-20 12:45:35 -0500
commit22f440506b2b58edc27354d9ac8d474bb6185e63 (patch)
tree2b8b0b389f4935ae4741bf96ac33f46d9d7e1c1b /tests/arch/common/dynamic_part_select
parent50581d5a94730b33e2ca1b7f7371f502ef9263c6 (diff)
downloadyosys-22f440506b2b58edc27354d9ac8d474bb6185e63.tar.gz
yosys-22f440506b2b58edc27354d9ac8d474bb6185e63.tar.bz2
yosys-22f440506b2b58edc27354d9ac8d474bb6185e63.zip
Modifications of tests as per Eddie's request
Diffstat (limited to 'tests/arch/common/dynamic_part_select')
-rw-r--r--tests/arch/common/dynamic_part_select/forloop_select.v19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/arch/common/dynamic_part_select/forloop_select.v b/tests/arch/common/dynamic_part_select/forloop_select.v
deleted file mode 100644
index 9276a3ed8..000000000
--- a/tests/arch/common/dynamic_part_select/forloop_select.v
+++ /dev/null
@@ -1,19 +0,0 @@
-module forloop_select #(parameter WIDTH=256, SELW=4)
- (input clk ,
- input [9:0] ctrl ,
- input [15:0] din ,
- input en,
- output reg [WIDTH-1:0] dout);
-
- reg [SELW-1:0] sel;
- localparam SLICE = WIDTH/(SELW**2);
-
- always @(posedge clk)
- begin
- if (en) begin
- for (sel = 0; sel < 4'hf; sel=sel+1'b1)
- dout[(ctrl*sel)+:SLICE] <= din;
- end
- end
-endmodule
-