2018-10-07 12:39:27 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// Copyright 2017 (c) Analog Devices, Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// In this HDL repository, there are many different and unique modules, consisting
|
|
|
|
// of various HDL (Verilog or VHDL) components. The individual modules are
|
|
|
|
// developed independently, and may be accompanied by separate and unique license
|
|
|
|
// terms.
|
|
|
|
//
|
|
|
|
// The user should read each of these license terms, and understand the
|
|
|
|
// freedoms and responsabilities that he or she has by using this source/core.
|
|
|
|
//
|
|
|
|
// This core is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// Redistribution and use of source or resulting binaries, with or without modification
|
|
|
|
// of this file, are permitted under one of the following two license terms:
|
|
|
|
//
|
|
|
|
// 1. The GNU General Public License version 2 as published by the
|
|
|
|
// Free Software Foundation, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_GPL2), and also online at:
|
|
|
|
// <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
|
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
|
|
|
// 2. An ADI specific BSD license, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_ADIBSD), and also on-line at:
|
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/master/LICENSE_ADIBSD
|
|
|
|
// This will allow to generate bit files and not release the source code,
|
|
|
|
// as long as it attaches to an ADI device.
|
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
|
|
|
module util_upack2 #(
|
|
|
|
parameter NUM_OF_CHANNELS = 4,
|
|
|
|
parameter SAMPLES_PER_CHANNEL = 1,
|
|
|
|
parameter SAMPLE_DATA_WIDTH = 16
|
|
|
|
) (
|
|
|
|
input clk,
|
|
|
|
input reset,
|
|
|
|
|
|
|
|
input enable_0,
|
|
|
|
input enable_1,
|
|
|
|
input enable_2,
|
|
|
|
input enable_3,
|
|
|
|
input enable_4,
|
|
|
|
input enable_5,
|
|
|
|
input enable_6,
|
|
|
|
input enable_7,
|
|
|
|
input enable_8,
|
|
|
|
input enable_9,
|
|
|
|
input enable_10,
|
|
|
|
input enable_11,
|
|
|
|
input enable_12,
|
|
|
|
input enable_13,
|
|
|
|
input enable_14,
|
|
|
|
input enable_15,
|
2019-10-31 11:16:54 +00:00
|
|
|
input enable_16,
|
|
|
|
input enable_17,
|
|
|
|
input enable_18,
|
|
|
|
input enable_19,
|
|
|
|
input enable_20,
|
|
|
|
input enable_21,
|
|
|
|
input enable_22,
|
|
|
|
input enable_23,
|
|
|
|
input enable_24,
|
|
|
|
input enable_25,
|
|
|
|
input enable_26,
|
|
|
|
input enable_27,
|
|
|
|
input enable_28,
|
|
|
|
input enable_29,
|
|
|
|
input enable_30,
|
|
|
|
input enable_31,
|
2020-02-15 02:41:54 +00:00
|
|
|
input enable_32,
|
|
|
|
input enable_33,
|
|
|
|
input enable_34,
|
|
|
|
input enable_35,
|
|
|
|
input enable_36,
|
|
|
|
input enable_37,
|
|
|
|
input enable_38,
|
|
|
|
input enable_39,
|
|
|
|
input enable_40,
|
|
|
|
input enable_41,
|
|
|
|
input enable_42,
|
|
|
|
input enable_43,
|
|
|
|
input enable_44,
|
|
|
|
input enable_45,
|
|
|
|
input enable_46,
|
|
|
|
input enable_47,
|
|
|
|
input enable_48,
|
|
|
|
input enable_49,
|
|
|
|
input enable_50,
|
|
|
|
input enable_51,
|
|
|
|
input enable_52,
|
|
|
|
input enable_53,
|
|
|
|
input enable_54,
|
|
|
|
input enable_55,
|
|
|
|
input enable_56,
|
|
|
|
input enable_57,
|
|
|
|
input enable_58,
|
|
|
|
input enable_59,
|
|
|
|
input enable_60,
|
|
|
|
input enable_61,
|
|
|
|
input enable_62,
|
|
|
|
input enable_63,
|
2018-10-07 12:39:27 +00:00
|
|
|
|
|
|
|
input fifo_rd_en,
|
|
|
|
output fifo_rd_valid,
|
|
|
|
output fifo_rd_underflow,
|
|
|
|
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_0,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_1,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_2,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_3,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_4,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_5,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_6,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_7,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_8,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_9,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_10,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_11,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_12,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_13,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_14,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_15,
|
2019-10-31 11:16:54 +00:00
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_16,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_17,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_18,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_19,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_20,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_21,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_22,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_23,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_24,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_25,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_26,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_27,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_28,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_29,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_30,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_31,
|
2020-02-15 02:41:54 +00:00
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_32,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_33,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_34,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_35,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_36,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_37,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_38,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_39,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_40,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_41,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_42,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_43,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_44,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_45,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_46,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_47,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_48,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_49,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_50,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_51,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_52,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_53,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_54,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_55,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_56,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_57,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_58,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_59,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_60,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_61,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_62,
|
|
|
|
output [SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] fifo_rd_data_63,
|
|
|
|
|
2018-10-07 12:39:27 +00:00
|
|
|
|
|
|
|
input s_axis_valid,
|
|
|
|
output s_axis_ready,
|
|
|
|
input [2**$clog2(NUM_OF_CHANNELS)*SAMPLE_DATA_WIDTH*SAMPLES_PER_CHANNEL-1:0] s_axis_data
|
|
|
|
);
|
|
|
|
|
|
|
|
localparam CHANNEL_DATA_WIDTH = SAMPLE_DATA_WIDTH * SAMPLES_PER_CHANNEL;
|
|
|
|
/*
|
|
|
|
* Round up to the next power of two and zero out the additional channels
|
|
|
|
* internally.
|
|
|
|
*/
|
2020-02-15 02:41:54 +00:00
|
|
|
localparam REAL_NUM_OF_CHANNELS = NUM_OF_CHANNELS > 32 ? 64 :
|
|
|
|
NUM_OF_CHANNELS > 16 ? 32 :
|
2019-10-31 11:16:54 +00:00
|
|
|
NUM_OF_CHANNELS > 8 ? 16 :
|
2018-10-07 12:39:27 +00:00
|
|
|
NUM_OF_CHANNELS > 4 ? 8 :
|
|
|
|
NUM_OF_CHANNELS > 2 ? 4 :
|
|
|
|
NUM_OF_CHANNELS > 1 ? 2 : 1;
|
|
|
|
|
|
|
|
/* FIXME: Find out how to do this in the IP-XACT */
|
|
|
|
|
2020-02-15 02:41:54 +00:00
|
|
|
wire [63:0] enable_s;
|
2018-10-07 12:39:27 +00:00
|
|
|
wire [CHANNEL_DATA_WIDTH*REAL_NUM_OF_CHANNELS-1:0] fifo_rd_data;
|
2020-02-15 02:41:54 +00:00
|
|
|
wire [CHANNEL_DATA_WIDTH*64-1:0] fifo_rd_data_s;
|
2018-10-07 12:39:27 +00:00
|
|
|
|
|
|
|
util_upack2_impl #(
|
|
|
|
.NUM_OF_CHANNELS(REAL_NUM_OF_CHANNELS),
|
|
|
|
.SAMPLE_DATA_WIDTH(SAMPLE_DATA_WIDTH),
|
|
|
|
.SAMPLES_PER_CHANNEL(SAMPLES_PER_CHANNEL)
|
|
|
|
) i_upack (
|
|
|
|
.clk (clk),
|
|
|
|
.reset (reset),
|
|
|
|
|
|
|
|
.enable (enable_s[REAL_NUM_OF_CHANNELS-1:0]),
|
|
|
|
|
|
|
|
.fifo_rd_en ({REAL_NUM_OF_CHANNELS{fifo_rd_en}}),
|
|
|
|
.fifo_rd_valid (fifo_rd_valid),
|
|
|
|
.fifo_rd_underflow (fifo_rd_underflow),
|
|
|
|
.fifo_rd_data (fifo_rd_data),
|
|
|
|
|
|
|
|
.s_axis_valid (s_axis_valid),
|
|
|
|
.s_axis_ready (s_axis_ready),
|
|
|
|
.s_axis_data (s_axis_data)
|
|
|
|
);
|
|
|
|
|
|
|
|
assign enable_s = {
|
2020-02-15 02:41:54 +00:00
|
|
|
enable_63,enable_62,enable_61,enable_60,enable_59,enable_58,enable_57,enable_56,
|
|
|
|
enable_55,enable_54,enable_53,enable_52,enable_51,enable_50,enable_49,enable_48,
|
|
|
|
enable_47,enable_46,enable_45,enable_44,enable_43,enable_42,enable_41,enable_40,
|
|
|
|
enable_39,enable_38,enable_37,enable_36,enable_35,enable_34,enable_33,enable_32,
|
2019-10-31 11:16:54 +00:00
|
|
|
enable_31,enable_30,enable_29,enable_28,enable_27,enable_26,enable_25,enable_24,
|
|
|
|
enable_23,enable_22,enable_21,enable_20,enable_19,enable_18,enable_17,enable_16,
|
2018-10-07 12:39:27 +00:00
|
|
|
enable_15,enable_14,enable_13,enable_12,enable_11,enable_10,enable_9,enable_8,
|
|
|
|
enable_7,enable_6,enable_5,enable_4,enable_3,enable_2,enable_1,enable_0
|
|
|
|
};
|
|
|
|
|
2020-02-15 02:41:54 +00:00
|
|
|
assign fifo_rd_data_s = {{(64-NUM_OF_CHANNELS)*CHANNEL_DATA_WIDTH{1'b0}},fifo_rd_data};
|
2018-10-07 12:39:27 +00:00
|
|
|
|
|
|
|
assign fifo_rd_data_0 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*0+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_1 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*1+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_2 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*2+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_3 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*3+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_4 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*4+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_5 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*5+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_6 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*6+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_7 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*7+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_8 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*8+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_9 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*9+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_10 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*10+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_11 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*11+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_12 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*12+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_13 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*13+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_14 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*14+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_15 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*15+:CHANNEL_DATA_WIDTH];
|
2019-10-31 11:16:54 +00:00
|
|
|
assign fifo_rd_data_16 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*16+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_17 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*17+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_18 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*18+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_19 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*19+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_20 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*20+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_21 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*21+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_22 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*22+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_23 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*23+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_24 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*24+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_25 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*25+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_26 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*26+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_27 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*27+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_28 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*28+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_29 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*29+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_30 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*30+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_31 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*31+:CHANNEL_DATA_WIDTH];
|
2020-02-15 02:41:54 +00:00
|
|
|
assign fifo_rd_data_32 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*32+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_33 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*33+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_34 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*34+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_35 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*35+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_36 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*36+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_37 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*37+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_38 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*38+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_39 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*39+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_40 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*40+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_41 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*41+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_42 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*42+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_43 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*43+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_44 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*44+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_45 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*45+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_46 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*46+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_47 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*47+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_48 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*48+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_49 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*49+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_50 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*50+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_51 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*51+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_52 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*52+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_53 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*53+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_54 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*54+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_55 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*55+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_56 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*56+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_57 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*57+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_58 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*58+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_59 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*59+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_60 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*60+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_61 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*61+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_62 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*62+:CHANNEL_DATA_WIDTH];
|
|
|
|
assign fifo_rd_data_63 = fifo_rd_data_s[CHANNEL_DATA_WIDTH*63+:CHANNEL_DATA_WIDTH];
|
2018-10-07 12:39:27 +00:00
|
|
|
|
|
|
|
endmodule
|