diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-04-20 11:53:48 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-04-20 11:53:48 -0700 |
commit | 99a0958601def365caf980fc97ed77832ad7cbda (patch) | |
tree | dc6813fb68cd00cb00a6cd9a1b59a185ca74d7b6 /tests/arch/common/dynamic_part_select/original.v | |
parent | 22f440506b2b58edc27354d9ac8d474bb6185e63 (diff) | |
download | yosys-99a0958601def365caf980fc97ed77832ad7cbda.tar.gz yosys-99a0958601def365caf980fc97ed77832ad7cbda.tar.bz2 yosys-99a0958601def365caf980fc97ed77832ad7cbda.zip |
Remove ununsed files
Diffstat (limited to 'tests/arch/common/dynamic_part_select/original.v')
-rw-r--r-- | tests/arch/common/dynamic_part_select/original.v | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/arch/common/dynamic_part_select/original.v b/tests/arch/common/dynamic_part_select/original.v deleted file mode 100644 index bd7654ef5..000000000 --- a/tests/arch/common/dynamic_part_select/original.v +++ /dev/null @@ -1,13 +0,0 @@ -module original #(parameter WIDTH=256, SELW=2) - (input clk , - input [9:0] ctrl , - input [15:0] din , - input [SELW-1:0] sel , - output reg [WIDTH-1:0] dout); - - localparam SLICE = WIDTH/(SELW**2); - always @(posedge clk) - begin - dout[ctrl*sel+:SLICE] <= din ; - end -endmodule |