From 99a0958601def365caf980fc97ed77832ad7cbda Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Mon, 20 Apr 2020 11:53:48 -0700 Subject: Remove ununsed files --- .../common/dynamic_part_select/multiple_blocking.v | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 tests/arch/common/dynamic_part_select/multiple_blocking.v (limited to 'tests/arch/common/dynamic_part_select/multiple_blocking.v') diff --git a/tests/arch/common/dynamic_part_select/multiple_blocking.v b/tests/arch/common/dynamic_part_select/multiple_blocking.v deleted file mode 100644 index 7861722d4..000000000 --- a/tests/arch/common/dynamic_part_select/multiple_blocking.v +++ /dev/null @@ -1,19 +0,0 @@ -module multiple_blocking #(parameter WIDTH=256, SELW=2) - (input clk , - input [9:0] ctrl , - input [15:0] din , - input [SELW-1:0] sel , - output reg [WIDTH:0] dout); - - localparam SLICE = WIDTH/(SELW**2); - reg [9:0] a; - reg [SELW-1:0] b; - reg [15:0] c; - always @(posedge clk) begin - a = ctrl + 1; - b = sel - 1; - c = ~din; - dout = dout + 1; - dout[a*b+:SLICE] = c; - end -endmodule -- cgit v1.2.3