From 22f440506b2b58edc27354d9ac8d474bb6185e63 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 20 Apr 2020 12:45:35 -0500 Subject: Modifications of tests as per Eddie's request --- .../arch/common/dynamic_part_select/forloop_select.v | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 tests/arch/common/dynamic_part_select/forloop_select.v (limited to 'tests/arch/common/dynamic_part_select') 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 - -- cgit v1.2.3