content
stringlengths
1
1.04M
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc1916.vhd,v 1.2 2001-10-26 16:29:43 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c07s02b01x00p01n01i01916ent IS END c07s02b01x00p01n01i01916ent; ARCHITECTURE c07s02b01x00p01n01i01916arch OF c07s02b01x00p01n01i01916ent IS BEGIN TESTING: PROCESS variable b1 : bit := '0'; BEGIN b1 := b1 or b1; assert NOT(b1 = '0') report "***PASSED TEST: c07s02b01x00p01n01i01916" severity NOTE; assert (b1 = '0') report "***FAILED TEST: c07s02b01x00p01n01i01916 - Logical operators defined only for predefined types BIT and BOOLEAN." severity ERROR; wait; END PROCESS TESTING; END c07s02b01x00p01n01i01916arch;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 08:53:34 07/04/2008 -- Design Name: -- Module Name: txcrc - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity txcrc is Port ( sysclk : in STD_LOGIC; reset : in STD_LOGIC; data_o : out STD_LOGIC_VECTOR (7 downto 0); data_send : out STD_LOGIC; data_o_req : in STD_LOGIC; data_i : in STD_LOGIC_VECTOR (7 downto 0); data_i_v : in STD_LOGIC; data_i_req : out STD_LOGIC); end txcrc; architecture Behavioral of txcrc is function nextCRC32_D8 ( Data: std_logic_vector(7 downto 0); CRC: std_logic_vector(31 downto 0) ) return std_logic_vector is variable D: std_logic_vector(7 downto 0); variable C: std_logic_vector(31 downto 0); variable NewCRC: std_logic_vector(31 downto 0); begin -- D(0) := Data(7); -- D(1) := Data(6); -- D(2) := Data(5); -- D(3) := Data(4); -- D(4) := Data(3); -- D(5) := Data(2); -- D(6) := Data(1); -- D(7) := Data(0); D(0) := Data(3); D(1) := Data(2); D(2) := Data(1); D(3) := Data(0); D(4) := Data(7); D(5) := Data(6); D(6) := Data(5); D(7) := Data(4); C := CRC; NewCRC(0) := D(6) xor D(0) xor C(24) xor C(30); NewCRC(1) := D(7) xor D(6) xor D(1) xor D(0) xor C(24) xor C(25) xor C(30) xor C(31); NewCRC(2) := D(7) xor D(6) xor D(2) xor D(1) xor D(0) xor C(24) xor C(25) xor C(26) xor C(30) xor C(31); NewCRC(3) := D(7) xor D(3) xor D(2) xor D(1) xor C(25) xor C(26) xor C(27) xor C(31); NewCRC(4) := D(6) xor D(4) xor D(3) xor D(2) xor D(0) xor C(24) xor C(26) xor C(27) xor C(28) xor C(30); NewCRC(5) := D(7) xor D(6) xor D(5) xor D(4) xor D(3) xor D(1) xor D(0) xor C(24) xor C(25) xor C(27) xor C(28) xor C(29) xor C(30) xor C(31); NewCRC(6) := D(7) xor D(6) xor D(5) xor D(4) xor D(2) xor D(1) xor C(25) xor C(26) xor C(28) xor C(29) xor C(30) xor C(31); NewCRC(7) := D(7) xor D(5) xor D(3) xor D(2) xor D(0) xor C(24) xor C(26) xor C(27) xor C(29) xor C(31); NewCRC(8) := D(4) xor D(3) xor D(1) xor D(0) xor C(0) xor C(24) xor C(25) xor C(27) xor C(28); NewCRC(9) := D(5) xor D(4) xor D(2) xor D(1) xor C(1) xor C(25) xor C(26) xor C(28) xor C(29); NewCRC(10) := D(5) xor D(3) xor D(2) xor D(0) xor C(2) xor C(24) xor C(26) xor C(27) xor C(29); NewCRC(11) := D(4) xor D(3) xor D(1) xor D(0) xor C(3) xor C(24) xor C(25) xor C(27) xor C(28); NewCRC(12) := D(6) xor D(5) xor D(4) xor D(2) xor D(1) xor D(0) xor C(4) xor C(24) xor C(25) xor C(26) xor C(28) xor C(29) xor C(30); NewCRC(13) := D(7) xor D(6) xor D(5) xor D(3) xor D(2) xor D(1) xor C(5) xor C(25) xor C(26) xor C(27) xor C(29) xor C(30) xor C(31); NewCRC(14) := D(7) xor D(6) xor D(4) xor D(3) xor D(2) xor C(6) xor C(26) xor C(27) xor C(28) xor C(30) xor C(31); NewCRC(15) := D(7) xor D(5) xor D(4) xor D(3) xor C(7) xor C(27) xor C(28) xor C(29) xor C(31); NewCRC(16) := D(5) xor D(4) xor D(0) xor C(8) xor C(24) xor C(28) xor C(29); NewCRC(17) := D(6) xor D(5) xor D(1) xor C(9) xor C(25) xor C(29) xor C(30); NewCRC(18) := D(7) xor D(6) xor D(2) xor C(10) xor C(26) xor C(30) xor C(31); NewCRC(19) := D(7) xor D(3) xor C(11) xor C(27) xor C(31); NewCRC(20) := D(4) xor C(12) xor C(28); NewCRC(21) := D(5) xor C(13) xor C(29); NewCRC(22) := D(0) xor C(14) xor C(24); NewCRC(23) := D(6) xor D(1) xor D(0) xor C(15) xor C(24) xor C(25) xor C(30); NewCRC(24) := D(7) xor D(2) xor D(1) xor C(16) xor C(25) xor C(26) xor C(31); NewCRC(25) := D(3) xor D(2) xor C(17) xor C(26) xor C(27); NewCRC(26) := D(6) xor D(4) xor D(3) xor D(0) xor C(18) xor C(24) xor C(27) xor C(28) xor C(30); NewCRC(27) := D(7) xor D(5) xor D(4) xor D(1) xor C(19) xor C(25) xor C(28) xor C(29) xor C(31); NewCRC(28) := D(6) xor D(5) xor D(2) xor C(20) xor C(26) xor C(29) xor C(30); NewCRC(29) := D(7) xor D(6) xor D(3) xor C(21) xor C(27) xor C(30) xor C(31); NewCRC(30) := D(7) xor D(4) xor C(22) xor C(28) xor C(31); NewCRC(31) := D(5) xor C(23) xor C(29); return NewCRC; end nextCRC32_D8; -- type state_t is (Idle, TX, st_CRC); -- signal state:state_t; -- -- signal ireg:std_logic_vector(7 downto 0); -- signal counter:integer range 0 to 3; -- signal crc, nextcrc:std_logic_vector(31 downto 0); begin data_o <= data_i when state = stCRC else crcmux; -- nextcrc <= nextCRC32_D8(ireg, crc); -- process(sysclk) is -- begin -- if rising_edge(sysclk) then -- if reset = '1' then -- data_i_req <= '0'; -- data_send <= '0'; -- state <= Idle; -- crc <= (OTHERS => '1'); -- data_o <= (OTHERS => '0'); -- else -- case state is -- when TX => -- if data_o_req = '1' then -- data_o <= ireg; -- crc <= nextcrc; -- data_send <= '1'; -- data_i_req <= '1'; -- else -- data_i_req <= '0'; -- end if; -- if data_i_v = '1' then -- ireg <= data_i; -- else -- state <= st_CRC; -- counter <= 3; -- ireg <= (OTHERS => '0'); -- end if; -- when st_CRC => -- if data_o_req = '1' then -- --data_o <= crc(counter*8+7 downto counter*8); -- data_o(7) <= not crc(counter*8); -- data_o(6) <= not crc(counter*8+1); -- data_o(5) <= not crc(counter*8+2); -- data_o(4) <= not crc(counter*8+3); -- data_o(3) <= not crc(counter*8+4); -- data_o(2) <= not crc(counter*8+5); -- data_o(1) <= not crc(counter*8+6); -- data_o(0) <= not crc(counter*8+7); -- -- if counter = 0 then -- state <= Idle; -- data_i_req <= '1'; -- else -- counter <= counter - 1; -- data_i_req <= '0'; -- end if; -- end if; -- when others => --Idle -- crc <= (OTHERS => '1'); -- if data_o_req = '1' then -- data_send <= '0'; -- end if; -- if data_i_v = '1' then -- ireg <= data_i; -- data_i_req <= '0'; -- state <= TX; -- else -- data_i_req <= '1'; -- end if; -- end case; -- end if; -- end if; -- end process; end Behavioral;
-- Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2017.2 (win64) Build 1909853 Thu Jun 15 18:39:09 MDT 2017 -- Date : Wed Sep 20 21:10:34 2017 -- Host : EffulgentTome running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode funcsim -rename_top decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix -prefix -- decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_ zqynq_lab_1_design_xbar_0_sim_netlist.vhdl -- Design : zqynq_lab_1_design_xbar_0 -- Purpose : This VHDL netlist is a functional simulation representation of the design and should not be modified or -- synthesized. This netlist cannot be used for SDF annotated simulation. -- Device : xc7z020clg484-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter is port ( S_AXI_ARREADY : out STD_LOGIC_VECTOR ( 0 to 0 ); aa_mi_arvalid : out STD_LOGIC; \gen_axi.s_axi_rid_i_reg[11]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); Q : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rlast_i0 : out STD_LOGIC; \m_axi_arqos[15]\ : out STD_LOGIC_VECTOR ( 68 downto 0 ); ADDRESS_HIT_0 : out STD_LOGIC; match : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ : out STD_LOGIC; sel_4 : out STD_LOGIC; sel_2 : out STD_LOGIC; ADDRESS_HIT_3 : out STD_LOGIC; ADDRESS_HIT_1 : out STD_LOGIC; D : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_master_slots[1].r_issuing_cnt_reg[11]\ : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_master_slots[3].r_issuing_cnt_reg[27]\ : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_master_slots[2].r_issuing_cnt_reg[19]\ : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_no_arbiter.s_ready_i_reg[0]_0\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]_1\ : out STD_LOGIC; m_axi_arvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); p_93_in : out STD_LOGIC; p_39_in : out STD_LOGIC; p_57_in : out STD_LOGIC; p_75_in : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_target_reg[56]\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]_0\ : out STD_LOGIC; \gen_master_slots[4].r_issuing_cnt_reg[32]\ : out STD_LOGIC; E : in STD_LOGIC_VECTOR ( 0 to 0 ); aclk : in STD_LOGIC; SR : in STD_LOGIC_VECTOR ( 0 to 0 ); mi_arready_4 : in STD_LOGIC; p_23_in : in STD_LOGIC; \read_cs__0\ : in STD_LOGIC; \s_axi_arqos[3]\ : in STD_LOGIC_VECTOR ( 68 downto 0 ); r_issuing_cnt : in STD_LOGIC_VECTOR ( 16 downto 0 ); \r_cmd_pop_0__1\ : in STD_LOGIC; m_axi_arready : in STD_LOGIC_VECTOR ( 3 downto 0 ); \r_cmd_pop_1__1\ : in STD_LOGIC; \r_cmd_pop_3__1\ : in STD_LOGIC; \r_cmd_pop_2__1\ : in STD_LOGIC; s_axi_arvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); m_valid_i : in STD_LOGIC; \r_cmd_pop_4__1\ : in STD_LOGIC; \s_axi_araddr[18]\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter is signal \^address_hit_0\ : STD_LOGIC; signal \^q\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^s_axi_arready\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal aa_mi_artarget_hot : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \^aa_mi_arvalid\ : STD_LOGIC; signal \gen_axi.s_axi_rlast_i_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[0].r_issuing_cnt[3]_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[1].r_issuing_cnt[11]_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[2].r_issuing_cnt[19]_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[3].r_issuing_cnt[27]_i_5_n_0\ : STD_LOGIC; signal \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ : STD_LOGIC; signal \gen_no_arbiter.m_target_hot_i[1]_i_2__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.m_valid_i_i_1_n_0\ : STD_LOGIC; signal \gen_no_arbiter.m_valid_i_i_2_n_0\ : STD_LOGIC; signal \gen_no_arbiter.m_valid_i_i_3_n_0\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\ : STD_LOGIC; signal \^m_axi_arqos[15]\ : STD_LOGIC_VECTOR ( 68 downto 0 ); signal \^match\ : STD_LOGIC; signal s_ready_i2 : STD_LOGIC; signal \^sel_2\ : STD_LOGIC; signal \^sel_4\ : STD_LOGIC; signal st_aa_artarget_hot : STD_LOGIC_VECTOR ( 3 downto 0 ); attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_axi.s_axi_rid_i[11]_i_1\ : label is "soft_lutpair3"; attribute SOFT_HLUTNM of \gen_master_slots[0].r_issuing_cnt[2]_i_1\ : label is "soft_lutpair5"; attribute SOFT_HLUTNM of \gen_master_slots[0].r_issuing_cnt[3]_i_2\ : label is "soft_lutpair5"; attribute SOFT_HLUTNM of \gen_master_slots[0].r_issuing_cnt[3]_i_4\ : label is "soft_lutpair11"; attribute SOFT_HLUTNM of \gen_master_slots[1].r_issuing_cnt[10]_i_1\ : label is "soft_lutpair4"; attribute SOFT_HLUTNM of \gen_master_slots[1].r_issuing_cnt[11]_i_2\ : label is "soft_lutpair4"; attribute SOFT_HLUTNM of \gen_master_slots[1].r_issuing_cnt[11]_i_4\ : label is "soft_lutpair8"; attribute SOFT_HLUTNM of \gen_master_slots[2].r_issuing_cnt[19]_i_2\ : label is "soft_lutpair6"; attribute SOFT_HLUTNM of \gen_master_slots[2].r_issuing_cnt[19]_i_4\ : label is "soft_lutpair9"; attribute SOFT_HLUTNM of \gen_master_slots[3].r_issuing_cnt[26]_i_1\ : label is "soft_lutpair1"; attribute SOFT_HLUTNM of \gen_master_slots[3].r_issuing_cnt[27]_i_2\ : label is "soft_lutpair1"; attribute SOFT_HLUTNM of \gen_master_slots[3].r_issuing_cnt[27]_i_4\ : label is "soft_lutpair10"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[56]_i_1__0\ : label is "soft_lutpair0"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[57]_i_1__0\ : label is "soft_lutpair2"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[1]_i_2__0\ : label is "soft_lutpair7"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[2]_i_1__0\ : label is "soft_lutpair2"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[3]_i_1__0\ : label is "soft_lutpair0"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[3]_i_4__0\ : label is "soft_lutpair7"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_valid_i_i_1\ : label is "soft_lutpair10"; attribute SOFT_HLUTNM of \gen_no_arbiter.s_ready_i[0]_i_26__0\ : label is "soft_lutpair6"; attribute SOFT_HLUTNM of \m_axi_arvalid[0]_INST_0\ : label is "soft_lutpair11"; attribute SOFT_HLUTNM of \m_axi_arvalid[1]_INST_0\ : label is "soft_lutpair8"; attribute SOFT_HLUTNM of \m_axi_arvalid[2]_INST_0\ : label is "soft_lutpair9"; attribute SOFT_HLUTNM of \m_axi_arvalid[3]_INST_0\ : label is "soft_lutpair3"; begin ADDRESS_HIT_0 <= \^address_hit_0\; Q(0) <= \^q\(0); S_AXI_ARREADY(0) <= \^s_axi_arready\(0); aa_mi_arvalid <= \^aa_mi_arvalid\; \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ <= \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\; \m_axi_arqos[15]\(68 downto 0) <= \^m_axi_arqos[15]\(68 downto 0); match <= \^match\; sel_2 <= \^sel_2\; sel_4 <= \^sel_4\; \gen_axi.s_axi_rid_i[11]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"0080" ) port map ( I0 => \^q\(0), I1 => \^aa_mi_arvalid\, I2 => mi_arready_4, I3 => p_23_in, O => \gen_axi.s_axi_rid_i_reg[11]\(0) ); \gen_axi.s_axi_rlast_i_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"55035500" ) port map ( I0 => \read_cs__0\, I1 => \^m_axi_arqos[15]\(45), I2 => \^m_axi_arqos[15]\(44), I3 => p_23_in, I4 => \gen_axi.s_axi_rlast_i_i_5_n_0\, O => s_axi_rlast_i0 ); \gen_axi.s_axi_rlast_i_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000001" ) port map ( I0 => \^m_axi_arqos[15]\(46), I1 => \^m_axi_arqos[15]\(47), I2 => \^m_axi_arqos[15]\(48), I3 => \^m_axi_arqos[15]\(49), I4 => \^m_axi_arqos[15]\(51), I5 => \^m_axi_arqos[15]\(50), O => \gen_axi.s_axi_rlast_i_i_5_n_0\ ); \gen_master_slots[0].r_issuing_cnt[1]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"9AAAAAAA65555555" ) port map ( I0 => r_issuing_cnt(0), I1 => \r_cmd_pop_0__1\, I2 => m_axi_arready(0), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(0), I5 => r_issuing_cnt(1), O => D(0) ); \gen_master_slots[0].r_issuing_cnt[2]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => \gen_master_slots[0].r_issuing_cnt[3]_i_5_n_0\, I1 => r_issuing_cnt(1), I2 => r_issuing_cnt(2), O => D(1) ); \gen_master_slots[0].r_issuing_cnt[3]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => r_issuing_cnt(1), I1 => \gen_master_slots[0].r_issuing_cnt[3]_i_5_n_0\, I2 => r_issuing_cnt(3), I3 => r_issuing_cnt(2), O => D(2) ); \gen_master_slots[0].r_issuing_cnt[3]_i_4\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => m_axi_arready(0), I1 => \^aa_mi_arvalid\, I2 => aa_mi_artarget_hot(0), O => p_93_in ); \gen_master_slots[0].r_issuing_cnt[3]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"20000000BAAAAAAA" ) port map ( I0 => r_issuing_cnt(0), I1 => \r_cmd_pop_0__1\, I2 => m_axi_arready(0), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(0), I5 => r_issuing_cnt(1), O => \gen_master_slots[0].r_issuing_cnt[3]_i_5_n_0\ ); \gen_master_slots[1].r_issuing_cnt[10]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => \gen_master_slots[1].r_issuing_cnt[11]_i_5_n_0\, I1 => r_issuing_cnt(5), I2 => r_issuing_cnt(6), O => \gen_master_slots[1].r_issuing_cnt_reg[11]\(1) ); \gen_master_slots[1].r_issuing_cnt[11]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => r_issuing_cnt(5), I1 => \gen_master_slots[1].r_issuing_cnt[11]_i_5_n_0\, I2 => r_issuing_cnt(7), I3 => r_issuing_cnt(6), O => \gen_master_slots[1].r_issuing_cnt_reg[11]\(2) ); \gen_master_slots[1].r_issuing_cnt[11]_i_4\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => m_axi_arready(1), I1 => \^aa_mi_arvalid\, I2 => aa_mi_artarget_hot(1), O => p_75_in ); \gen_master_slots[1].r_issuing_cnt[11]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"20000000BAAAAAAA" ) port map ( I0 => r_issuing_cnt(4), I1 => \r_cmd_pop_1__1\, I2 => m_axi_arready(1), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(1), I5 => r_issuing_cnt(5), O => \gen_master_slots[1].r_issuing_cnt[11]_i_5_n_0\ ); \gen_master_slots[1].r_issuing_cnt[9]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"9AAAAAAA65555555" ) port map ( I0 => r_issuing_cnt(4), I1 => \r_cmd_pop_1__1\, I2 => m_axi_arready(1), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(1), I5 => r_issuing_cnt(5), O => \gen_master_slots[1].r_issuing_cnt_reg[11]\(0) ); \gen_master_slots[2].r_issuing_cnt[17]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"9AAAAAAA65555555" ) port map ( I0 => r_issuing_cnt(8), I1 => \r_cmd_pop_2__1\, I2 => m_axi_arready(2), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(2), I5 => r_issuing_cnt(9), O => \gen_master_slots[2].r_issuing_cnt_reg[19]\(0) ); \gen_master_slots[2].r_issuing_cnt[18]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => \gen_master_slots[2].r_issuing_cnt[19]_i_5_n_0\, I1 => r_issuing_cnt(9), I2 => r_issuing_cnt(10), O => \gen_master_slots[2].r_issuing_cnt_reg[19]\(1) ); \gen_master_slots[2].r_issuing_cnt[19]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => r_issuing_cnt(9), I1 => \gen_master_slots[2].r_issuing_cnt[19]_i_5_n_0\, I2 => r_issuing_cnt(11), I3 => r_issuing_cnt(10), O => \gen_master_slots[2].r_issuing_cnt_reg[19]\(2) ); \gen_master_slots[2].r_issuing_cnt[19]_i_4\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => m_axi_arready(2), I1 => \^aa_mi_arvalid\, I2 => aa_mi_artarget_hot(2), O => p_57_in ); \gen_master_slots[2].r_issuing_cnt[19]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"20000000BAAAAAAA" ) port map ( I0 => r_issuing_cnt(8), I1 => \r_cmd_pop_2__1\, I2 => m_axi_arready(2), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(2), I5 => r_issuing_cnt(9), O => \gen_master_slots[2].r_issuing_cnt[19]_i_5_n_0\ ); \gen_master_slots[3].r_issuing_cnt[25]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"9AAAAAAA65555555" ) port map ( I0 => r_issuing_cnt(12), I1 => \r_cmd_pop_3__1\, I2 => m_axi_arready(3), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(3), I5 => r_issuing_cnt(13), O => \gen_master_slots[3].r_issuing_cnt_reg[27]\(0) ); \gen_master_slots[3].r_issuing_cnt[26]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => \gen_master_slots[3].r_issuing_cnt[27]_i_5_n_0\, I1 => r_issuing_cnt(13), I2 => r_issuing_cnt(14), O => \gen_master_slots[3].r_issuing_cnt_reg[27]\(1) ); \gen_master_slots[3].r_issuing_cnt[27]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => r_issuing_cnt(13), I1 => \gen_master_slots[3].r_issuing_cnt[27]_i_5_n_0\, I2 => r_issuing_cnt(15), I3 => r_issuing_cnt(14), O => \gen_master_slots[3].r_issuing_cnt_reg[27]\(2) ); \gen_master_slots[3].r_issuing_cnt[27]_i_4\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => m_axi_arready(3), I1 => \^aa_mi_arvalid\, I2 => aa_mi_artarget_hot(3), O => p_39_in ); \gen_master_slots[3].r_issuing_cnt[27]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"20000000BAAAAAAA" ) port map ( I0 => r_issuing_cnt(12), I1 => \r_cmd_pop_3__1\, I2 => m_axi_arready(3), I3 => \^aa_mi_arvalid\, I4 => aa_mi_artarget_hot(3), I5 => r_issuing_cnt(13), O => \gen_master_slots[3].r_issuing_cnt[27]_i_5_n_0\ ); \gen_master_slots[4].r_issuing_cnt[32]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"807F0080" ) port map ( I0 => \^q\(0), I1 => \^aa_mi_arvalid\, I2 => mi_arready_4, I3 => \r_cmd_pop_4__1\, I4 => r_issuing_cnt(16), O => \gen_master_slots[4].r_issuing_cnt_reg[32]\ ); \gen_multi_thread.gen_thread_loop[7].active_target[56]_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"F0808080" ) port map ( I0 => \^sel_2\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\, I2 => \^sel_4\, I3 => \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I4 => \gen_no_arbiter.m_target_hot_i[1]_i_2__0_n_0\, O => \gen_multi_thread.gen_thread_loop[7].active_target_reg[56]\ ); \gen_multi_thread.gen_thread_loop[7].active_target[57]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"A080" ) port map ( I0 => \^sel_2\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\, I2 => \^sel_4\, I3 => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\, O => \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]_0\ ); \gen_no_arbiter.m_mesg_i[11]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^aa_mi_arvalid\, O => s_ready_i2 ); \gen_no_arbiter.m_mesg_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(0), Q => \^m_axi_arqos[15]\(0), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(10), Q => \^m_axi_arqos[15]\(10), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(11), Q => \^m_axi_arqos[15]\(11), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(12), Q => \^m_axi_arqos[15]\(12), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(13), Q => \^m_axi_arqos[15]\(13), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(14), Q => \^m_axi_arqos[15]\(14), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(15), Q => \^m_axi_arqos[15]\(15), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(16), Q => \^m_axi_arqos[15]\(16), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(17), Q => \^m_axi_arqos[15]\(17), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(18), Q => \^m_axi_arqos[15]\(18), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(19), Q => \^m_axi_arqos[15]\(19), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(1), Q => \^m_axi_arqos[15]\(1), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(20), Q => \^m_axi_arqos[15]\(20), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(21), Q => \^m_axi_arqos[15]\(21), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(22), Q => \^m_axi_arqos[15]\(22), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(23), Q => \^m_axi_arqos[15]\(23), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(24), Q => \^m_axi_arqos[15]\(24), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(25), Q => \^m_axi_arqos[15]\(25), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(26), Q => \^m_axi_arqos[15]\(26), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(27), Q => \^m_axi_arqos[15]\(27), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(28), Q => \^m_axi_arqos[15]\(28), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(29), Q => \^m_axi_arqos[15]\(29), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(2), Q => \^m_axi_arqos[15]\(2), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(30), Q => \^m_axi_arqos[15]\(30), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(31), Q => \^m_axi_arqos[15]\(31), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(32), Q => \^m_axi_arqos[15]\(32), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(33), Q => \^m_axi_arqos[15]\(33), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(34), Q => \^m_axi_arqos[15]\(34), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(35), Q => \^m_axi_arqos[15]\(35), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(36), Q => \^m_axi_arqos[15]\(36), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(37), Q => \^m_axi_arqos[15]\(37), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(38), Q => \^m_axi_arqos[15]\(38), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(39), Q => \^m_axi_arqos[15]\(39), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(3), Q => \^m_axi_arqos[15]\(3), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(40), Q => \^m_axi_arqos[15]\(40), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(41), Q => \^m_axi_arqos[15]\(41), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(42), Q => \^m_axi_arqos[15]\(42), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(43), Q => \^m_axi_arqos[15]\(43), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(44), Q => \^m_axi_arqos[15]\(44), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(45), Q => \^m_axi_arqos[15]\(45), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(46), Q => \^m_axi_arqos[15]\(46), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[47]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(47), Q => \^m_axi_arqos[15]\(47), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[48]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(48), Q => \^m_axi_arqos[15]\(48), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[49]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(49), Q => \^m_axi_arqos[15]\(49), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(4), Q => \^m_axi_arqos[15]\(4), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[50]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(50), Q => \^m_axi_arqos[15]\(50), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[51]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(51), Q => \^m_axi_arqos[15]\(51), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[52]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(52), Q => \^m_axi_arqos[15]\(52), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[53]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(53), Q => \^m_axi_arqos[15]\(53), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[54]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(54), Q => \^m_axi_arqos[15]\(54), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[55]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(55), Q => \^m_axi_arqos[15]\(55), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[57]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(56), Q => \^m_axi_arqos[15]\(56), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[58]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(57), Q => \^m_axi_arqos[15]\(57), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[59]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(58), Q => \^m_axi_arqos[15]\(58), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(5), Q => \^m_axi_arqos[15]\(5), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[64]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(59), Q => \^m_axi_arqos[15]\(59), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[65]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(60), Q => \^m_axi_arqos[15]\(60), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[66]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(61), Q => \^m_axi_arqos[15]\(61), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[67]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(62), Q => \^m_axi_arqos[15]\(62), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[68]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(63), Q => \^m_axi_arqos[15]\(63), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[69]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(64), Q => \^m_axi_arqos[15]\(64), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(6), Q => \^m_axi_arqos[15]\(6), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[70]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(65), Q => \^m_axi_arqos[15]\(65), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[71]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(66), Q => \^m_axi_arqos[15]\(66), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[72]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(67), Q => \^m_axi_arqos[15]\(67), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[73]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(68), Q => \^m_axi_arqos[15]\(68), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(7), Q => \^m_axi_arqos[15]\(7), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(8), Q => \^m_axi_arqos[15]\(8), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => \s_axi_arqos[3]\(9), Q => \^m_axi_arqos[15]\(9), R => SR(0) ); \gen_no_arbiter.m_target_hot_i[0]_i_1__0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^address_hit_0\, I1 => \^match\, O => st_aa_artarget_hot(0) ); \gen_no_arbiter.m_target_hot_i[0]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => \s_axi_arqos[3]\(29), I1 => \s_axi_arqos[3]\(28), I2 => \s_axi_arqos[3]\(31), I3 => \s_axi_arqos[3]\(30), I4 => \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I5 => \^sel_4\, O => \^address_hit_0\ ); \gen_no_arbiter.m_target_hot_i[1]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^sel_4\, I1 => \gen_no_arbiter.m_target_hot_i[1]_i_2__0_n_0\, I2 => \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, O => st_aa_artarget_hot(1) ); \gen_no_arbiter.m_target_hot_i[1]_i_2__0\: unisim.vcomponents.LUT4 generic map( INIT => X"0004" ) port map ( I0 => \s_axi_arqos[3]\(29), I1 => \s_axi_arqos[3]\(28), I2 => \s_axi_arqos[3]\(31), I3 => \s_axi_arqos[3]\(30), O => \gen_no_arbiter.m_target_hot_i[1]_i_2__0_n_0\ ); \gen_no_arbiter.m_target_hot_i[1]_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000001000000000" ) port map ( I0 => \s_axi_arqos[3]\(34), I1 => \s_axi_arqos[3]\(35), I2 => \s_axi_arqos[3]\(33), I3 => \s_axi_arqos[3]\(32), I4 => \s_axi_arqos[3]\(37), I5 => \s_axi_arqos[3]\(36), O => \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\ ); \gen_no_arbiter.m_target_hot_i[2]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^sel_4\, I1 => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\, I2 => \^sel_2\, O => st_aa_artarget_hot(2) ); \gen_no_arbiter.m_target_hot_i[2]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000200000000" ) port map ( I0 => \s_axi_arqos[3]\(35), I1 => \s_axi_arqos[3]\(34), I2 => \s_axi_arqos[3]\(32), I3 => \s_axi_arqos[3]\(33), I4 => \s_axi_arqos[3]\(36), I5 => \s_axi_arqos[3]\(37), O => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ ); \gen_no_arbiter.m_target_hot_i[3]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^sel_4\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\, I2 => \^sel_2\, O => st_aa_artarget_hot(3) ); \gen_no_arbiter.m_target_hot_i[3]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000100000000" ) port map ( I0 => \s_axi_arqos[3]\(40), I1 => \s_axi_arqos[3]\(41), I2 => \s_axi_arqos[3]\(38), I3 => \s_axi_arqos[3]\(39), I4 => \s_axi_arqos[3]\(43), I5 => \s_axi_arqos[3]\(42), O => \^sel_4\ ); \gen_no_arbiter.m_target_hot_i[3]_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000001" ) port map ( I0 => \s_axi_arqos[3]\(34), I1 => \s_axi_arqos[3]\(35), I2 => \s_axi_arqos[3]\(32), I3 => \s_axi_arqos[3]\(33), I4 => \s_axi_arqos[3]\(37), I5 => \s_axi_arqos[3]\(36), O => \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\ ); \gen_no_arbiter.m_target_hot_i[3]_i_4__0\: unisim.vcomponents.LUT4 generic map( INIT => X"0001" ) port map ( I0 => \s_axi_arqos[3]\(29), I1 => \s_axi_arqos[3]\(28), I2 => \s_axi_arqos[3]\(31), I3 => \s_axi_arqos[3]\(30), O => \^sel_2\ ); \gen_no_arbiter.m_target_hot_i[4]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FEFE0000F0000000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\, I2 => \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I3 => \gen_no_arbiter.m_target_hot_i[1]_i_2__0_n_0\, I4 => \^sel_4\, I5 => \^sel_2\, O => \^match\ ); \gen_no_arbiter.m_target_hot_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_artarget_hot(0), Q => aa_mi_artarget_hot(0), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_artarget_hot(1), Q => aa_mi_artarget_hot(1), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_artarget_hot(2), Q => aa_mi_artarget_hot(2), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_artarget_hot(3), Q => aa_mi_artarget_hot(3), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \s_axi_araddr[18]\(0), Q => \^q\(0), R => '0' ); \gen_no_arbiter.m_valid_i_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"DC" ) port map ( I0 => \gen_no_arbiter.m_valid_i_i_2_n_0\, I1 => m_valid_i, I2 => \^aa_mi_arvalid\, O => \gen_no_arbiter.m_valid_i_i_1_n_0\ ); \gen_no_arbiter.m_valid_i_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFF88800000000" ) port map ( I0 => m_axi_arready(2), I1 => aa_mi_artarget_hot(2), I2 => m_axi_arready(1), I3 => aa_mi_artarget_hot(1), I4 => \gen_no_arbiter.m_valid_i_i_3_n_0\, I5 => \^aa_mi_arvalid\, O => \gen_no_arbiter.m_valid_i_i_2_n_0\ ); \gen_no_arbiter.m_valid_i_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFF888F888F888" ) port map ( I0 => aa_mi_artarget_hot(0), I1 => m_axi_arready(0), I2 => \^q\(0), I3 => mi_arready_4, I4 => m_axi_arready(3), I5 => aa_mi_artarget_hot(3), O => \gen_no_arbiter.m_valid_i_i_3_n_0\ ); \gen_no_arbiter.m_valid_i_reg\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_no_arbiter.m_valid_i_i_1_n_0\, Q => \^aa_mi_arvalid\, R => SR(0) ); \gen_no_arbiter.s_ready_i[0]_i_15__0\: unisim.vcomponents.LUT2 generic map( INIT => X"2" ) port map ( I0 => s_axi_arvalid(0), I1 => \^s_axi_arready\(0), O => \gen_no_arbiter.s_ready_i_reg[0]_1\ ); \gen_no_arbiter.s_ready_i[0]_i_21__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000002000000000" ) port map ( I0 => \gen_slave_slots[0].gen_si_read.si_transactor_ar/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I1 => \s_axi_arqos[3]\(29), I2 => \s_axi_arqos[3]\(28), I3 => \s_axi_arqos[3]\(31), I4 => \s_axi_arqos[3]\(30), I5 => \^sel_4\, O => ADDRESS_HIT_1 ); \gen_no_arbiter.s_ready_i[0]_i_23__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => \s_axi_arqos[3]\(29), I1 => \s_axi_arqos[3]\(28), I2 => \s_axi_arqos[3]\(31), I3 => \s_axi_arqos[3]\(30), I4 => \gen_no_arbiter.m_target_hot_i[3]_i_3__0_n_0\, I5 => \^sel_4\, O => ADDRESS_HIT_3 ); \gen_no_arbiter.s_ready_i[0]_i_26__0\: unisim.vcomponents.LUT3 generic map( INIT => X"EF" ) port map ( I0 => r_issuing_cnt(10), I1 => r_issuing_cnt(9), I2 => r_issuing_cnt(11), O => \gen_no_arbiter.s_ready_i_reg[0]_0\ ); \gen_no_arbiter.s_ready_i_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => E(0), Q => \^s_axi_arready\(0), R => '0' ); \m_axi_arvalid[0]_INST_0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => aa_mi_artarget_hot(0), I1 => \^aa_mi_arvalid\, O => m_axi_arvalid(0) ); \m_axi_arvalid[1]_INST_0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => aa_mi_artarget_hot(1), I1 => \^aa_mi_arvalid\, O => m_axi_arvalid(1) ); \m_axi_arvalid[2]_INST_0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => aa_mi_artarget_hot(2), I1 => \^aa_mi_arvalid\, O => m_axi_arvalid(2) ); \m_axi_arvalid[3]_INST_0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => aa_mi_artarget_hot(3), I1 => \^aa_mi_arvalid\, O => m_axi_arvalid(3) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter_0 is port ( ss_aa_awready : out STD_LOGIC; aa_sa_awvalid : out STD_LOGIC; \mi_awready_mux__3\ : out STD_LOGIC; \s_ready_i0__1\ : out STD_LOGIC_VECTOR ( 0 to 0 ); p_84_in : out STD_LOGIC; Q : out STD_LOGIC_VECTOR ( 4 downto 0 ); p_66_in : out STD_LOGIC; p_48_in : out STD_LOGIC; p_101_in : out STD_LOGIC; m_axi_awvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); write_cs01_out : out STD_LOGIC; ADDRESS_HIT_0 : out STD_LOGIC; match : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ : out STD_LOGIC; sel_4 : out STD_LOGIC; sel_2 : out STD_LOGIC; ADDRESS_HIT_3 : out STD_LOGIC; ADDRESS_HIT_1 : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]_0\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]_1\ : out STD_LOGIC; \sa_wm_awready_mux__3\ : out STD_LOGIC; st_aa_awtarget_enc : out STD_LOGIC_VECTOR ( 1 downto 0 ); \gen_master_slots[4].w_issuing_cnt_reg[32]\ : out STD_LOGIC; \m_axi_awqos[15]\ : out STD_LOGIC_VECTOR ( 68 downto 0 ); E : in STD_LOGIC_VECTOR ( 0 to 0 ); aclk : in STD_LOGIC; SR : in STD_LOGIC_VECTOR ( 0 to 0 ); m_ready_d : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_valid_i : in STD_LOGIC; m_axi_awready : in STD_LOGIC_VECTOR ( 3 downto 0 ); mi_awready_4 : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 68 downto 0 ); w_issuing_cnt : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); m_ready_d_0 : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); p_46_out : in STD_LOGIC; \chosen_reg[4]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \s_axi_awaddr[18]\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter_0 : entity is "axi_crossbar_v2_1_14_addr_arbiter"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter_0; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter_0 is signal \^address_hit_0\ : STD_LOGIC; signal \^q\ : STD_LOGIC_VECTOR ( 4 downto 0 ); signal \^aa_sa_awvalid\ : STD_LOGIC; signal \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ : STD_LOGIC; signal \gen_no_arbiter.m_target_hot_i[1]_i_2_n_0\ : STD_LOGIC; signal \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\ : STD_LOGIC; signal \gen_no_arbiter.m_valid_i_i_1__0_n_0\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\ : STD_LOGIC; signal \m_ready_d[1]_i_4_n_0\ : STD_LOGIC; signal \^match\ : STD_LOGIC; signal \^mi_awready_mux__3\ : STD_LOGIC; signal \^s_ready_i0__1\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal s_ready_i2 : STD_LOGIC; signal \^sel_2\ : STD_LOGIC; signal \^sel_4\ : STD_LOGIC; signal \^ss_aa_awready\ : STD_LOGIC; signal st_aa_awtarget_hot : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \^write_cs01_out\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_axi.s_axi_wready_i_i_2\ : label is "soft_lutpair16"; attribute SOFT_HLUTNM of \gen_master_slots[0].w_issuing_cnt[3]_i_4\ : label is "soft_lutpair17"; attribute SOFT_HLUTNM of \gen_master_slots[2].w_issuing_cnt[19]_i_4\ : label is "soft_lutpair13"; attribute SOFT_HLUTNM of \gen_master_slots[3].w_issuing_cnt[27]_i_4\ : label is "soft_lutpair15"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[56]_i_1\ : label is "soft_lutpair12"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[57]_i_1\ : label is "soft_lutpair14"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[1]_i_2\ : label is "soft_lutpair18"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[2]_i_1\ : label is "soft_lutpair14"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[3]_i_1\ : label is "soft_lutpair12"; attribute SOFT_HLUTNM of \gen_no_arbiter.m_target_hot_i[3]_i_4\ : label is "soft_lutpair18"; attribute SOFT_HLUTNM of \m_axi_awvalid[0]_INST_0\ : label is "soft_lutpair16"; attribute SOFT_HLUTNM of \m_axi_awvalid[1]_INST_0\ : label is "soft_lutpair17"; attribute SOFT_HLUTNM of \m_axi_awvalid[2]_INST_0\ : label is "soft_lutpair13"; attribute SOFT_HLUTNM of \m_axi_awvalid[3]_INST_0\ : label is "soft_lutpair15"; begin ADDRESS_HIT_0 <= \^address_hit_0\; Q(4 downto 0) <= \^q\(4 downto 0); aa_sa_awvalid <= \^aa_sa_awvalid\; \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ <= \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\; match <= \^match\; \mi_awready_mux__3\ <= \^mi_awready_mux__3\; \s_ready_i0__1\(0) <= \^s_ready_i0__1\(0); sel_2 <= \^sel_2\; sel_4 <= \^sel_4\; ss_aa_awready <= \^ss_aa_awready\; write_cs01_out <= \^write_cs01_out\; \gen_axi.s_axi_wready_i_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"0080" ) port map ( I0 => mi_awready_4, I1 => \^q\(4), I2 => \^aa_sa_awvalid\, I3 => m_ready_d(1), O => \^write_cs01_out\ ); \gen_master_slots[0].w_issuing_cnt[3]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"0080" ) port map ( I0 => m_axi_awready(0), I1 => \^q\(0), I2 => \^aa_sa_awvalid\, I3 => m_ready_d(1), O => p_101_in ); \gen_master_slots[1].w_issuing_cnt[11]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"0080" ) port map ( I0 => m_axi_awready(1), I1 => \^q\(1), I2 => \^aa_sa_awvalid\, I3 => m_ready_d(1), O => p_84_in ); \gen_master_slots[2].w_issuing_cnt[19]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"0080" ) port map ( I0 => m_axi_awready(2), I1 => \^q\(2), I2 => \^aa_sa_awvalid\, I3 => m_ready_d(1), O => p_66_in ); \gen_master_slots[3].w_issuing_cnt[27]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"0080" ) port map ( I0 => m_axi_awready(3), I1 => \^q\(3), I2 => \^aa_sa_awvalid\, I3 => m_ready_d(1), O => p_48_in ); \gen_master_slots[4].w_issuing_cnt[32]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"95552AAA" ) port map ( I0 => \^write_cs01_out\, I1 => s_axi_bready(0), I2 => p_46_out, I3 => \chosen_reg[4]\(0), I4 => w_issuing_cnt(3), O => \gen_master_slots[4].w_issuing_cnt_reg[32]\ ); \gen_multi_thread.gen_thread_loop[7].active_target[56]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"F0808080" ) port map ( I0 => \^sel_2\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\, I2 => \^sel_4\, I3 => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I4 => \gen_no_arbiter.m_target_hot_i[1]_i_2_n_0\, O => st_aa_awtarget_enc(0) ); \gen_multi_thread.gen_thread_loop[7].active_target[57]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"A080" ) port map ( I0 => \^sel_2\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\, I2 => \^sel_4\, I3 => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\, O => st_aa_awtarget_enc(1) ); \gen_no_arbiter.m_mesg_i[11]_i_2\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^aa_sa_awvalid\, O => s_ready_i2 ); \gen_no_arbiter.m_mesg_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(0), Q => \m_axi_awqos[15]\(0), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(10), Q => \m_axi_awqos[15]\(10), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(11), Q => \m_axi_awqos[15]\(11), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(12), Q => \m_axi_awqos[15]\(12), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(13), Q => \m_axi_awqos[15]\(13), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(14), Q => \m_axi_awqos[15]\(14), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(15), Q => \m_axi_awqos[15]\(15), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(16), Q => \m_axi_awqos[15]\(16), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(17), Q => \m_axi_awqos[15]\(17), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(18), Q => \m_axi_awqos[15]\(18), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(19), Q => \m_axi_awqos[15]\(19), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(1), Q => \m_axi_awqos[15]\(1), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(20), Q => \m_axi_awqos[15]\(20), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(21), Q => \m_axi_awqos[15]\(21), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(22), Q => \m_axi_awqos[15]\(22), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(23), Q => \m_axi_awqos[15]\(23), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(24), Q => \m_axi_awqos[15]\(24), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(25), Q => \m_axi_awqos[15]\(25), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(26), Q => \m_axi_awqos[15]\(26), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(27), Q => \m_axi_awqos[15]\(27), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(28), Q => \m_axi_awqos[15]\(28), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(29), Q => \m_axi_awqos[15]\(29), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(2), Q => \m_axi_awqos[15]\(2), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(30), Q => \m_axi_awqos[15]\(30), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(31), Q => \m_axi_awqos[15]\(31), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(32), Q => \m_axi_awqos[15]\(32), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(33), Q => \m_axi_awqos[15]\(33), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(34), Q => \m_axi_awqos[15]\(34), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(35), Q => \m_axi_awqos[15]\(35), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(36), Q => \m_axi_awqos[15]\(36), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(37), Q => \m_axi_awqos[15]\(37), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(38), Q => \m_axi_awqos[15]\(38), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(39), Q => \m_axi_awqos[15]\(39), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(3), Q => \m_axi_awqos[15]\(3), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(40), Q => \m_axi_awqos[15]\(40), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(41), Q => \m_axi_awqos[15]\(41), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(42), Q => \m_axi_awqos[15]\(42), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(43), Q => \m_axi_awqos[15]\(43), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(44), Q => \m_axi_awqos[15]\(44), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(45), Q => \m_axi_awqos[15]\(45), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(46), Q => \m_axi_awqos[15]\(46), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[47]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(47), Q => \m_axi_awqos[15]\(47), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[48]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(48), Q => \m_axi_awqos[15]\(48), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[49]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(49), Q => \m_axi_awqos[15]\(49), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(4), Q => \m_axi_awqos[15]\(4), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[50]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(50), Q => \m_axi_awqos[15]\(50), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[51]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(51), Q => \m_axi_awqos[15]\(51), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[52]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(52), Q => \m_axi_awqos[15]\(52), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[53]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(53), Q => \m_axi_awqos[15]\(53), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[54]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(54), Q => \m_axi_awqos[15]\(54), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[55]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(55), Q => \m_axi_awqos[15]\(55), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[57]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(56), Q => \m_axi_awqos[15]\(56), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[58]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(57), Q => \m_axi_awqos[15]\(57), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[59]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(58), Q => \m_axi_awqos[15]\(58), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(5), Q => \m_axi_awqos[15]\(5), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[64]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(59), Q => \m_axi_awqos[15]\(59), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[65]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(60), Q => \m_axi_awqos[15]\(60), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[66]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(61), Q => \m_axi_awqos[15]\(61), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[67]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(62), Q => \m_axi_awqos[15]\(62), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[68]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(63), Q => \m_axi_awqos[15]\(63), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[69]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(64), Q => \m_axi_awqos[15]\(64), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(6), Q => \m_axi_awqos[15]\(6), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[70]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(65), Q => \m_axi_awqos[15]\(65), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[71]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(66), Q => \m_axi_awqos[15]\(66), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[72]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(67), Q => \m_axi_awqos[15]\(67), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[73]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(68), Q => \m_axi_awqos[15]\(68), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(7), Q => \m_axi_awqos[15]\(7), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(8), Q => \m_axi_awqos[15]\(8), R => SR(0) ); \gen_no_arbiter.m_mesg_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => s_ready_i2, D => D(9), Q => \m_axi_awqos[15]\(9), R => SR(0) ); \gen_no_arbiter.m_target_hot_i[0]_i_1\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^address_hit_0\, I1 => \^match\, O => st_aa_awtarget_hot(0) ); \gen_no_arbiter.m_target_hot_i[0]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => D(29), I1 => D(28), I2 => D(31), I3 => D(30), I4 => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I5 => \^sel_4\, O => \^address_hit_0\ ); \gen_no_arbiter.m_target_hot_i[1]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^sel_4\, I1 => \gen_no_arbiter.m_target_hot_i[1]_i_2_n_0\, I2 => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, O => st_aa_awtarget_hot(1) ); \gen_no_arbiter.m_target_hot_i[1]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"0004" ) port map ( I0 => D(29), I1 => D(28), I2 => D(31), I3 => D(30), O => \gen_no_arbiter.m_target_hot_i[1]_i_2_n_0\ ); \gen_no_arbiter.m_target_hot_i[1]_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"0000001000000000" ) port map ( I0 => D(34), I1 => D(35), I2 => D(33), I3 => D(32), I4 => D(37), I5 => D(36), O => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\ ); \gen_no_arbiter.m_target_hot_i[2]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^sel_4\, I1 => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\, I2 => \^sel_2\, O => st_aa_awtarget_hot(2) ); \gen_no_arbiter.m_target_hot_i[2]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000200000000" ) port map ( I0 => D(35), I1 => D(34), I2 => D(32), I3 => D(33), I4 => D(36), I5 => D(37), O => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ ); \gen_no_arbiter.m_target_hot_i[3]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^sel_4\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\, I2 => \^sel_2\, O => st_aa_awtarget_hot(3) ); \gen_no_arbiter.m_target_hot_i[3]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000100000000" ) port map ( I0 => D(40), I1 => D(41), I2 => D(38), I3 => D(39), I4 => D(43), I5 => D(42), O => \^sel_4\ ); \gen_no_arbiter.m_target_hot_i[3]_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000001" ) port map ( I0 => D(34), I1 => D(35), I2 => D(32), I3 => D(33), I4 => D(37), I5 => D(36), O => \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\ ); \gen_no_arbiter.m_target_hot_i[3]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"0001" ) port map ( I0 => D(29), I1 => D(28), I2 => D(31), I3 => D(30), O => \^sel_2\ ); \gen_no_arbiter.m_target_hot_i[4]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"FEFE0000F0000000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\, I1 => \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\, I2 => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I3 => \gen_no_arbiter.m_target_hot_i[1]_i_2_n_0\, I4 => \^sel_4\, I5 => \^sel_2\, O => \^match\ ); \gen_no_arbiter.m_target_hot_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_awtarget_hot(0), Q => \^q\(0), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_awtarget_hot(1), Q => \^q\(1), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_awtarget_hot(2), Q => \^q\(2), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => st_aa_awtarget_hot(3), Q => \^q\(3), R => '0' ); \gen_no_arbiter.m_target_hot_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \s_axi_awaddr[18]\(0), Q => \^q\(4), R => '0' ); \gen_no_arbiter.m_valid_i_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFF1F00" ) port map ( I0 => m_ready_d(1), I1 => \^mi_awready_mux__3\, I2 => \^s_ready_i0__1\(0), I3 => \^aa_sa_awvalid\, I4 => m_valid_i, O => \gen_no_arbiter.m_valid_i_i_1__0_n_0\ ); \gen_no_arbiter.m_valid_i_reg\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_no_arbiter.m_valid_i_i_1__0_n_0\, Q => \^aa_sa_awvalid\, R => SR(0) ); \gen_no_arbiter.s_ready_i[0]_i_15\: unisim.vcomponents.LUT3 generic map( INIT => X"04" ) port map ( I0 => \^ss_aa_awready\, I1 => s_axi_awvalid(0), I2 => m_ready_d_0(0), O => \gen_no_arbiter.s_ready_i_reg[0]_1\ ); \gen_no_arbiter.s_ready_i[0]_i_21\: unisim.vcomponents.LUT6 generic map( INIT => X"0000002000000000" ) port map ( I0 => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_addr_decoder.addr_decoder_inst/gen_target[1].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_3\, I1 => D(29), I2 => D(28), I3 => D(31), I4 => D(30), I5 => \^sel_4\, O => ADDRESS_HIT_1 ); \gen_no_arbiter.s_ready_i[0]_i_23\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => D(29), I1 => D(28), I2 => D(31), I3 => D(30), I4 => \gen_no_arbiter.m_target_hot_i[3]_i_3_n_0\, I5 => \^sel_4\, O => ADDRESS_HIT_3 ); \gen_no_arbiter.s_ready_i[0]_i_27\: unisim.vcomponents.LUT3 generic map( INIT => X"EF" ) port map ( I0 => w_issuing_cnt(1), I1 => w_issuing_cnt(0), I2 => w_issuing_cnt(2), O => \gen_no_arbiter.s_ready_i_reg[0]_0\ ); \gen_no_arbiter.s_ready_i_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => E(0), Q => \^ss_aa_awready\, R => '0' ); \m_axi_awvalid[0]_INST_0\: unisim.vcomponents.LUT3 generic map( INIT => X"08" ) port map ( I0 => \^q\(0), I1 => \^aa_sa_awvalid\, I2 => m_ready_d(1), O => m_axi_awvalid(0) ); \m_axi_awvalid[1]_INST_0\: unisim.vcomponents.LUT3 generic map( INIT => X"08" ) port map ( I0 => \^q\(1), I1 => \^aa_sa_awvalid\, I2 => m_ready_d(1), O => m_axi_awvalid(1) ); \m_axi_awvalid[2]_INST_0\: unisim.vcomponents.LUT3 generic map( INIT => X"08" ) port map ( I0 => \^q\(2), I1 => \^aa_sa_awvalid\, I2 => m_ready_d(1), O => m_axi_awvalid(2) ); \m_axi_awvalid[3]_INST_0\: unisim.vcomponents.LUT3 generic map( INIT => X"08" ) port map ( I0 => \^q\(3), I1 => \^aa_sa_awvalid\, I2 => m_ready_d(1), O => m_axi_awvalid(3) ); \m_ready_d[0]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFFE" ) port map ( I0 => \^q\(4), I1 => \^q\(0), I2 => \^q\(1), I3 => \^q\(2), I4 => \^q\(3), O => \sa_wm_awready_mux__3\ ); \m_ready_d[1]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"FFEAEAEA" ) port map ( I0 => \m_ready_d[1]_i_4_n_0\, I1 => \^q\(1), I2 => m_axi_awready(1), I3 => \^q\(2), I4 => m_axi_awready(2), O => \^mi_awready_mux__3\ ); \m_ready_d[1]_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFFFFFFFFFFE" ) port map ( I0 => m_ready_d(0), I1 => \^q\(3), I2 => \^q\(2), I3 => \^q\(1), I4 => \^q\(0), I5 => \^q\(4), O => \^s_ready_i0__1\(0) ); \m_ready_d[1]_i_4\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFF888F888F888" ) port map ( I0 => \^q\(0), I1 => m_axi_awready(0), I2 => \^q\(4), I3 => mi_awready_4, I4 => m_axi_awready(3), I5 => \^q\(3), O => \m_ready_d[1]_i_4_n_0\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp is port ( E : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[2].w_issuing_cnt_reg[16]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[3].w_issuing_cnt_reg[24]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[0].w_issuing_cnt_reg[0]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); SR : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); m_valid_i : out STD_LOGIC; s_axi_bvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); resp_select : out STD_LOGIC_VECTOR ( 0 to 0 ); s_ready_i_reg : out STD_LOGIC_VECTOR ( 4 downto 0 ); f_mux4_return : out STD_LOGIC_VECTOR ( 13 downto 0 ); w_issuing_cnt : in STD_LOGIC_VECTOR ( 16 downto 0 ); p_84_in : in STD_LOGIC; p_66_in : in STD_LOGIC; p_48_in : in STD_LOGIC; p_101_in : in STD_LOGIC; aresetn_d : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\ : in STD_LOGIC; aa_sa_awvalid : in STD_LOGIC; Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \any_pop__1\ : in STD_LOGIC; \gen_multi_thread.accept_cnt_reg[0]\ : in STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]_0\ : in STD_LOGIC; ADDRESS_HIT_3 : in STD_LOGIC; match : in STD_LOGIC; ADDRESS_HIT_1 : in STD_LOGIC; ADDRESS_HIT_0 : in STD_LOGIC; \gen_master_slots[2].w_issuing_cnt_reg[18]\ : in STD_LOGIC; sel_4 : in STD_LOGIC; \s_axi_awaddr[25]\ : in STD_LOGIC; sel_2 : in STD_LOGIC; s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); p_46_out : in STD_LOGIC; p_128_out : in STD_LOGIC; p_108_out : in STD_LOGIC; m_valid_i_reg : in STD_LOGIC; st_mr_bid : in STD_LOGIC_VECTOR ( 47 downto 0 ); st_mr_bmesg : in STD_LOGIC_VECTOR ( 7 downto 0 ); p_68_out : in STD_LOGIC; p_88_out : in STD_LOGIC; m_valid_i_reg_0 : in STD_LOGIC; aclk : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp is signal \^sr\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \gen_no_arbiter.s_ready_i[0]_i_16_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_17_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_20_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_22_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_24_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_25_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_6_n_0\ : STD_LOGIC; signal last_rr_hot : STD_LOGIC; signal \last_rr_hot[0]_i_2__0_n_0\ : STD_LOGIC; signal \last_rr_hot[0]_i_3__0_n_0\ : STD_LOGIC; signal \last_rr_hot[1]_i_2__0_n_0\ : STD_LOGIC; signal \last_rr_hot[2]_i_3__0_n_0\ : STD_LOGIC; signal \last_rr_hot[3]_i_2__0_n_0\ : STD_LOGIC; signal \last_rr_hot[3]_i_3__0_n_0\ : STD_LOGIC; signal \last_rr_hot[4]_i_4__0_n_0\ : STD_LOGIC; signal \last_rr_hot[4]_i_5__0_n_0\ : STD_LOGIC; signal \last_rr_hot_reg_n_0_[0]\ : STD_LOGIC; signal \^m_valid_i\ : STD_LOGIC; signal need_arbitration : STD_LOGIC; signal next_rr_hot : STD_LOGIC_VECTOR ( 4 downto 0 ); signal p_5_in6_in : STD_LOGIC; signal p_6_in : STD_LOGIC; signal p_7_in9_in : STD_LOGIC; signal p_8_in : STD_LOGIC; signal \^resp_select\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \resp_select__0\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \^s_axi_bvalid\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^s_ready_i_reg\ : STD_LOGIC_VECTOR ( 4 downto 0 ); signal \w_cmd_pop_0__0\ : STD_LOGIC; signal \w_cmd_pop_1__0\ : STD_LOGIC; signal \w_cmd_pop_2__0\ : STD_LOGIC; signal \w_cmd_pop_3__0\ : STD_LOGIC; signal \w_cmd_pop_4__0\ : STD_LOGIC; attribute use_clock_enable : string; attribute use_clock_enable of \chosen_reg[0]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[1]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[2]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[3]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[4]\ : label is "yes"; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_3\ : label is "soft_lutpair152"; attribute SOFT_HLUTNM of \gen_master_slots[0].w_issuing_cnt[3]_i_3\ : label is "soft_lutpair157"; attribute SOFT_HLUTNM of \gen_master_slots[2].w_issuing_cnt[19]_i_3\ : label is "soft_lutpair153"; attribute SOFT_HLUTNM of \gen_master_slots[3].w_issuing_cnt[27]_i_3\ : label is "soft_lutpair152"; attribute SOFT_HLUTNM of \gen_no_arbiter.s_ready_i[0]_i_26\ : label is "soft_lutpair157"; attribute SOFT_HLUTNM of \last_rr_hot[0]_i_2__0\ : label is "soft_lutpair155"; attribute SOFT_HLUTNM of \last_rr_hot[0]_i_3__0\ : label is "soft_lutpair156"; attribute SOFT_HLUTNM of \last_rr_hot[1]_i_2__0\ : label is "soft_lutpair154"; attribute SOFT_HLUTNM of \last_rr_hot[2]_i_3__0\ : label is "soft_lutpair155"; attribute SOFT_HLUTNM of \last_rr_hot[3]_i_2__0\ : label is "soft_lutpair156"; attribute SOFT_HLUTNM of \last_rr_hot[3]_i_3__0\ : label is "soft_lutpair154"; attribute SOFT_HLUTNM of \s_axi_bvalid[0]_INST_0_i_1\ : label is "soft_lutpair153"; begin SR(0) <= \^sr\(0); m_valid_i <= \^m_valid_i\; resp_select(0) <= \^resp_select\(0); s_axi_bvalid(0) <= \^s_axi_bvalid\(0); s_ready_i_reg(4 downto 0) <= \^s_ready_i_reg\(4 downto 0); \chosen[4]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"BBBBBBBBBBBBBBB8" ) port map ( I0 => s_axi_bready(0), I1 => \^s_axi_bvalid\(0), I2 => p_46_out, I3 => p_128_out, I4 => p_108_out, I5 => m_valid_i_reg, O => need_arbitration ); \chosen_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(0), Q => \^s_ready_i_reg\(0), R => \^sr\(0) ); \chosen_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(1), Q => \^s_ready_i_reg\(1), R => \^sr\(0) ); \chosen_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(2), Q => \^s_ready_i_reg\(2), R => \^sr\(0) ); \chosen_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(3), Q => \^s_ready_i_reg\(3), R => \^sr\(0) ); \chosen_reg[4]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(4), Q => \^s_ready_i_reg\(4), R => \^sr\(0) ); \gen_fpga.gen_mux_5_8[0].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(36), I1 => st_mr_bid(0), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(24), I5 => st_mr_bid(12), O => f_mux4_return(0) ); \gen_fpga.gen_mux_5_8[10].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(46), I1 => st_mr_bid(10), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(34), I5 => st_mr_bid(22), O => f_mux4_return(10) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_1\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^s_ready_i_reg\(4), I1 => p_46_out, O => \^resp_select\(0) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(47), I1 => st_mr_bid(11), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(35), I5 => st_mr_bid(23), O => f_mux4_return(11) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => p_68_out, I1 => \^s_ready_i_reg\(3), I2 => p_108_out, I3 => \^s_ready_i_reg\(1), O => \resp_select__0\(0) ); \gen_fpga.gen_mux_5_8[12].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bmesg(6), I1 => st_mr_bmesg(0), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bmesg(4), I5 => st_mr_bmesg(2), O => f_mux4_return(12) ); \gen_fpga.gen_mux_5_8[13].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bmesg(7), I1 => st_mr_bmesg(1), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bmesg(5), I5 => st_mr_bmesg(3), O => f_mux4_return(13) ); \gen_fpga.gen_mux_5_8[1].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(37), I1 => st_mr_bid(1), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(25), I5 => st_mr_bid(13), O => f_mux4_return(1) ); \gen_fpga.gen_mux_5_8[2].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(38), I1 => st_mr_bid(2), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(26), I5 => st_mr_bid(14), O => f_mux4_return(2) ); \gen_fpga.gen_mux_5_8[3].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(39), I1 => st_mr_bid(3), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(27), I5 => st_mr_bid(15), O => f_mux4_return(3) ); \gen_fpga.gen_mux_5_8[4].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(40), I1 => st_mr_bid(4), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(28), I5 => st_mr_bid(16), O => f_mux4_return(4) ); \gen_fpga.gen_mux_5_8[5].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(41), I1 => st_mr_bid(5), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(29), I5 => st_mr_bid(17), O => f_mux4_return(5) ); \gen_fpga.gen_mux_5_8[6].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(42), I1 => st_mr_bid(6), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(30), I5 => st_mr_bid(18), O => f_mux4_return(6) ); \gen_fpga.gen_mux_5_8[7].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(43), I1 => st_mr_bid(7), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(31), I5 => st_mr_bid(19), O => f_mux4_return(7) ); \gen_fpga.gen_mux_5_8[8].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(44), I1 => st_mr_bid(8), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(32), I5 => st_mr_bid(20), O => f_mux4_return(8) ); \gen_fpga.gen_mux_5_8[9].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_bid(45), I1 => st_mr_bid(9), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_bid(33), I5 => st_mr_bid(21), O => f_mux4_return(9) ); \gen_master_slots[0].w_issuing_cnt[3]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => w_issuing_cnt(1), I1 => w_issuing_cnt(2), I2 => w_issuing_cnt(0), I3 => w_issuing_cnt(3), I4 => \w_cmd_pop_0__0\, I5 => p_101_in, O => \gen_master_slots[0].w_issuing_cnt_reg[0]\(0) ); \gen_master_slots[0].w_issuing_cnt[3]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^s_ready_i_reg\(0), I1 => p_128_out, I2 => s_axi_bready(0), O => \w_cmd_pop_0__0\ ); \gen_master_slots[1].w_issuing_cnt[11]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => w_issuing_cnt(5), I1 => w_issuing_cnt(6), I2 => w_issuing_cnt(4), I3 => w_issuing_cnt(7), I4 => \w_cmd_pop_1__0\, I5 => p_84_in, O => E(0) ); \gen_master_slots[1].w_issuing_cnt[11]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^s_ready_i_reg\(1), I1 => p_108_out, I2 => s_axi_bready(0), O => \w_cmd_pop_1__0\ ); \gen_master_slots[2].w_issuing_cnt[19]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => w_issuing_cnt(9), I1 => w_issuing_cnt(10), I2 => w_issuing_cnt(8), I3 => w_issuing_cnt(11), I4 => \w_cmd_pop_2__0\, I5 => p_66_in, O => \gen_master_slots[2].w_issuing_cnt_reg[16]\(0) ); \gen_master_slots[2].w_issuing_cnt[19]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^s_ready_i_reg\(2), I1 => p_88_out, I2 => s_axi_bready(0), O => \w_cmd_pop_2__0\ ); \gen_master_slots[3].w_issuing_cnt[27]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => w_issuing_cnt(13), I1 => w_issuing_cnt(14), I2 => w_issuing_cnt(12), I3 => w_issuing_cnt(15), I4 => \w_cmd_pop_3__0\, I5 => p_48_in, O => \gen_master_slots[3].w_issuing_cnt_reg[24]\(0) ); \gen_master_slots[3].w_issuing_cnt[27]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^s_ready_i_reg\(3), I1 => p_68_out, I2 => s_axi_bready(0), O => \w_cmd_pop_3__0\ ); \gen_no_arbiter.m_mesg_i[11]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => aresetn_d, O => \^sr\(0) ); \gen_no_arbiter.s_ready_i[0]_i_1\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^m_valid_i\, I1 => aresetn_d, O => \gen_no_arbiter.s_ready_i_reg[0]\(0) ); \gen_no_arbiter.s_ready_i[0]_i_16\: unisim.vcomponents.LUT5 generic map( INIT => X"F0808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_20_n_0\, I1 => ADDRESS_HIT_1, I2 => match, I3 => \gen_no_arbiter.s_ready_i[0]_i_22_n_0\, I4 => ADDRESS_HIT_0, O => \gen_no_arbiter.s_ready_i[0]_i_16_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_17\: unisim.vcomponents.LUT6 generic map( INIT => X"F8F8FF00F8F8FFFF" ) port map ( I0 => ADDRESS_HIT_3, I1 => \gen_no_arbiter.s_ready_i[0]_i_24_n_0\, I2 => \gen_no_arbiter.s_ready_i[0]_i_25_n_0\, I3 => \w_cmd_pop_4__0\, I4 => match, I5 => w_issuing_cnt(16), O => \gen_no_arbiter.s_ready_i[0]_i_17_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000100" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\, I2 => \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\, I3 => \gen_no_arbiter.s_ready_i[0]_i_6_n_0\, I4 => \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\, I5 => aa_sa_awvalid, O => \^m_valid_i\ ); \gen_no_arbiter.s_ready_i[0]_i_20\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFEF" ) port map ( I0 => \w_cmd_pop_1__0\, I1 => w_issuing_cnt(4), I2 => w_issuing_cnt(7), I3 => w_issuing_cnt(5), I4 => w_issuing_cnt(6), O => \gen_no_arbiter.s_ready_i[0]_i_20_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_22\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFEF" ) port map ( I0 => \w_cmd_pop_0__0\, I1 => w_issuing_cnt(0), I2 => w_issuing_cnt(3), I3 => w_issuing_cnt(1), I4 => w_issuing_cnt(2), O => \gen_no_arbiter.s_ready_i[0]_i_22_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_24\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFEF" ) port map ( I0 => \w_cmd_pop_3__0\, I1 => w_issuing_cnt(12), I2 => w_issuing_cnt(15), I3 => w_issuing_cnt(13), I4 => w_issuing_cnt(14), O => \gen_no_arbiter.s_ready_i[0]_i_24_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_25\: unisim.vcomponents.LUT6 generic map( INIT => X"FE00000000000000" ) port map ( I0 => \gen_master_slots[2].w_issuing_cnt_reg[18]\, I1 => w_issuing_cnt(8), I2 => \w_cmd_pop_2__0\, I3 => sel_4, I4 => \s_axi_awaddr[25]\, I5 => sel_2, O => \gen_no_arbiter.s_ready_i[0]_i_25_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_26\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => \^s_ready_i_reg\(4), I1 => p_46_out, I2 => s_axi_bready(0), O => \w_cmd_pop_4__0\ ); \gen_no_arbiter.s_ready_i[0]_i_6\: unisim.vcomponents.LUT6 generic map( INIT => X"FD00FD00FD000000" ) port map ( I0 => Q(0), I1 => \any_pop__1\, I2 => \gen_multi_thread.accept_cnt_reg[0]\, I3 => \gen_no_arbiter.s_ready_i_reg[0]_0\, I4 => \gen_no_arbiter.s_ready_i[0]_i_16_n_0\, I5 => \gen_no_arbiter.s_ready_i[0]_i_17_n_0\, O => \gen_no_arbiter.s_ready_i[0]_i_6_n_0\ ); \last_rr_hot[0]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA0202AAAA0200" ) port map ( I0 => p_128_out, I1 => p_68_out, I2 => p_46_out, I3 => \last_rr_hot[0]_i_2__0_n_0\, I4 => \last_rr_hot[0]_i_3__0_n_0\, I5 => p_6_in, O => next_rr_hot(0) ); \last_rr_hot[0]_i_2__0\: unisim.vcomponents.LUT4 generic map( INIT => X"00AE" ) port map ( I0 => p_5_in6_in, I1 => \last_rr_hot_reg_n_0_[0]\, I2 => p_108_out, I3 => p_88_out, O => \last_rr_hot[0]_i_2__0_n_0\ ); \last_rr_hot[0]_i_3__0\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_46_out, I1 => p_7_in9_in, I2 => p_8_in, O => \last_rr_hot[0]_i_3__0_n_0\ ); \last_rr_hot[1]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA0202AAAA0200" ) port map ( I0 => p_108_out, I1 => p_128_out, I2 => p_46_out, I3 => \last_rr_hot[1]_i_2__0_n_0\, I4 => \last_rr_hot[4]_i_4__0_n_0\, I5 => p_7_in9_in, O => next_rr_hot(1) ); \last_rr_hot[1]_i_2__0\: unisim.vcomponents.LUT4 generic map( INIT => X"00AE" ) port map ( I0 => p_6_in, I1 => p_5_in6_in, I2 => p_88_out, I3 => p_68_out, O => \last_rr_hot[1]_i_2__0_n_0\ ); \last_rr_hot[2]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA2222AAAA0020" ) port map ( I0 => p_88_out, I1 => m_valid_i_reg_0, I2 => \last_rr_hot[4]_i_5__0_n_0\, I3 => p_46_out, I4 => \last_rr_hot[2]_i_3__0_n_0\, I5 => p_8_in, O => next_rr_hot(2) ); \last_rr_hot[2]_i_3__0\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_108_out, I1 => \last_rr_hot_reg_n_0_[0]\, I2 => p_5_in6_in, O => \last_rr_hot[2]_i_3__0_n_0\ ); \last_rr_hot[3]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA0202AAAA0200" ) port map ( I0 => p_68_out, I1 => p_108_out, I2 => p_88_out, I3 => \last_rr_hot[3]_i_2__0_n_0\, I4 => \last_rr_hot[3]_i_3__0_n_0\, I5 => \last_rr_hot_reg_n_0_[0]\, O => next_rr_hot(3) ); \last_rr_hot[3]_i_2__0\: unisim.vcomponents.LUT4 generic map( INIT => X"00AE" ) port map ( I0 => p_8_in, I1 => p_7_in9_in, I2 => p_46_out, I3 => p_128_out, O => \last_rr_hot[3]_i_2__0_n_0\ ); \last_rr_hot[3]_i_3__0\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_88_out, I1 => p_5_in6_in, I2 => p_6_in, O => \last_rr_hot[3]_i_3__0_n_0\ ); \last_rr_hot[4]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAAAAAAAAAAAAA8" ) port map ( I0 => need_arbitration, I1 => next_rr_hot(3), I2 => next_rr_hot(2), I3 => next_rr_hot(1), I4 => next_rr_hot(0), I5 => next_rr_hot(4), O => last_rr_hot ); \last_rr_hot[4]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA2222AAAA0020" ) port map ( I0 => p_46_out, I1 => m_valid_i_reg, I2 => \last_rr_hot[4]_i_4__0_n_0\, I3 => p_108_out, I4 => \last_rr_hot[4]_i_5__0_n_0\, I5 => p_5_in6_in, O => next_rr_hot(4) ); \last_rr_hot[4]_i_4__0\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_128_out, I1 => p_8_in, I2 => \last_rr_hot_reg_n_0_[0]\, O => \last_rr_hot[4]_i_4__0_n_0\ ); \last_rr_hot[4]_i_5__0\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_68_out, I1 => p_6_in, I2 => p_7_in9_in, O => \last_rr_hot[4]_i_5__0_n_0\ ); \last_rr_hot_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(0), Q => \last_rr_hot_reg_n_0_[0]\, R => \^sr\(0) ); \last_rr_hot_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(1), Q => p_5_in6_in, R => \^sr\(0) ); \last_rr_hot_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(2), Q => p_6_in, R => \^sr\(0) ); \last_rr_hot_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(3), Q => p_7_in9_in, R => \^sr\(0) ); \last_rr_hot_reg[4]\: unisim.vcomponents.FDSE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(4), Q => p_8_in, S => \^sr\(0) ); \s_axi_bvalid[0]_INST_0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFFFFFEAEAEA" ) port map ( I0 => \^resp_select\(0), I1 => p_128_out, I2 => \^s_ready_i_reg\(0), I3 => p_108_out, I4 => \^s_ready_i_reg\(1), I5 => \resp_select__0\(1), O => \^s_axi_bvalid\(0) ); \s_axi_bvalid[0]_INST_0_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => p_68_out, I1 => \^s_ready_i_reg\(3), I2 => p_88_out, I3 => \^s_ready_i_reg\(2), O => \resp_select__0\(1) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp_8 is port ( \m_payload_i_reg[0]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); Q : out STD_LOGIC_VECTOR ( 4 downto 0 ); f_mux4_return : out STD_LOGIC_VECTOR ( 46 downto 0 ); s_axi_rvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); resp_select : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]_0\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]_1\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]_2\ : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); p_122_out : in STD_LOGIC; st_mr_rid : in STD_LOGIC_VECTOR ( 47 downto 0 ); st_mr_rmesg : in STD_LOGIC_VECTOR ( 135 downto 0 ); \m_payload_i_reg[34]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]_1\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]_2\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]_3\ : in STD_LOGIC_VECTOR ( 0 to 0 ); p_62_out : in STD_LOGIC; p_102_out : in STD_LOGIC; p_40_out : in STD_LOGIC; m_valid_i_reg : in STD_LOGIC; p_82_out : in STD_LOGIC; m_valid_i_reg_0 : in STD_LOGIC; SR : in STD_LOGIC_VECTOR ( 0 to 0 ); aclk : in STD_LOGIC ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp_8 : entity is "axi_crossbar_v2_1_14_arbiter_resp"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp_8; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp_8 is signal \^q\ : STD_LOGIC_VECTOR ( 4 downto 0 ); signal last_rr_hot : STD_LOGIC; signal \last_rr_hot[0]_i_2_n_0\ : STD_LOGIC; signal \last_rr_hot[0]_i_3_n_0\ : STD_LOGIC; signal \last_rr_hot[1]_i_2_n_0\ : STD_LOGIC; signal \last_rr_hot[2]_i_3_n_0\ : STD_LOGIC; signal \last_rr_hot[3]_i_2_n_0\ : STD_LOGIC; signal \last_rr_hot[3]_i_3_n_0\ : STD_LOGIC; signal \last_rr_hot[4]_i_4_n_0\ : STD_LOGIC; signal \last_rr_hot[4]_i_5_n_0\ : STD_LOGIC; signal \last_rr_hot_reg_n_0_[0]\ : STD_LOGIC; signal need_arbitration : STD_LOGIC; signal next_rr_hot : STD_LOGIC_VECTOR ( 4 downto 0 ); signal p_0_in1_in : STD_LOGIC_VECTOR ( 3 downto 1 ); signal p_5_in6_in : STD_LOGIC; signal p_6_in : STD_LOGIC; signal p_7_in9_in : STD_LOGIC; signal p_8_in : STD_LOGIC; signal \^resp_select\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \resp_select__0\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \^s_axi_rvalid\ : STD_LOGIC_VECTOR ( 0 to 0 ); attribute use_clock_enable : string; attribute use_clock_enable of \chosen_reg[0]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[1]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[2]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[3]\ : label is "yes"; attribute use_clock_enable of \chosen_reg[4]\ : label is "yes"; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \last_rr_hot[0]_i_2\ : label is "soft_lutpair126"; attribute SOFT_HLUTNM of \last_rr_hot[0]_i_3\ : label is "soft_lutpair124"; attribute SOFT_HLUTNM of \last_rr_hot[1]_i_2\ : label is "soft_lutpair125"; attribute SOFT_HLUTNM of \last_rr_hot[2]_i_3\ : label is "soft_lutpair126"; attribute SOFT_HLUTNM of \last_rr_hot[3]_i_2\ : label is "soft_lutpair124"; attribute SOFT_HLUTNM of \last_rr_hot[3]_i_3\ : label is "soft_lutpair125"; attribute SOFT_HLUTNM of \last_rr_hot[4]_i_4\ : label is "soft_lutpair128"; attribute SOFT_HLUTNM of \last_rr_hot[4]_i_5\ : label is "soft_lutpair127"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_1\ : label is "soft_lutpair128"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_1__0\ : label is "soft_lutpair129"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_1__1\ : label is "soft_lutpair130"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_1__2\ : label is "soft_lutpair130"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_1__3\ : label is "soft_lutpair131"; attribute SOFT_HLUTNM of \s_axi_rvalid[0]_INST_0_i_1\ : label is "soft_lutpair131"; attribute SOFT_HLUTNM of \s_axi_rvalid[0]_INST_0_i_2\ : label is "soft_lutpair129"; attribute SOFT_HLUTNM of \s_axi_rvalid[0]_INST_0_i_3\ : label is "soft_lutpair127"; begin Q(4 downto 0) <= \^q\(4 downto 0); resp_select(0) <= \^resp_select\(0); s_axi_rvalid(0) <= \^s_axi_rvalid\(0); \chosen[4]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"BBBBBBBBBBBBBBB8" ) port map ( I0 => s_axi_rready(0), I1 => \^s_axi_rvalid\(0), I2 => p_40_out, I3 => p_122_out, I4 => p_102_out, I5 => m_valid_i_reg, O => need_arbitration ); \chosen_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(0), Q => \^q\(0), R => SR(0) ); \chosen_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(1), Q => \^q\(1), R => SR(0) ); \chosen_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(2), Q => \^q\(2), R => SR(0) ); \chosen_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(3), Q => \^q\(3), R => SR(0) ); \chosen_reg[4]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => need_arbitration, D => next_rr_hot(4), Q => \^q\(4), R => SR(0) ); \gen_fpga.gen_mux_5_8[0].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(36), I1 => st_mr_rid(0), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(24), I5 => st_mr_rid(12), O => f_mux4_return(0) ); \gen_fpga.gen_mux_5_8[10].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(46), I1 => st_mr_rid(10), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(34), I5 => st_mr_rid(22), O => f_mux4_return(10) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^q\(4), I1 => p_40_out, O => \^resp_select\(0) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(47), I1 => st_mr_rid(11), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(35), I5 => st_mr_rid(23), O => f_mux4_return(11) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_3__0\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => p_62_out, I1 => \^q\(3), I2 => p_102_out, I3 => \^q\(1), O => \resp_select__0\(0) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => p_62_out, I1 => \^q\(3), I2 => p_82_out, I3 => \^q\(2), O => \resp_select__0\(1) ); \gen_fpga.gen_mux_5_8[12].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(102), I1 => st_mr_rmesg(0), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(68), I5 => st_mr_rmesg(34), O => f_mux4_return(12) ); \gen_fpga.gen_mux_5_8[13].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(103), I1 => st_mr_rmesg(1), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(69), I5 => st_mr_rmesg(35), O => f_mux4_return(13) ); \gen_fpga.gen_mux_5_8[15].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(104), I1 => st_mr_rmesg(2), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(70), I5 => st_mr_rmesg(36), O => f_mux4_return(14) ); \gen_fpga.gen_mux_5_8[16].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(105), I1 => st_mr_rmesg(3), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(71), I5 => st_mr_rmesg(37), O => f_mux4_return(15) ); \gen_fpga.gen_mux_5_8[17].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(106), I1 => st_mr_rmesg(4), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(72), I5 => st_mr_rmesg(38), O => f_mux4_return(16) ); \gen_fpga.gen_mux_5_8[18].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(107), I1 => st_mr_rmesg(5), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(73), I5 => st_mr_rmesg(39), O => f_mux4_return(17) ); \gen_fpga.gen_mux_5_8[19].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(108), I1 => st_mr_rmesg(6), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(74), I5 => st_mr_rmesg(40), O => f_mux4_return(18) ); \gen_fpga.gen_mux_5_8[1].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(37), I1 => st_mr_rid(1), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(25), I5 => st_mr_rid(13), O => f_mux4_return(1) ); \gen_fpga.gen_mux_5_8[20].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(109), I1 => st_mr_rmesg(7), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(75), I5 => st_mr_rmesg(41), O => f_mux4_return(19) ); \gen_fpga.gen_mux_5_8[21].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(110), I1 => st_mr_rmesg(8), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(76), I5 => st_mr_rmesg(42), O => f_mux4_return(20) ); \gen_fpga.gen_mux_5_8[22].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(111), I1 => st_mr_rmesg(9), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(77), I5 => st_mr_rmesg(43), O => f_mux4_return(21) ); \gen_fpga.gen_mux_5_8[23].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(112), I1 => st_mr_rmesg(10), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(78), I5 => st_mr_rmesg(44), O => f_mux4_return(22) ); \gen_fpga.gen_mux_5_8[24].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(113), I1 => st_mr_rmesg(11), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(79), I5 => st_mr_rmesg(45), O => f_mux4_return(23) ); \gen_fpga.gen_mux_5_8[25].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(114), I1 => st_mr_rmesg(12), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(80), I5 => st_mr_rmesg(46), O => f_mux4_return(24) ); \gen_fpga.gen_mux_5_8[26].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(115), I1 => st_mr_rmesg(13), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(81), I5 => st_mr_rmesg(47), O => f_mux4_return(25) ); \gen_fpga.gen_mux_5_8[27].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(116), I1 => st_mr_rmesg(14), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(82), I5 => st_mr_rmesg(48), O => f_mux4_return(26) ); \gen_fpga.gen_mux_5_8[28].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(117), I1 => st_mr_rmesg(15), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(83), I5 => st_mr_rmesg(49), O => f_mux4_return(27) ); \gen_fpga.gen_mux_5_8[29].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(118), I1 => st_mr_rmesg(16), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(84), I5 => st_mr_rmesg(50), O => f_mux4_return(28) ); \gen_fpga.gen_mux_5_8[2].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(38), I1 => st_mr_rid(2), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(26), I5 => st_mr_rid(14), O => f_mux4_return(2) ); \gen_fpga.gen_mux_5_8[30].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(119), I1 => st_mr_rmesg(17), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(85), I5 => st_mr_rmesg(51), O => f_mux4_return(29) ); \gen_fpga.gen_mux_5_8[31].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(120), I1 => st_mr_rmesg(18), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(86), I5 => st_mr_rmesg(52), O => f_mux4_return(30) ); \gen_fpga.gen_mux_5_8[32].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(121), I1 => st_mr_rmesg(19), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(87), I5 => st_mr_rmesg(53), O => f_mux4_return(31) ); \gen_fpga.gen_mux_5_8[33].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(122), I1 => st_mr_rmesg(20), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(88), I5 => st_mr_rmesg(54), O => f_mux4_return(32) ); \gen_fpga.gen_mux_5_8[34].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(123), I1 => st_mr_rmesg(21), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(89), I5 => st_mr_rmesg(55), O => f_mux4_return(33) ); \gen_fpga.gen_mux_5_8[35].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(124), I1 => st_mr_rmesg(22), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(90), I5 => st_mr_rmesg(56), O => f_mux4_return(34) ); \gen_fpga.gen_mux_5_8[36].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(125), I1 => st_mr_rmesg(23), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(91), I5 => st_mr_rmesg(57), O => f_mux4_return(35) ); \gen_fpga.gen_mux_5_8[37].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(126), I1 => st_mr_rmesg(24), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(92), I5 => st_mr_rmesg(58), O => f_mux4_return(36) ); \gen_fpga.gen_mux_5_8[38].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(127), I1 => st_mr_rmesg(25), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(93), I5 => st_mr_rmesg(59), O => f_mux4_return(37) ); \gen_fpga.gen_mux_5_8[39].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(128), I1 => st_mr_rmesg(26), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(94), I5 => st_mr_rmesg(60), O => f_mux4_return(38) ); \gen_fpga.gen_mux_5_8[3].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(39), I1 => st_mr_rid(3), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(27), I5 => st_mr_rid(15), O => f_mux4_return(3) ); \gen_fpga.gen_mux_5_8[40].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(129), I1 => st_mr_rmesg(27), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(95), I5 => st_mr_rmesg(61), O => f_mux4_return(39) ); \gen_fpga.gen_mux_5_8[41].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(130), I1 => st_mr_rmesg(28), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(96), I5 => st_mr_rmesg(62), O => f_mux4_return(40) ); \gen_fpga.gen_mux_5_8[42].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(131), I1 => st_mr_rmesg(29), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(97), I5 => st_mr_rmesg(63), O => f_mux4_return(41) ); \gen_fpga.gen_mux_5_8[43].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(132), I1 => st_mr_rmesg(30), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(98), I5 => st_mr_rmesg(64), O => f_mux4_return(42) ); \gen_fpga.gen_mux_5_8[44].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(133), I1 => st_mr_rmesg(31), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(99), I5 => st_mr_rmesg(65), O => f_mux4_return(43) ); \gen_fpga.gen_mux_5_8[45].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(134), I1 => st_mr_rmesg(32), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(100), I5 => st_mr_rmesg(66), O => f_mux4_return(44) ); \gen_fpga.gen_mux_5_8[46].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rmesg(135), I1 => st_mr_rmesg(33), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rmesg(101), I5 => st_mr_rmesg(67), O => f_mux4_return(45) ); \gen_fpga.gen_mux_5_8[47].mux_s2_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => \m_payload_i_reg[34]_0\(0), I1 => \m_payload_i_reg[34]_1\(0), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => \m_payload_i_reg[34]_2\(0), I5 => \m_payload_i_reg[34]_3\(0), O => f_mux4_return(46) ); \gen_fpga.gen_mux_5_8[4].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(40), I1 => st_mr_rid(4), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(28), I5 => st_mr_rid(16), O => f_mux4_return(4) ); \gen_fpga.gen_mux_5_8[5].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(41), I1 => st_mr_rid(5), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(29), I5 => st_mr_rid(17), O => f_mux4_return(5) ); \gen_fpga.gen_mux_5_8[6].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(42), I1 => st_mr_rid(6), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(30), I5 => st_mr_rid(18), O => f_mux4_return(6) ); \gen_fpga.gen_mux_5_8[7].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(43), I1 => st_mr_rid(7), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(31), I5 => st_mr_rid(19), O => f_mux4_return(7) ); \gen_fpga.gen_mux_5_8[8].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(44), I1 => st_mr_rid(8), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(32), I5 => st_mr_rid(20), O => f_mux4_return(8) ); \gen_fpga.gen_mux_5_8[9].mux_s2_inst_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AFFCA0FCAF0CA00C" ) port map ( I0 => st_mr_rid(45), I1 => st_mr_rid(9), I2 => \resp_select__0\(0), I3 => \resp_select__0\(1), I4 => st_mr_rid(33), I5 => st_mr_rid(21), O => f_mux4_return(9) ); \last_rr_hot[0]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA0202AAAA0200" ) port map ( I0 => p_122_out, I1 => p_62_out, I2 => p_40_out, I3 => \last_rr_hot[0]_i_2_n_0\, I4 => \last_rr_hot[0]_i_3_n_0\, I5 => p_6_in, O => next_rr_hot(0) ); \last_rr_hot[0]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"00AE" ) port map ( I0 => p_5_in6_in, I1 => \last_rr_hot_reg_n_0_[0]\, I2 => p_102_out, I3 => p_82_out, O => \last_rr_hot[0]_i_2_n_0\ ); \last_rr_hot[0]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_40_out, I1 => p_7_in9_in, I2 => p_8_in, O => \last_rr_hot[0]_i_3_n_0\ ); \last_rr_hot[1]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA0202AAAA0200" ) port map ( I0 => p_102_out, I1 => p_40_out, I2 => p_122_out, I3 => \last_rr_hot[1]_i_2_n_0\, I4 => \last_rr_hot[4]_i_4_n_0\, I5 => p_7_in9_in, O => next_rr_hot(1) ); \last_rr_hot[1]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"00AE" ) port map ( I0 => p_6_in, I1 => p_5_in6_in, I2 => p_82_out, I3 => p_62_out, O => \last_rr_hot[1]_i_2_n_0\ ); \last_rr_hot[2]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA2222AAAA0020" ) port map ( I0 => p_82_out, I1 => m_valid_i_reg_0, I2 => \last_rr_hot[4]_i_5_n_0\, I3 => p_40_out, I4 => \last_rr_hot[2]_i_3_n_0\, I5 => p_8_in, O => next_rr_hot(2) ); \last_rr_hot[2]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_102_out, I1 => \last_rr_hot_reg_n_0_[0]\, I2 => p_5_in6_in, O => \last_rr_hot[2]_i_3_n_0\ ); \last_rr_hot[3]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA0202AAAA0200" ) port map ( I0 => p_62_out, I1 => p_102_out, I2 => p_82_out, I3 => \last_rr_hot[3]_i_2_n_0\, I4 => \last_rr_hot[3]_i_3_n_0\, I5 => \last_rr_hot_reg_n_0_[0]\, O => next_rr_hot(3) ); \last_rr_hot[3]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"00AE" ) port map ( I0 => p_8_in, I1 => p_7_in9_in, I2 => p_40_out, I3 => p_122_out, O => \last_rr_hot[3]_i_2_n_0\ ); \last_rr_hot[3]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_82_out, I1 => p_5_in6_in, I2 => p_6_in, O => \last_rr_hot[3]_i_3_n_0\ ); \last_rr_hot[4]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAAAAAAAAAAAAA8" ) port map ( I0 => need_arbitration, I1 => next_rr_hot(3), I2 => next_rr_hot(2), I3 => next_rr_hot(1), I4 => next_rr_hot(0), I5 => next_rr_hot(4), O => last_rr_hot ); \last_rr_hot[4]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAA2222AAAA0020" ) port map ( I0 => p_40_out, I1 => m_valid_i_reg, I2 => \last_rr_hot[4]_i_4_n_0\, I3 => p_102_out, I4 => \last_rr_hot[4]_i_5_n_0\, I5 => p_5_in6_in, O => next_rr_hot(4) ); \last_rr_hot[4]_i_4\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_122_out, I1 => p_8_in, I2 => \last_rr_hot_reg_n_0_[0]\, O => \last_rr_hot[4]_i_4_n_0\ ); \last_rr_hot[4]_i_5\: unisim.vcomponents.LUT3 generic map( INIT => X"F4" ) port map ( I0 => p_62_out, I1 => p_6_in, I2 => p_7_in9_in, O => \last_rr_hot[4]_i_5_n_0\ ); \last_rr_hot_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(0), Q => \last_rr_hot_reg_n_0_[0]\, R => SR(0) ); \last_rr_hot_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(1), Q => p_5_in6_in, R => SR(0) ); \last_rr_hot_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(2), Q => p_6_in, R => SR(0) ); \last_rr_hot_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(3), Q => p_7_in9_in, R => SR(0) ); \last_rr_hot_reg[4]\: unisim.vcomponents.FDSE port map ( C => aclk, CE => last_rr_hot, D => next_rr_hot(4), Q => p_8_in, S => SR(0) ); \m_payload_i[46]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"8F" ) port map ( I0 => \^q\(0), I1 => s_axi_rready(0), I2 => p_122_out, O => \m_payload_i_reg[0]\(0) ); \m_payload_i[46]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"8F" ) port map ( I0 => \^q\(1), I1 => s_axi_rready(0), I2 => p_102_out, O => \m_payload_i_reg[0]_0\(0) ); \m_payload_i[46]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"8F" ) port map ( I0 => \^q\(4), I1 => s_axi_rready(0), I2 => p_40_out, O => \m_payload_i_reg[34]\(0) ); \m_payload_i[46]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"8F" ) port map ( I0 => \^q\(3), I1 => s_axi_rready(0), I2 => p_62_out, O => \m_payload_i_reg[0]_1\(0) ); \m_payload_i[46]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"8F" ) port map ( I0 => \^q\(2), I1 => s_axi_rready(0), I2 => p_82_out, O => \m_payload_i_reg[0]_2\(0) ); \s_axi_rvalid[0]_INST_0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFFFFFFFFFF8" ) port map ( I0 => \^q\(0), I1 => p_122_out, I2 => p_0_in1_in(2), I3 => p_0_in1_in(1), I4 => p_0_in1_in(3), I5 => \^resp_select\(0), O => \^s_axi_rvalid\(0) ); \s_axi_rvalid[0]_INST_0_i_1\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^q\(2), I1 => p_82_out, O => p_0_in1_in(2) ); \s_axi_rvalid[0]_INST_0_i_2\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^q\(1), I1 => p_102_out, O => p_0_in1_in(1) ); \s_axi_rvalid[0]_INST_0_i_3\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^q\(3), I1 => p_62_out, O => p_0_in1_in(3) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_decerr_slave is port ( mi_awready_4 : out STD_LOGIC; p_22_in : out STD_LOGIC; p_29_in : out STD_LOGIC; p_23_in : out STD_LOGIC; p_25_in : out STD_LOGIC; \read_cs__0\ : out STD_LOGIC; mi_arready_4 : out STD_LOGIC; \m_payload_i_reg[13]\ : out STD_LOGIC_VECTOR ( 11 downto 0 ); \skid_buffer_reg[46]\ : out STD_LOGIC_VECTOR ( 11 downto 0 ); SR : in STD_LOGIC_VECTOR ( 0 to 0 ); aclk : in STD_LOGIC; m_ready_d : in STD_LOGIC_VECTOR ( 0 to 0 ); aa_sa_awvalid : in STD_LOGIC; Q : in STD_LOGIC_VECTOR ( 0 to 0 ); mi_rready_4 : in STD_LOGIC; aa_mi_arvalid : in STD_LOGIC; \gen_no_arbiter.m_target_hot_i_reg[4]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_no_arbiter.m_mesg_i_reg[51]\ : in STD_LOGIC_VECTOR ( 19 downto 0 ); \m_ready_d_reg[1]\ : in STD_LOGIC; mi_bready_4 : in STD_LOGIC; \write_cs0__0\ : in STD_LOGIC; write_cs01_out : in STD_LOGIC; s_axi_rlast_i0 : in STD_LOGIC; E : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_no_arbiter.m_mesg_i_reg[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); aresetn_d : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_decerr_slave; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_decerr_slave is signal \gen_axi.read_cnt[4]_i_2_n_0\ : STD_LOGIC; signal \gen_axi.read_cnt[5]_i_2_n_0\ : STD_LOGIC; signal \gen_axi.read_cnt[7]_i_1_n_0\ : STD_LOGIC; signal \gen_axi.read_cnt[7]_i_3_n_0\ : STD_LOGIC; signal \gen_axi.read_cnt_reg\ : STD_LOGIC_VECTOR ( 7 downto 1 ); signal \gen_axi.read_cnt_reg__0\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \gen_axi.read_cs[0]_i_1_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_arready_i_i_1_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_arready_i_i_3_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_awready_i_i_1_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_bid_i[11]_i_1_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_bvalid_i_i_1_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_rlast_i_i_1_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_rlast_i_i_3_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_rlast_i_i_4_n_0\ : STD_LOGIC; signal \gen_axi.s_axi_wready_i_i_1_n_0\ : STD_LOGIC; signal \gen_axi.write_cs[0]_i_1_n_0\ : STD_LOGIC; signal \gen_axi.write_cs[1]_i_1_n_0\ : STD_LOGIC; signal \^mi_arready_4\ : STD_LOGIC; signal \^mi_awready_4\ : STD_LOGIC; signal p_0_in : STD_LOGIC_VECTOR ( 7 downto 0 ); signal \^p_22_in\ : STD_LOGIC; signal \^p_23_in\ : STD_LOGIC; signal \^p_25_in\ : STD_LOGIC; signal \^p_29_in\ : STD_LOGIC; signal \^read_cs__0\ : STD_LOGIC; signal write_cs : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_axi.read_cnt[0]_i_1\ : label is "soft_lutpair23"; attribute SOFT_HLUTNM of \gen_axi.read_cnt[1]_i_1\ : label is "soft_lutpair23"; attribute SOFT_HLUTNM of \gen_axi.read_cnt[2]_i_1\ : label is "soft_lutpair19"; attribute SOFT_HLUTNM of \gen_axi.read_cnt[4]_i_2\ : label is "soft_lutpair19"; attribute SOFT_HLUTNM of \gen_axi.read_cnt[5]_i_1\ : label is "soft_lutpair22"; attribute SOFT_HLUTNM of \gen_axi.read_cnt[5]_i_2\ : label is "soft_lutpair21"; attribute SOFT_HLUTNM of \gen_axi.s_axi_arready_i_i_3\ : label is "soft_lutpair22"; attribute SOFT_HLUTNM of \gen_axi.s_axi_rlast_i_i_3\ : label is "soft_lutpair21"; attribute SOFT_HLUTNM of \gen_axi.write_cs[0]_i_1\ : label is "soft_lutpair20"; attribute SOFT_HLUTNM of \gen_axi.write_cs[1]_i_1\ : label is "soft_lutpair20"; begin mi_arready_4 <= \^mi_arready_4\; mi_awready_4 <= \^mi_awready_4\; p_22_in <= \^p_22_in\; p_23_in <= \^p_23_in\; p_25_in <= \^p_25_in\; p_29_in <= \^p_29_in\; \read_cs__0\ <= \^read_cs__0\; \gen_axi.read_cnt[0]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"74" ) port map ( I0 => \gen_axi.read_cnt_reg__0\(0), I1 => \^p_23_in\, I2 => \gen_no_arbiter.m_mesg_i_reg[51]\(12), O => p_0_in(0) ); \gen_axi.read_cnt[1]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"E22E" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(13), I1 => \^p_23_in\, I2 => \gen_axi.read_cnt_reg__0\(0), I3 => \gen_axi.read_cnt_reg\(1), O => p_0_in(1) ); \gen_axi.read_cnt[2]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"FCAA03AA" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(14), I1 => \gen_axi.read_cnt_reg\(1), I2 => \gen_axi.read_cnt_reg__0\(0), I3 => \^p_23_in\, I4 => \gen_axi.read_cnt_reg\(2), O => p_0_in(2) ); \gen_axi.read_cnt[3]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFCAAAA0003AAAA" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(15), I1 => \gen_axi.read_cnt_reg__0\(0), I2 => \gen_axi.read_cnt_reg\(1), I3 => \gen_axi.read_cnt_reg\(2), I4 => \^p_23_in\, I5 => \gen_axi.read_cnt_reg\(3), O => p_0_in(3) ); \gen_axi.read_cnt[4]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFCAAAA0003AAAA" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(16), I1 => \gen_axi.read_cnt_reg\(2), I2 => \gen_axi.read_cnt[4]_i_2_n_0\, I3 => \gen_axi.read_cnt_reg\(3), I4 => \^p_23_in\, I5 => \gen_axi.read_cnt_reg\(4), O => p_0_in(4) ); \gen_axi.read_cnt[4]_i_2\: unisim.vcomponents.LUT2 generic map( INIT => X"E" ) port map ( I0 => \gen_axi.read_cnt_reg\(1), I1 => \gen_axi.read_cnt_reg__0\(0), O => \gen_axi.read_cnt[4]_i_2_n_0\ ); \gen_axi.read_cnt[5]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"CA3A" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(17), I1 => \gen_axi.read_cnt[5]_i_2_n_0\, I2 => \^p_23_in\, I3 => \gen_axi.read_cnt_reg\(5), O => p_0_in(5) ); \gen_axi.read_cnt[5]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFFE" ) port map ( I0 => \gen_axi.read_cnt_reg\(3), I1 => \gen_axi.read_cnt_reg__0\(0), I2 => \gen_axi.read_cnt_reg\(1), I3 => \gen_axi.read_cnt_reg\(2), I4 => \gen_axi.read_cnt_reg\(4), O => \gen_axi.read_cnt[5]_i_2_n_0\ ); \gen_axi.read_cnt[6]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"CA3A" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(18), I1 => \gen_axi.read_cnt[7]_i_3_n_0\, I2 => \^p_23_in\, I3 => \gen_axi.read_cnt_reg\(6), O => p_0_in(6) ); \gen_axi.read_cnt[7]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"4F40404040404040" ) port map ( I0 => \^read_cs__0\, I1 => mi_rready_4, I2 => \^p_23_in\, I3 => \^mi_arready_4\, I4 => aa_mi_arvalid, I5 => \gen_no_arbiter.m_target_hot_i_reg[4]\(0), O => \gen_axi.read_cnt[7]_i_1_n_0\ ); \gen_axi.read_cnt[7]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"FCAA03AA" ) port map ( I0 => \gen_no_arbiter.m_mesg_i_reg[51]\(19), I1 => \gen_axi.read_cnt[7]_i_3_n_0\, I2 => \gen_axi.read_cnt_reg\(6), I3 => \^p_23_in\, I4 => \gen_axi.read_cnt_reg\(7), O => p_0_in(7) ); \gen_axi.read_cnt[7]_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFFFFFFFFFFE" ) port map ( I0 => \gen_axi.read_cnt_reg\(4), I1 => \gen_axi.read_cnt_reg\(2), I2 => \gen_axi.read_cnt_reg\(1), I3 => \gen_axi.read_cnt_reg__0\(0), I4 => \gen_axi.read_cnt_reg\(3), I5 => \gen_axi.read_cnt_reg\(5), O => \gen_axi.read_cnt[7]_i_3_n_0\ ); \gen_axi.read_cnt_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(0), Q => \gen_axi.read_cnt_reg__0\(0), R => SR(0) ); \gen_axi.read_cnt_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(1), Q => \gen_axi.read_cnt_reg\(1), R => SR(0) ); \gen_axi.read_cnt_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(2), Q => \gen_axi.read_cnt_reg\(2), R => SR(0) ); \gen_axi.read_cnt_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(3), Q => \gen_axi.read_cnt_reg\(3), R => SR(0) ); \gen_axi.read_cnt_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(4), Q => \gen_axi.read_cnt_reg\(4), R => SR(0) ); \gen_axi.read_cnt_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(5), Q => \gen_axi.read_cnt_reg\(5), R => SR(0) ); \gen_axi.read_cnt_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(6), Q => \gen_axi.read_cnt_reg\(6), R => SR(0) ); \gen_axi.read_cnt_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.read_cnt[7]_i_1_n_0\, D => p_0_in(7), Q => \gen_axi.read_cnt_reg\(7), R => SR(0) ); \gen_axi.read_cs[0]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"7F70707070707070" ) port map ( I0 => \^read_cs__0\, I1 => mi_rready_4, I2 => \^p_23_in\, I3 => \^mi_arready_4\, I4 => aa_mi_arvalid, I5 => \gen_no_arbiter.m_target_hot_i_reg[4]\(0), O => \gen_axi.read_cs[0]_i_1_n_0\ ); \gen_axi.read_cs_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_axi.read_cs[0]_i_1_n_0\, Q => \^p_23_in\, R => SR(0) ); \gen_axi.s_axi_arready_i_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"00000000FBBB0000" ) port map ( I0 => \^mi_arready_4\, I1 => \^p_23_in\, I2 => \^read_cs__0\, I3 => mi_rready_4, I4 => aresetn_d, I5 => E(0), O => \gen_axi.s_axi_arready_i_i_1_n_0\ ); \gen_axi.s_axi_arready_i_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000100" ) port map ( I0 => \gen_axi.read_cnt[4]_i_2_n_0\, I1 => \gen_axi.read_cnt_reg\(6), I2 => \gen_axi.read_cnt_reg\(7), I3 => \gen_axi.s_axi_arready_i_i_3_n_0\, I4 => \gen_axi.read_cnt_reg\(2), I5 => \gen_axi.read_cnt_reg\(3), O => \^read_cs__0\ ); \gen_axi.s_axi_arready_i_i_3\: unisim.vcomponents.LUT2 generic map( INIT => X"1" ) port map ( I0 => \gen_axi.read_cnt_reg\(4), I1 => \gen_axi.read_cnt_reg\(5), O => \gen_axi.s_axi_arready_i_i_3_n_0\ ); \gen_axi.s_axi_arready_i_reg\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_axi.s_axi_arready_i_i_1_n_0\, Q => \^mi_arready_4\, R => '0' ); \gen_axi.s_axi_awready_i_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFBB0000F0FF" ) port map ( I0 => \m_ready_d_reg[1]\, I1 => Q(0), I2 => mi_bready_4, I3 => write_cs(1), I4 => write_cs(0), I5 => \^mi_awready_4\, O => \gen_axi.s_axi_awready_i_i_1_n_0\ ); \gen_axi.s_axi_awready_i_reg\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_axi.s_axi_awready_i_i_1_n_0\, Q => \^mi_awready_4\, R => SR(0) ); \gen_axi.s_axi_bid_i[11]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0100000000000000" ) port map ( I0 => write_cs(1), I1 => write_cs(0), I2 => m_ready_d(0), I3 => aa_sa_awvalid, I4 => Q(0), I5 => \^mi_awready_4\, O => \gen_axi.s_axi_bid_i[11]_i_1_n_0\ ); \gen_axi.s_axi_bid_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(0), Q => \m_payload_i_reg[13]\(0), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(10), Q => \m_payload_i_reg[13]\(10), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(11), Q => \m_payload_i_reg[13]\(11), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(1), Q => \m_payload_i_reg[13]\(1), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(2), Q => \m_payload_i_reg[13]\(2), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(3), Q => \m_payload_i_reg[13]\(3), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(4), Q => \m_payload_i_reg[13]\(4), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(5), Q => \m_payload_i_reg[13]\(5), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(6), Q => \m_payload_i_reg[13]\(6), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(7), Q => \m_payload_i_reg[13]\(7), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(8), Q => \m_payload_i_reg[13]\(8), R => SR(0) ); \gen_axi.s_axi_bid_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, D => \gen_no_arbiter.m_mesg_i_reg[11]\(9), Q => \m_payload_i_reg[13]\(9), R => SR(0) ); \gen_axi.s_axi_bvalid_i_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"DDFF00C0" ) port map ( I0 => mi_bready_4, I1 => write_cs(0), I2 => \write_cs0__0\, I3 => write_cs(1), I4 => \^p_29_in\, O => \gen_axi.s_axi_bvalid_i_i_1_n_0\ ); \gen_axi.s_axi_bvalid_i_reg\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_axi.s_axi_bvalid_i_i_1_n_0\, Q => \^p_29_in\, R => SR(0) ); \gen_axi.s_axi_rid_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(0), Q => \skid_buffer_reg[46]\(0), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(10), Q => \skid_buffer_reg[46]\(10), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(11), Q => \skid_buffer_reg[46]\(11), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(1), Q => \skid_buffer_reg[46]\(1), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(2), Q => \skid_buffer_reg[46]\(2), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(3), Q => \skid_buffer_reg[46]\(3), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(4), Q => \skid_buffer_reg[46]\(4), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(5), Q => \skid_buffer_reg[46]\(5), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(6), Q => \skid_buffer_reg[46]\(6), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(7), Q => \skid_buffer_reg[46]\(7), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(8), Q => \skid_buffer_reg[46]\(8), R => SR(0) ); \gen_axi.s_axi_rid_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => \gen_no_arbiter.m_mesg_i_reg[51]\(9), Q => \skid_buffer_reg[46]\(9), R => SR(0) ); \gen_axi.s_axi_rlast_i_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAAFBFFAAAA0800" ) port map ( I0 => s_axi_rlast_i0, I1 => \gen_axi.s_axi_rlast_i_i_3_n_0\, I2 => \gen_axi.read_cnt_reg\(1), I3 => \gen_axi.s_axi_rlast_i_i_4_n_0\, I4 => E(0), I5 => \^p_25_in\, O => \gen_axi.s_axi_rlast_i_i_1_n_0\ ); \gen_axi.s_axi_rlast_i_i_3\: unisim.vcomponents.LUT2 generic map( INIT => X"1" ) port map ( I0 => \gen_axi.read_cnt_reg\(2), I1 => \gen_axi.read_cnt_reg\(3), O => \gen_axi.s_axi_rlast_i_i_3_n_0\ ); \gen_axi.s_axi_rlast_i_i_4\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => \gen_axi.read_cnt_reg\(4), I1 => \gen_axi.read_cnt_reg\(5), I2 => \gen_axi.read_cnt_reg\(6), I3 => \gen_axi.read_cnt_reg\(7), I4 => mi_rready_4, I5 => \^p_23_in\, O => \gen_axi.s_axi_rlast_i_i_4_n_0\ ); \gen_axi.s_axi_rlast_i_reg\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \gen_axi.s_axi_rlast_i_i_1_n_0\, Q => \^p_25_in\, R => SR(0) ); \gen_axi.s_axi_wready_i_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"FF5F000C" ) port map ( I0 => \write_cs0__0\, I1 => write_cs01_out, I2 => write_cs(0), I3 => write_cs(1), I4 => \^p_22_in\, O => \gen_axi.s_axi_wready_i_i_1_n_0\ ); \gen_axi.s_axi_wready_i_reg\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \gen_axi.s_axi_wready_i_i_1_n_0\, Q => \^p_22_in\, R => SR(0) ); \gen_axi.write_cs[0]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"4522" ) port map ( I0 => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, I1 => write_cs(1), I2 => \write_cs0__0\, I3 => write_cs(0), O => \gen_axi.write_cs[0]_i_1_n_0\ ); \gen_axi.write_cs[1]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"FE00FE44" ) port map ( I0 => \gen_axi.s_axi_bid_i[11]_i_1_n_0\, I1 => write_cs(1), I2 => \write_cs0__0\, I3 => write_cs(0), I4 => mi_bready_4, O => \gen_axi.write_cs[1]_i_1_n_0\ ); \gen_axi.write_cs_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \gen_axi.write_cs[0]_i_1_n_0\, Q => write_cs(0), R => SR(0) ); \gen_axi.write_cs_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \gen_axi.write_cs[1]_i_1_n_0\, Q => write_cs(1), R => SR(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter is port ( \s_axi_awready[0]\ : out STD_LOGIC; m_ready_d : out STD_LOGIC_VECTOR ( 1 downto 0 ); ss_wr_awvalid : out STD_LOGIC; ss_wr_awready : in STD_LOGIC; ss_aa_awready : in STD_LOGIC; s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); aresetn_d : in STD_LOGIC; aclk : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter is signal \^m_ready_d\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \m_ready_d[0]_i_1_n_0\ : STD_LOGIC; signal \m_ready_d[1]_i_1_n_0\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \m_valid_i_i_2__0\ : label is "soft_lutpair178"; attribute SOFT_HLUTNM of \s_axi_awready[0]_INST_0\ : label is "soft_lutpair178"; begin m_ready_d(1 downto 0) <= \^m_ready_d\(1 downto 0); \m_ready_d[0]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"000C0008000C0000" ) port map ( I0 => s_axi_awvalid(0), I1 => aresetn_d, I2 => \^m_ready_d\(1), I3 => ss_wr_awready, I4 => \^m_ready_d\(0), I5 => ss_aa_awready, O => \m_ready_d[0]_i_1_n_0\ ); \m_ready_d[1]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"000000000000C8C0" ) port map ( I0 => s_axi_awvalid(0), I1 => aresetn_d, I2 => \^m_ready_d\(1), I3 => ss_wr_awready, I4 => \^m_ready_d\(0), I5 => ss_aa_awready, O => \m_ready_d[1]_i_1_n_0\ ); \m_ready_d_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_ready_d[0]_i_1_n_0\, Q => \^m_ready_d\(0), R => '0' ); \m_ready_d_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_ready_d[1]_i_1_n_0\, Q => \^m_ready_d\(1), R => '0' ); \m_valid_i_i_2__0\: unisim.vcomponents.LUT2 generic map( INIT => X"2" ) port map ( I0 => s_axi_awvalid(0), I1 => \^m_ready_d\(1), O => ss_wr_awvalid ); \s_axi_awready[0]_INST_0\: unisim.vcomponents.LUT4 generic map( INIT => X"EEE0" ) port map ( I0 => \^m_ready_d\(1), I1 => ss_wr_awready, I2 => \^m_ready_d\(0), I3 => ss_aa_awready, O => \s_axi_awready[0]\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter_5 is port ( D : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_axi.s_axi_awready_i_reg\ : out STD_LOGIC; \gen_master_slots[2].w_issuing_cnt_reg[19]\ : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_master_slots[3].w_issuing_cnt_reg[27]\ : out STD_LOGIC_VECTOR ( 2 downto 0 ); \gen_master_slots[0].w_issuing_cnt_reg[3]\ : out STD_LOGIC_VECTOR ( 2 downto 0 ); m_ready_d : out STD_LOGIC_VECTOR ( 1 downto 0 ); w_issuing_cnt : in STD_LOGIC_VECTOR ( 15 downto 0 ); Q : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awready : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); p_108_out : in STD_LOGIC; \chosen_reg[3]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_88_out : in STD_LOGIC; p_68_out : in STD_LOGIC; p_128_out : in STD_LOGIC; aa_sa_awvalid : in STD_LOGIC; aresetn_d : in STD_LOGIC; \mi_awready_mux__3\ : in STD_LOGIC; \s_ready_i0__1\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \sa_wm_awready_mux__3\ : in STD_LOGIC; aclk : in STD_LOGIC ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter_5 : entity is "axi_crossbar_v2_1_14_splitter"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter_5; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter_5 is signal \^gen_axi.s_axi_awready_i_reg\ : STD_LOGIC; signal \gen_master_slots[0].w_issuing_cnt[3]_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[1].w_issuing_cnt[11]_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[2].w_issuing_cnt[19]_i_5_n_0\ : STD_LOGIC; signal \gen_master_slots[3].w_issuing_cnt[27]_i_5_n_0\ : STD_LOGIC; signal \^m_ready_d\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \m_ready_d[0]_i_1_n_0\ : STD_LOGIC; signal \m_ready_d[1]_i_1_n_0\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_axi.s_axi_awready_i_i_2\ : label is "soft_lutpair182"; attribute SOFT_HLUTNM of \gen_master_slots[0].w_issuing_cnt[2]_i_1\ : label is "soft_lutpair185"; attribute SOFT_HLUTNM of \gen_master_slots[0].w_issuing_cnt[3]_i_2\ : label is "soft_lutpair185"; attribute SOFT_HLUTNM of \gen_master_slots[1].w_issuing_cnt[10]_i_1\ : label is "soft_lutpair181"; attribute SOFT_HLUTNM of \gen_master_slots[1].w_issuing_cnt[11]_i_2\ : label is "soft_lutpair181"; attribute SOFT_HLUTNM of \gen_master_slots[2].w_issuing_cnt[18]_i_1\ : label is "soft_lutpair183"; attribute SOFT_HLUTNM of \gen_master_slots[2].w_issuing_cnt[19]_i_2\ : label is "soft_lutpair183"; attribute SOFT_HLUTNM of \gen_master_slots[3].w_issuing_cnt[26]_i_1\ : label is "soft_lutpair184"; attribute SOFT_HLUTNM of \gen_master_slots[3].w_issuing_cnt[27]_i_2\ : label is "soft_lutpair184"; attribute SOFT_HLUTNM of \m_ready_d[1]_i_1\ : label is "soft_lutpair182"; begin \gen_axi.s_axi_awready_i_reg\ <= \^gen_axi.s_axi_awready_i_reg\; m_ready_d(1 downto 0) <= \^m_ready_d\(1 downto 0); \gen_axi.s_axi_awready_i_i_2\: unisim.vcomponents.LUT2 generic map( INIT => X"B" ) port map ( I0 => \^m_ready_d\(1), I1 => aa_sa_awvalid, O => \^gen_axi.s_axi_awready_i_reg\ ); \gen_master_slots[0].w_issuing_cnt[1]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => w_issuing_cnt(0), I1 => \gen_master_slots[0].w_issuing_cnt[3]_i_5_n_0\, I2 => w_issuing_cnt(1), O => \gen_master_slots[0].w_issuing_cnt_reg[3]\(0) ); \gen_master_slots[0].w_issuing_cnt[2]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"7E81" ) port map ( I0 => \gen_master_slots[0].w_issuing_cnt[3]_i_5_n_0\, I1 => w_issuing_cnt(0), I2 => w_issuing_cnt(1), I3 => w_issuing_cnt(2), O => \gen_master_slots[0].w_issuing_cnt_reg[3]\(1) ); \gen_master_slots[0].w_issuing_cnt[3]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => w_issuing_cnt(1), I1 => \gen_master_slots[0].w_issuing_cnt[3]_i_5_n_0\, I2 => w_issuing_cnt(0), I3 => w_issuing_cnt(3), I4 => w_issuing_cnt(2), O => \gen_master_slots[0].w_issuing_cnt_reg[3]\(2) ); \gen_master_slots[0].w_issuing_cnt[3]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"0040404040404040" ) port map ( I0 => \^gen_axi.s_axi_awready_i_reg\, I1 => Q(0), I2 => m_axi_awready(0), I3 => s_axi_bready(0), I4 => p_128_out, I5 => \chosen_reg[3]\(0), O => \gen_master_slots[0].w_issuing_cnt[3]_i_5_n_0\ ); \gen_master_slots[1].w_issuing_cnt[10]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"7E81" ) port map ( I0 => \gen_master_slots[1].w_issuing_cnt[11]_i_5_n_0\, I1 => w_issuing_cnt(4), I2 => w_issuing_cnt(5), I3 => w_issuing_cnt(6), O => D(1) ); \gen_master_slots[1].w_issuing_cnt[11]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => w_issuing_cnt(5), I1 => \gen_master_slots[1].w_issuing_cnt[11]_i_5_n_0\, I2 => w_issuing_cnt(4), I3 => w_issuing_cnt(7), I4 => w_issuing_cnt(6), O => D(2) ); \gen_master_slots[1].w_issuing_cnt[11]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"0040404040404040" ) port map ( I0 => \^gen_axi.s_axi_awready_i_reg\, I1 => Q(1), I2 => m_axi_awready(1), I3 => s_axi_bready(0), I4 => p_108_out, I5 => \chosen_reg[3]\(1), O => \gen_master_slots[1].w_issuing_cnt[11]_i_5_n_0\ ); \gen_master_slots[1].w_issuing_cnt[9]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => w_issuing_cnt(4), I1 => \gen_master_slots[1].w_issuing_cnt[11]_i_5_n_0\, I2 => w_issuing_cnt(5), O => D(0) ); \gen_master_slots[2].w_issuing_cnt[17]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => w_issuing_cnt(8), I1 => \gen_master_slots[2].w_issuing_cnt[19]_i_5_n_0\, I2 => w_issuing_cnt(9), O => \gen_master_slots[2].w_issuing_cnt_reg[19]\(0) ); \gen_master_slots[2].w_issuing_cnt[18]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"7E81" ) port map ( I0 => \gen_master_slots[2].w_issuing_cnt[19]_i_5_n_0\, I1 => w_issuing_cnt(8), I2 => w_issuing_cnt(9), I3 => w_issuing_cnt(10), O => \gen_master_slots[2].w_issuing_cnt_reg[19]\(1) ); \gen_master_slots[2].w_issuing_cnt[19]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => w_issuing_cnt(9), I1 => \gen_master_slots[2].w_issuing_cnt[19]_i_5_n_0\, I2 => w_issuing_cnt(8), I3 => w_issuing_cnt(11), I4 => w_issuing_cnt(10), O => \gen_master_slots[2].w_issuing_cnt_reg[19]\(2) ); \gen_master_slots[2].w_issuing_cnt[19]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"0040404040404040" ) port map ( I0 => \^gen_axi.s_axi_awready_i_reg\, I1 => Q(2), I2 => m_axi_awready(2), I3 => s_axi_bready(0), I4 => p_88_out, I5 => \chosen_reg[3]\(2), O => \gen_master_slots[2].w_issuing_cnt[19]_i_5_n_0\ ); \gen_master_slots[3].w_issuing_cnt[25]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => w_issuing_cnt(12), I1 => \gen_master_slots[3].w_issuing_cnt[27]_i_5_n_0\, I2 => w_issuing_cnt(13), O => \gen_master_slots[3].w_issuing_cnt_reg[27]\(0) ); \gen_master_slots[3].w_issuing_cnt[26]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"7E81" ) port map ( I0 => \gen_master_slots[3].w_issuing_cnt[27]_i_5_n_0\, I1 => w_issuing_cnt(12), I2 => w_issuing_cnt(13), I3 => w_issuing_cnt(14), O => \gen_master_slots[3].w_issuing_cnt_reg[27]\(1) ); \gen_master_slots[3].w_issuing_cnt[27]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => w_issuing_cnt(13), I1 => \gen_master_slots[3].w_issuing_cnt[27]_i_5_n_0\, I2 => w_issuing_cnt(12), I3 => w_issuing_cnt(15), I4 => w_issuing_cnt(14), O => \gen_master_slots[3].w_issuing_cnt_reg[27]\(2) ); \gen_master_slots[3].w_issuing_cnt[27]_i_5\: unisim.vcomponents.LUT6 generic map( INIT => X"0040404040404040" ) port map ( I0 => \^gen_axi.s_axi_awready_i_reg\, I1 => Q(3), I2 => m_axi_awready(3), I3 => s_axi_bready(0), I4 => p_68_out, I5 => \chosen_reg[3]\(3), O => \gen_master_slots[3].w_issuing_cnt[27]_i_5_n_0\ ); \m_ready_d[0]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"000C0008000C0000" ) port map ( I0 => aa_sa_awvalid, I1 => aresetn_d, I2 => \^m_ready_d\(1), I3 => \mi_awready_mux__3\, I4 => \^m_ready_d\(0), I5 => \sa_wm_awready_mux__3\, O => \m_ready_d[0]_i_1_n_0\ ); \m_ready_d[1]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"0000C8C0" ) port map ( I0 => aa_sa_awvalid, I1 => aresetn_d, I2 => \^m_ready_d\(1), I3 => \mi_awready_mux__3\, I4 => \s_ready_i0__1\(0), O => \m_ready_d[1]_i_1_n_0\ ); \m_ready_d_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_ready_d[0]_i_1_n_0\, Q => \^m_ready_d\(0), R => '0' ); \m_ready_d_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_ready_d[1]_i_1_n_0\, Q => \^m_ready_d\(1), R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0\ is port ( \storage_data1_reg[0]\ : out STD_LOGIC; push : in STD_LOGIC; st_aa_awtarget_enc : in STD_LOGIC_VECTOR ( 0 to 0 ); fifoaddr : in STD_LOGIC_VECTOR ( 2 downto 0 ); aclk : in STD_LOGIC ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0\ : entity is "axi_data_fifo_v2_1_12_ndeep_srl"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0\ is signal \NLW_gen_primitive_shifter.gen_srls[0].srl_inst_Q31_UNCONNECTED\ : STD_LOGIC; attribute BOX_TYPE : string; attribute BOX_TYPE of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "PRIMITIVE"; attribute srl_bus_name : string; attribute srl_bus_name of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "inst/\gen_samd.crossbar_samd/gen_slave_slots[0].gen_si_write.wdata_router_w/wrouter_aw_fifo/gen_srls[0].gen_rep[0].srl_nx1/gen_primitive_shifter.gen_srls "; attribute srl_name : string; attribute srl_name of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "inst/\gen_samd.crossbar_samd/gen_slave_slots[0].gen_si_write.wdata_router_w/wrouter_aw_fifo/gen_srls[0].gen_rep[0].srl_nx1/gen_primitive_shifter.gen_srls[0].srl_inst "; begin \gen_primitive_shifter.gen_srls[0].srl_inst\: unisim.vcomponents.SRLC32E generic map( INIT => X"00000000", IS_CLK_INVERTED => '0' ) port map ( A(4 downto 3) => B"00", A(2 downto 0) => fifoaddr(2 downto 0), CE => push, CLK => aclk, D => st_aa_awtarget_enc(0), Q => \storage_data1_reg[0]\, Q31 => \NLW_gen_primitive_shifter.gen_srls[0].srl_inst_Q31_UNCONNECTED\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_6\ is port ( p_2_out : out STD_LOGIC; push : in STD_LOGIC; st_aa_awtarget_enc : in STD_LOGIC_VECTOR ( 0 to 0 ); fifoaddr : in STD_LOGIC_VECTOR ( 2 downto 0 ); aclk : in STD_LOGIC ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_6\ : entity is "axi_data_fifo_v2_1_12_ndeep_srl"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_6\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_6\ is signal \NLW_gen_primitive_shifter.gen_srls[0].srl_inst_Q31_UNCONNECTED\ : STD_LOGIC; attribute BOX_TYPE : string; attribute BOX_TYPE of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "PRIMITIVE"; attribute srl_bus_name : string; attribute srl_bus_name of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "inst/\gen_samd.crossbar_samd/gen_slave_slots[0].gen_si_write.wdata_router_w/wrouter_aw_fifo/gen_srls[0].gen_rep[1].srl_nx1/gen_primitive_shifter.gen_srls "; attribute srl_name : string; attribute srl_name of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "inst/\gen_samd.crossbar_samd/gen_slave_slots[0].gen_si_write.wdata_router_w/wrouter_aw_fifo/gen_srls[0].gen_rep[1].srl_nx1/gen_primitive_shifter.gen_srls[0].srl_inst "; begin \gen_primitive_shifter.gen_srls[0].srl_inst\: unisim.vcomponents.SRLC32E generic map( INIT => X"00000000", IS_CLK_INVERTED => '0' ) port map ( A(4 downto 3) => B"00", A(2 downto 0) => fifoaddr(2 downto 0), CE => push, CLK => aclk, D => st_aa_awtarget_enc(0), Q => p_2_out, Q31 => \NLW_gen_primitive_shifter.gen_srls[0].srl_inst_Q31_UNCONNECTED\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_7\ is port ( push : out STD_LOGIC; \storage_data1_reg[2]\ : out STD_LOGIC; \m_aready__1\ : out STD_LOGIC; \m_aready0__3\ : out STD_LOGIC; D : in STD_LOGIC_VECTOR ( 0 to 0 ); fifoaddr : in STD_LOGIC_VECTOR ( 2 downto 0 ); aclk : in STD_LOGIC; match : in STD_LOGIC; out0 : in STD_LOGIC_VECTOR ( 1 downto 0 ); load_s1 : in STD_LOGIC; m_select_enc : in STD_LOGIC_VECTOR ( 2 downto 0 ); ss_wr_awready : in STD_LOGIC; m_ready_d : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_avalid : in STD_LOGIC; s_axi_wvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_wready : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_22_in : in STD_LOGIC ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_7\ : entity is "axi_data_fifo_v2_1_12_ndeep_srl"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_7\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_7\ is signal \^m_aready0__3\ : STD_LOGIC; signal \^m_aready__1\ : STD_LOGIC; signal p_3_out : STD_LOGIC; signal \^push\ : STD_LOGIC; signal \s_axi_wready[0]_INST_0_i_2_n_0\ : STD_LOGIC; signal \NLW_gen_primitive_shifter.gen_srls[0].srl_inst_Q31_UNCONNECTED\ : STD_LOGIC; attribute BOX_TYPE : string; attribute BOX_TYPE of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "PRIMITIVE"; attribute srl_bus_name : string; attribute srl_bus_name of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "inst/\gen_samd.crossbar_samd/gen_slave_slots[0].gen_si_write.wdata_router_w/wrouter_aw_fifo/gen_srls[0].gen_rep[2].srl_nx1/gen_primitive_shifter.gen_srls "; attribute srl_name : string; attribute srl_name of \gen_primitive_shifter.gen_srls[0].srl_inst\ : label is "inst/\gen_samd.crossbar_samd/gen_slave_slots[0].gen_si_write.wdata_router_w/wrouter_aw_fifo/gen_srls[0].gen_rep[2].srl_nx1/gen_primitive_shifter.gen_srls[0].srl_inst "; begin \m_aready0__3\ <= \^m_aready0__3\; \m_aready__1\ <= \^m_aready__1\; push <= \^push\; \gen_primitive_shifter.gen_srls[0].srl_inst\: unisim.vcomponents.SRLC32E generic map( INIT => X"00000000", IS_CLK_INVERTED => '0' ) port map ( A(4 downto 3) => B"00", A(2 downto 0) => fifoaddr(2 downto 0), CE => \^push\, CLK => aclk, D => D(0), Q => p_3_out, Q31 => \NLW_gen_primitive_shifter.gen_srls[0].srl_inst_Q31_UNCONNECTED\ ); \gen_primitive_shifter.gen_srls[0].srl_inst_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0088000000F80000" ) port map ( I0 => ss_wr_awready, I1 => out0(0), I2 => out0(1), I3 => m_ready_d(0), I4 => s_axi_awvalid(0), I5 => \^m_aready__1\, O => \^push\ ); \m_valid_i_i_1__8\: unisim.vcomponents.LUT4 generic map( INIT => X"8000" ) port map ( I0 => s_axi_wlast(0), I1 => m_avalid, I2 => s_axi_wvalid(0), I3 => \^m_aready0__3\, O => \^m_aready__1\ ); \s_axi_wready[0]_INST_0_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"AAAAAFEAAAAAAAEA" ) port map ( I0 => \s_axi_wready[0]_INST_0_i_2_n_0\, I1 => m_axi_wready(1), I2 => m_select_enc(0), I3 => m_select_enc(1), I4 => m_select_enc(2), I5 => m_axi_wready(2), O => \^m_aready0__3\ ); \s_axi_wready[0]_INST_0_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0F0000CA000000CA" ) port map ( I0 => m_axi_wready(0), I1 => p_22_in, I2 => m_select_enc(2), I3 => m_select_enc(1), I4 => m_select_enc(0), I5 => m_axi_wready(3), O => \s_axi_wready[0]_INST_0_i_2_n_0\ ); \storage_data1[2]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"C5FFC500" ) port map ( I0 => match, I1 => p_3_out, I2 => out0(0), I3 => load_s1, I4 => m_select_enc(2), O => \storage_data1_reg[2]\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1\ is port ( \m_payload_i_reg[2]_0\ : out STD_LOGIC; m_valid_i_reg_0 : out STD_LOGIC; mi_bready_4 : out STD_LOGIC; s_ready_i_reg_0 : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 11 downto 0 ); aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; \aresetn_d_reg[0]\ : in STD_LOGIC; p_29_in : in STD_LOGIC; s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); D : in STD_LOGIC_VECTOR ( 11 downto 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1\ is signal \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\ : STD_LOGIC; signal \^m_payload_i_reg[2]_0\ : STD_LOGIC; signal \m_valid_i_i_1__0_n_0\ : STD_LOGIC; signal \^m_valid_i_reg_0\ : STD_LOGIC; signal \^mi_bready_4\ : STD_LOGIC; signal \s_ready_i_i_1__2_n_0\ : STD_LOGIC; signal \^s_ready_i_reg_0\ : STD_LOGIC; begin \m_payload_i_reg[2]_0\ <= \^m_payload_i_reg[2]_0\; m_valid_i_reg_0 <= \^m_valid_i_reg_0\; mi_bready_4 <= \^mi_bready_4\; s_ready_i_reg_0 <= \^s_ready_i_reg_0\; \aresetn_d_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \aresetn_d_reg[0]\, Q => \^s_ready_i_reg_0\, R => '0' ); \m_payload_i[13]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^m_payload_i_reg[2]_0\, O => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\ ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(8), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(9), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(10), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(11), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(0), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(1), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(2), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(3), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(4), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(5), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(6), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen4\, D => D(7), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_valid_i_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"8BBBBBBB" ) port map ( I0 => p_29_in, I1 => \^mi_bready_4\, I2 => s_axi_bready(0), I3 => \^m_payload_i_reg[2]_0\, I4 => Q(0), O => \m_valid_i_i_1__0_n_0\ ); \m_valid_i_i_1__9\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^s_ready_i_reg_0\, O => \^m_valid_i_reg_0\ ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_valid_i_i_1__0_n_0\, Q => \^m_payload_i_reg[2]_0\, R => \^m_valid_i_reg_0\ ); \s_ready_i_i_1__2\: unisim.vcomponents.LUT5 generic map( INIT => X"B111FFFF" ) port map ( I0 => \^m_payload_i_reg[2]_0\, I1 => p_29_in, I2 => s_axi_bready(0), I3 => Q(0), I4 => \^s_ready_i_reg_0\, O => \s_ready_i_i_1__2_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__2_n_0\, Q => \^mi_bready_4\, R => p_1_in ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_11\ is port ( \m_payload_i_reg[0]_0\ : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 13 downto 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_11\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_11\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_11\ is signal \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\ : STD_LOGIC; signal \^m_axi_bready\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^m_payload_i_reg[0]_0\ : STD_LOGIC; signal \m_valid_i_i_1__2_n_0\ : STD_LOGIC; signal \s_ready_i_i_1__3_n_0\ : STD_LOGIC; begin m_axi_bready(0) <= \^m_axi_bready\(0); \m_payload_i_reg[0]_0\ <= \^m_payload_i_reg[0]_0\; \m_payload_i[13]_i_1__3\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^m_payload_i_reg[0]_0\, O => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\ ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(0), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(10), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(11), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(12), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(13), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(1), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(2), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(3), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(4), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(5), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(6), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(7), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(8), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen60_in\, D => D(9), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_valid_i_i_1__2\: unisim.vcomponents.LUT5 generic map( INIT => X"8BBBBBBB" ) port map ( I0 => m_axi_bvalid(0), I1 => \^m_axi_bready\(0), I2 => s_axi_bready(0), I3 => \^m_payload_i_reg[0]_0\, I4 => Q(0), O => \m_valid_i_i_1__2_n_0\ ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_valid_i_i_1__2_n_0\, Q => \^m_payload_i_reg[0]_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__3\: unisim.vcomponents.LUT5 generic map( INIT => X"B111FFFF" ) port map ( I0 => \^m_payload_i_reg[0]_0\, I1 => m_axi_bvalid(0), I2 => s_axi_bready(0), I3 => Q(0), I4 => \aresetn_d_reg[1]_0\, O => \s_ready_i_i_1__3_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__3_n_0\, Q => \^m_axi_bready\(0), R => p_1_in ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_13\ is port ( \m_payload_i_reg[0]_0\ : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 13 downto 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_13\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_13\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_13\ is signal \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\ : STD_LOGIC; signal \^m_axi_bready\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^m_payload_i_reg[0]_0\ : STD_LOGIC; signal m_valid_i_i_1_n_0 : STD_LOGIC; signal \s_ready_i_i_1__1_n_0\ : STD_LOGIC; begin m_axi_bready(0) <= \^m_axi_bready\(0); \m_payload_i_reg[0]_0\ <= \^m_payload_i_reg[0]_0\; \m_payload_i[13]_i_1__1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^m_payload_i_reg[0]_0\, O => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\ ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(0), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(10), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(11), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(12), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(13), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(1), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(2), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(3), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(4), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(5), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(6), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(7), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(8), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen53_in\, D => D(9), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); m_valid_i_i_1: unisim.vcomponents.LUT5 generic map( INIT => X"8BBBBBBB" ) port map ( I0 => m_axi_bvalid(0), I1 => \^m_axi_bready\(0), I2 => s_axi_bready(0), I3 => \^m_payload_i_reg[0]_0\, I4 => Q(0), O => m_valid_i_i_1_n_0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i_i_1_n_0, Q => \^m_payload_i_reg[0]_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__1\: unisim.vcomponents.LUT5 generic map( INIT => X"B111FFFF" ) port map ( I0 => \^m_payload_i_reg[0]_0\, I1 => m_axi_bvalid(0), I2 => s_axi_bready(0), I3 => Q(0), I4 => \aresetn_d_reg[1]_0\, O => \s_ready_i_i_1__1_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__1_n_0\, Q => \^m_axi_bready\(0), R => p_1_in ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_15\ is port ( \m_payload_i_reg[0]_0\ : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[2]\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; p_108_out : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 13 downto 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_15\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_15\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_15\ is signal \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\ : STD_LOGIC; signal \^m_axi_bready\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^m_payload_i_reg[0]_0\ : STD_LOGIC; signal m_valid_i_i_2_n_0 : STD_LOGIC; signal \s_ready_i_i_1__0_n_0\ : STD_LOGIC; begin m_axi_bready(0) <= \^m_axi_bready\(0); \m_payload_i_reg[0]_0\ <= \^m_payload_i_reg[0]_0\; \last_rr_hot[2]_i_2__0\: unisim.vcomponents.LUT2 generic map( INIT => X"E" ) port map ( I0 => \^m_payload_i_reg[0]_0\, I1 => p_108_out, O => \chosen_reg[2]\ ); \m_payload_i[13]_i_1__2\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^m_payload_i_reg[0]_0\, O => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\ ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(0), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(10), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(11), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(12), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(13), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(1), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(2), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(3), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(4), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(5), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(6), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(7), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(8), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen411_in\, D => D(9), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); m_valid_i_i_2: unisim.vcomponents.LUT5 generic map( INIT => X"8BBBBBBB" ) port map ( I0 => m_axi_bvalid(0), I1 => \^m_axi_bready\(0), I2 => s_axi_bready(0), I3 => \^m_payload_i_reg[0]_0\, I4 => Q(0), O => m_valid_i_i_2_n_0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i_i_2_n_0, Q => \^m_payload_i_reg[0]_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"B111FFFF" ) port map ( I0 => \^m_payload_i_reg[0]_0\, I1 => m_axi_bvalid(0), I2 => s_axi_bready(0), I3 => Q(0), I4 => \aresetn_d_reg[1]_0\, O => \s_ready_i_i_1__0_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__0_n_0\, Q => \^m_axi_bready\(0), R => p_1_in ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_9\ is port ( \m_payload_i_reg[0]_0\ : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); p_1_in : out STD_LOGIC; \chosen_reg[4]\ : out STD_LOGIC; \aresetn_d_reg[1]\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; aclk : in STD_LOGIC; aresetn : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_1\ : in STD_LOGIC; p_88_out : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 13 downto 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_9\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_9\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_9\ is signal \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\ : STD_LOGIC; signal \^m_axi_bready\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^m_payload_i_reg[0]_0\ : STD_LOGIC; signal \m_valid_i_i_1__1_n_0\ : STD_LOGIC; signal p_0_in : STD_LOGIC_VECTOR ( 1 to 1 ); signal \^p_1_in\ : STD_LOGIC; signal s_ready_i_i_2_n_0 : STD_LOGIC; begin m_axi_bready(0) <= \^m_axi_bready\(0); \m_payload_i_reg[0]_0\ <= \^m_payload_i_reg[0]_0\; p_1_in <= \^p_1_in\; \aresetn_d[1]_i_1\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => p_0_in(1), I1 => aresetn, O => \aresetn_d_reg[1]\ ); \aresetn_d_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => aresetn, Q => p_0_in(1), R => '0' ); \last_rr_hot[4]_i_3__0\: unisim.vcomponents.LUT2 generic map( INIT => X"E" ) port map ( I0 => \^m_payload_i_reg[0]_0\, I1 => p_88_out, O => \chosen_reg[4]\ ); \m_payload_i[13]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \^m_payload_i_reg[0]_0\, O => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\ ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(0), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(10), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(11), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(12), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(13), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(1), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(2), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(3), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(4), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(5), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(6), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(7), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(8), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw/gen_multi_thread.arbiter_resp_inst/chosen6\, D => D(9), Q => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_valid_i_i_1__1\: unisim.vcomponents.LUT5 generic map( INIT => X"8BBBBBBB" ) port map ( I0 => m_axi_bvalid(0), I1 => \^m_axi_bready\(0), I2 => s_axi_bready(0), I3 => \^m_payload_i_reg[0]_0\, I4 => Q(0), O => \m_valid_i_i_1__1_n_0\ ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \m_valid_i_i_1__1_n_0\, Q => \^m_payload_i_reg[0]_0\, R => \aresetn_d_reg[1]_0\ ); s_ready_i_i_1: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => p_0_in(1), O => \^p_1_in\ ); s_ready_i_i_2: unisim.vcomponents.LUT5 generic map( INIT => X"B111FFFF" ) port map ( I0 => \^m_payload_i_reg[0]_0\, I1 => m_axi_bvalid(0), I2 => s_axi_bready(0), I3 => Q(0), I4 => \aresetn_d_reg[1]_1\, O => s_ready_i_i_2_n_0 ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => s_ready_i_i_2_n_0, Q => \^m_axi_bready\(0), R => \^p_1_in\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2\ is port ( m_valid_i_reg_0 : out STD_LOGIC; \skid_buffer_reg[34]_0\ : out STD_LOGIC; \r_cmd_pop_4__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 12 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[4]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); p_23_in : in STD_LOGIC; \gen_axi.s_axi_rid_i_reg[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); p_25_in : in STD_LOGIC; E : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2\ is signal \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : STD_LOGIC_VECTOR ( 12 downto 0 ); signal m_valid_i0 : STD_LOGIC; signal \^m_valid_i_reg_0\ : STD_LOGIC; signal \s_ready_i_i_1__6_n_0\ : STD_LOGIC; signal skid_buffer : STD_LOGIC_VECTOR ( 46 downto 34 ); signal \^skid_buffer_reg[34]_0\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[34]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[35]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[36]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[37]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[38]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[39]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[40]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[41]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[42]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[43]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[44]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[45]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[46]\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \m_payload_i[35]_i_1__3\ : label is "soft_lutpair123"; attribute SOFT_HLUTNM of \m_payload_i[36]_i_1__3\ : label is "soft_lutpair123"; attribute SOFT_HLUTNM of \m_payload_i[37]_i_1__3\ : label is "soft_lutpair122"; attribute SOFT_HLUTNM of \m_payload_i[38]_i_1__3\ : label is "soft_lutpair122"; attribute SOFT_HLUTNM of \m_payload_i[39]_i_1__3\ : label is "soft_lutpair121"; attribute SOFT_HLUTNM of \m_payload_i[40]_i_1__3\ : label is "soft_lutpair121"; attribute SOFT_HLUTNM of \m_payload_i[41]_i_1__3\ : label is "soft_lutpair120"; attribute SOFT_HLUTNM of \m_payload_i[42]_i_1__3\ : label is "soft_lutpair120"; attribute SOFT_HLUTNM of \m_payload_i[43]_i_1__3\ : label is "soft_lutpair119"; attribute SOFT_HLUTNM of \m_payload_i[44]_i_1__3\ : label is "soft_lutpair119"; attribute SOFT_HLUTNM of \m_payload_i[45]_i_1__3\ : label is "soft_lutpair118"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_2__3\ : label is "soft_lutpair118"; begin \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12 downto 0) <= \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12 downto 0); m_valid_i_reg_0 <= \^m_valid_i_reg_0\; \skid_buffer_reg[34]_0\ <= \^skid_buffer_reg[34]_0\; \gen_master_slots[4].r_issuing_cnt[32]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"8000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), I1 => \chosen_reg[4]\(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), O => \r_cmd_pop_4__1\ ); \m_payload_i[34]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => p_25_in, I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[34]\, O => skid_buffer(34) ); \m_payload_i[35]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(0), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[35]\, O => skid_buffer(35) ); \m_payload_i[36]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(1), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[36]\, O => skid_buffer(36) ); \m_payload_i[37]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(2), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[37]\, O => skid_buffer(37) ); \m_payload_i[38]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(3), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[38]\, O => skid_buffer(38) ); \m_payload_i[39]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(4), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[39]\, O => skid_buffer(39) ); \m_payload_i[40]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(5), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[40]\, O => skid_buffer(40) ); \m_payload_i[41]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(6), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[41]\, O => skid_buffer(41) ); \m_payload_i[42]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(7), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[42]\, O => skid_buffer(42) ); \m_payload_i[43]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(8), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[43]\, O => skid_buffer(43) ); \m_payload_i[44]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(9), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[44]\, O => skid_buffer(44) ); \m_payload_i[45]_i_1__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(10), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[45]\, O => skid_buffer(45) ); \m_payload_i[46]_i_2__3\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => \gen_axi.s_axi_rid_i_reg[11]\(11), I1 => \^skid_buffer_reg[34]_0\, I2 => \skid_buffer_reg_n_0_[46]\, O => skid_buffer(46) ); \m_payload_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(34), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(35), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(36), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(37), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(38), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(39), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(40), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(41), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(42), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(43), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_payload_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(44), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(45), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => E(0), D => skid_buffer(46), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_valid_i_i_1__5\: unisim.vcomponents.LUT5 generic map( INIT => X"DDFDFDFD" ) port map ( I0 => \^skid_buffer_reg[34]_0\, I1 => p_23_in, I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), I4 => \chosen_reg[4]\(0), O => m_valid_i0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i0, Q => \^m_valid_i_reg_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__6\: unisim.vcomponents.LUT5 generic map( INIT => X"D5D5FFD5" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => s_axi_rready(0), I2 => \chosen_reg[4]\(0), I3 => \^skid_buffer_reg[34]_0\, I4 => p_23_in, O => \s_ready_i_i_1__6_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__6_n_0\, Q => \^skid_buffer_reg[34]_0\, R => p_1_in ); \skid_buffer_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => p_25_in, Q => \skid_buffer_reg_n_0_[34]\, R => '0' ); \skid_buffer_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(0), Q => \skid_buffer_reg_n_0_[35]\, R => '0' ); \skid_buffer_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(1), Q => \skid_buffer_reg_n_0_[36]\, R => '0' ); \skid_buffer_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(2), Q => \skid_buffer_reg_n_0_[37]\, R => '0' ); \skid_buffer_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(3), Q => \skid_buffer_reg_n_0_[38]\, R => '0' ); \skid_buffer_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(4), Q => \skid_buffer_reg_n_0_[39]\, R => '0' ); \skid_buffer_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(5), Q => \skid_buffer_reg_n_0_[40]\, R => '0' ); \skid_buffer_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(6), Q => \skid_buffer_reg_n_0_[41]\, R => '0' ); \skid_buffer_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(7), Q => \skid_buffer_reg_n_0_[42]\, R => '0' ); \skid_buffer_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(8), Q => \skid_buffer_reg_n_0_[43]\, R => '0' ); \skid_buffer_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(9), Q => \skid_buffer_reg_n_0_[44]\, R => '0' ); \skid_buffer_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(10), Q => \skid_buffer_reg_n_0_[45]\, R => '0' ); \skid_buffer_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^skid_buffer_reg[34]_0\, D => \gen_axi.s_axi_rid_i_reg[11]\(11), Q => \skid_buffer_reg_n_0_[46]\, R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_10\ is port ( m_valid_i_reg_0 : out STD_LOGIC; \m_axi_rready[3]\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \r_cmd_pop_3__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \chosen_reg[4]\ : out STD_LOGIC; \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[3]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); ADDRESS_HIT_3 : in STD_LOGIC; \gen_master_slots[2].r_issuing_cnt_reg[16]\ : in STD_LOGIC; \r_cmd_pop_4__1\ : in STD_LOGIC; match : in STD_LOGIC; r_issuing_cnt : in STD_LOGIC_VECTOR ( 4 downto 0 ); p_39_in : in STD_LOGIC; p_82_out : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); \chosen_reg[3]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_10\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_10\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_10\ is signal \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \gen_no_arbiter.s_ready_i[0]_i_24__0_n_0\ : STD_LOGIC; signal \^m_axi_rready[3]\ : STD_LOGIC; signal m_valid_i0 : STD_LOGIC; signal \^m_valid_i_reg_0\ : STD_LOGIC; signal \^r_cmd_pop_3__1\ : STD_LOGIC; signal \s_ready_i_i_1__7_n_0\ : STD_LOGIC; signal skid_buffer : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \skid_buffer_reg_n_0_[0]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[10]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[11]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[12]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[13]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[14]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[15]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[16]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[17]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[18]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[19]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[1]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[20]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[21]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[22]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[23]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[24]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[25]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[26]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[27]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[28]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[29]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[2]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[30]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[31]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[32]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[33]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[34]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[35]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[36]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[37]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[38]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[39]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[3]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[40]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[41]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[42]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[43]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[44]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[45]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[46]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[4]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[5]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[6]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[7]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[8]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[9]\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_master_slots[3].r_issuing_cnt[27]_i_3\ : label is "soft_lutpair94"; attribute SOFT_HLUTNM of \last_rr_hot[4]_i_3\ : label is "soft_lutpair94"; attribute SOFT_HLUTNM of \m_payload_i[10]_i_1__2\ : label is "soft_lutpair113"; attribute SOFT_HLUTNM of \m_payload_i[11]_i_1__2\ : label is "soft_lutpair112"; attribute SOFT_HLUTNM of \m_payload_i[12]_i_1__2\ : label is "soft_lutpair107"; attribute SOFT_HLUTNM of \m_payload_i[13]_i_1__7\ : label is "soft_lutpair112"; attribute SOFT_HLUTNM of \m_payload_i[14]_i_1__2\ : label is "soft_lutpair111"; attribute SOFT_HLUTNM of \m_payload_i[15]_i_1__2\ : label is "soft_lutpair111"; attribute SOFT_HLUTNM of \m_payload_i[16]_i_1__2\ : label is "soft_lutpair110"; attribute SOFT_HLUTNM of \m_payload_i[17]_i_1__2\ : label is "soft_lutpair110"; attribute SOFT_HLUTNM of \m_payload_i[18]_i_1__2\ : label is "soft_lutpair109"; attribute SOFT_HLUTNM of \m_payload_i[19]_i_1__2\ : label is "soft_lutpair109"; attribute SOFT_HLUTNM of \m_payload_i[1]_i_1__2\ : label is "soft_lutpair117"; attribute SOFT_HLUTNM of \m_payload_i[20]_i_1__2\ : label is "soft_lutpair108"; attribute SOFT_HLUTNM of \m_payload_i[21]_i_1__2\ : label is "soft_lutpair108"; attribute SOFT_HLUTNM of \m_payload_i[22]_i_1__2\ : label is "soft_lutpair107"; attribute SOFT_HLUTNM of \m_payload_i[23]_i_1__2\ : label is "soft_lutpair106"; attribute SOFT_HLUTNM of \m_payload_i[24]_i_1__2\ : label is "soft_lutpair106"; attribute SOFT_HLUTNM of \m_payload_i[25]_i_1__2\ : label is "soft_lutpair105"; attribute SOFT_HLUTNM of \m_payload_i[26]_i_1__2\ : label is "soft_lutpair95"; attribute SOFT_HLUTNM of \m_payload_i[27]_i_1__2\ : label is "soft_lutpair105"; attribute SOFT_HLUTNM of \m_payload_i[28]_i_1__2\ : label is "soft_lutpair104"; attribute SOFT_HLUTNM of \m_payload_i[29]_i_1__2\ : label is "soft_lutpair104"; attribute SOFT_HLUTNM of \m_payload_i[2]_i_1__2\ : label is "soft_lutpair117"; attribute SOFT_HLUTNM of \m_payload_i[30]_i_1__2\ : label is "soft_lutpair103"; attribute SOFT_HLUTNM of \m_payload_i[31]_i_1__2\ : label is "soft_lutpair103"; attribute SOFT_HLUTNM of \m_payload_i[32]_i_1__2\ : label is "soft_lutpair102"; attribute SOFT_HLUTNM of \m_payload_i[33]_i_1__2\ : label is "soft_lutpair102"; attribute SOFT_HLUTNM of \m_payload_i[34]_i_1__2\ : label is "soft_lutpair101"; attribute SOFT_HLUTNM of \m_payload_i[35]_i_1__2\ : label is "soft_lutpair101"; attribute SOFT_HLUTNM of \m_payload_i[36]_i_1__2\ : label is "soft_lutpair100"; attribute SOFT_HLUTNM of \m_payload_i[37]_i_1__2\ : label is "soft_lutpair100"; attribute SOFT_HLUTNM of \m_payload_i[38]_i_1__2\ : label is "soft_lutpair99"; attribute SOFT_HLUTNM of \m_payload_i[39]_i_1__2\ : label is "soft_lutpair99"; attribute SOFT_HLUTNM of \m_payload_i[3]_i_1__2\ : label is "soft_lutpair116"; attribute SOFT_HLUTNM of \m_payload_i[40]_i_1__2\ : label is "soft_lutpair98"; attribute SOFT_HLUTNM of \m_payload_i[41]_i_1__2\ : label is "soft_lutpair98"; attribute SOFT_HLUTNM of \m_payload_i[42]_i_1__2\ : label is "soft_lutpair97"; attribute SOFT_HLUTNM of \m_payload_i[43]_i_1__2\ : label is "soft_lutpair97"; attribute SOFT_HLUTNM of \m_payload_i[44]_i_1__2\ : label is "soft_lutpair96"; attribute SOFT_HLUTNM of \m_payload_i[45]_i_1__2\ : label is "soft_lutpair96"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_2__2\ : label is "soft_lutpair95"; attribute SOFT_HLUTNM of \m_payload_i[4]_i_1__2\ : label is "soft_lutpair116"; attribute SOFT_HLUTNM of \m_payload_i[5]_i_1__2\ : label is "soft_lutpair113"; attribute SOFT_HLUTNM of \m_payload_i[6]_i_1__2\ : label is "soft_lutpair115"; attribute SOFT_HLUTNM of \m_payload_i[7]_i_1__2\ : label is "soft_lutpair115"; attribute SOFT_HLUTNM of \m_payload_i[8]_i_1__2\ : label is "soft_lutpair114"; attribute SOFT_HLUTNM of \m_payload_i[9]_i_1__2\ : label is "soft_lutpair114"; begin \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) <= \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0); \m_axi_rready[3]\ <= \^m_axi_rready[3]\; m_valid_i_reg_0 <= \^m_valid_i_reg_0\; \r_cmd_pop_3__1\ <= \^r_cmd_pop_3__1\; \gen_master_slots[3].r_issuing_cnt[27]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => r_issuing_cnt(1), I1 => r_issuing_cnt(2), I2 => r_issuing_cnt(0), I3 => r_issuing_cnt(3), I4 => \^r_cmd_pop_3__1\, I5 => p_39_in, O => E(0) ); \gen_master_slots[3].r_issuing_cnt[27]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"8000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), I1 => \chosen_reg[3]\(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), O => \^r_cmd_pop_3__1\ ); \gen_no_arbiter.s_ready_i[0]_i_17__0\: unisim.vcomponents.LUT6 generic map( INIT => X"F8F8FF00F8F8FFFF" ) port map ( I0 => ADDRESS_HIT_3, I1 => \gen_no_arbiter.s_ready_i[0]_i_24__0_n_0\, I2 => \gen_master_slots[2].r_issuing_cnt_reg[16]\, I3 => \r_cmd_pop_4__1\, I4 => match, I5 => r_issuing_cnt(4), O => \gen_no_arbiter.s_ready_i_reg[0]\ ); \gen_no_arbiter.s_ready_i[0]_i_24__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFEF" ) port map ( I0 => \^r_cmd_pop_3__1\, I1 => r_issuing_cnt(0), I2 => r_issuing_cnt(3), I3 => r_issuing_cnt(1), I4 => r_issuing_cnt(2), O => \gen_no_arbiter.s_ready_i[0]_i_24__0_n_0\ ); \last_rr_hot[4]_i_3\: unisim.vcomponents.LUT2 generic map( INIT => X"E" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => p_82_out, O => \chosen_reg[4]\ ); \m_payload_i[0]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(0), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[0]\, O => skid_buffer(0) ); \m_payload_i[10]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(10), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[10]\, O => skid_buffer(10) ); \m_payload_i[11]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(11), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[11]\, O => skid_buffer(11) ); \m_payload_i[12]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(12), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[12]\, O => skid_buffer(12) ); \m_payload_i[13]_i_1__7\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(13), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[13]\, O => skid_buffer(13) ); \m_payload_i[14]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(14), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[14]\, O => skid_buffer(14) ); \m_payload_i[15]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(15), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[15]\, O => skid_buffer(15) ); \m_payload_i[16]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(16), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[16]\, O => skid_buffer(16) ); \m_payload_i[17]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(17), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[17]\, O => skid_buffer(17) ); \m_payload_i[18]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(18), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[18]\, O => skid_buffer(18) ); \m_payload_i[19]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(19), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[19]\, O => skid_buffer(19) ); \m_payload_i[1]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(1), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[1]\, O => skid_buffer(1) ); \m_payload_i[20]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(20), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[20]\, O => skid_buffer(20) ); \m_payload_i[21]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(21), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[21]\, O => skid_buffer(21) ); \m_payload_i[22]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(22), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[22]\, O => skid_buffer(22) ); \m_payload_i[23]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(23), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[23]\, O => skid_buffer(23) ); \m_payload_i[24]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(24), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[24]\, O => skid_buffer(24) ); \m_payload_i[25]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(25), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[25]\, O => skid_buffer(25) ); \m_payload_i[26]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(26), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[26]\, O => skid_buffer(26) ); \m_payload_i[27]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(27), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[27]\, O => skid_buffer(27) ); \m_payload_i[28]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(28), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[28]\, O => skid_buffer(28) ); \m_payload_i[29]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(29), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[29]\, O => skid_buffer(29) ); \m_payload_i[2]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(2), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[2]\, O => skid_buffer(2) ); \m_payload_i[30]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(30), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[30]\, O => skid_buffer(30) ); \m_payload_i[31]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(31), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[31]\, O => skid_buffer(31) ); \m_payload_i[32]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(0), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[32]\, O => skid_buffer(32) ); \m_payload_i[33]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(1), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[33]\, O => skid_buffer(33) ); \m_payload_i[34]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rlast(0), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[34]\, O => skid_buffer(34) ); \m_payload_i[35]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(0), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[35]\, O => skid_buffer(35) ); \m_payload_i[36]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(1), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[36]\, O => skid_buffer(36) ); \m_payload_i[37]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(2), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[37]\, O => skid_buffer(37) ); \m_payload_i[38]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(3), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[38]\, O => skid_buffer(38) ); \m_payload_i[39]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(4), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[39]\, O => skid_buffer(39) ); \m_payload_i[3]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(3), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[3]\, O => skid_buffer(3) ); \m_payload_i[40]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(5), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[40]\, O => skid_buffer(40) ); \m_payload_i[41]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(6), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[41]\, O => skid_buffer(41) ); \m_payload_i[42]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(7), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[42]\, O => skid_buffer(42) ); \m_payload_i[43]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(8), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[43]\, O => skid_buffer(43) ); \m_payload_i[44]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(9), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[44]\, O => skid_buffer(44) ); \m_payload_i[45]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(10), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[45]\, O => skid_buffer(45) ); \m_payload_i[46]_i_2__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(11), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[46]\, O => skid_buffer(46) ); \m_payload_i[4]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(4), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[4]\, O => skid_buffer(4) ); \m_payload_i[5]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(5), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[5]\, O => skid_buffer(5) ); \m_payload_i[6]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(6), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[6]\, O => skid_buffer(6) ); \m_payload_i[7]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(7), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[7]\, O => skid_buffer(7) ); \m_payload_i[8]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(8), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[8]\, O => skid_buffer(8) ); \m_payload_i[9]_i_1__2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(9), I1 => \^m_axi_rready[3]\, I2 => \skid_buffer_reg_n_0_[9]\, O => skid_buffer(9) ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(0), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(10), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(11), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(12), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(13), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(14), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(14), R => '0' ); \m_payload_i_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(15), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(15), R => '0' ); \m_payload_i_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(16), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(16), R => '0' ); \m_payload_i_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(17), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(17), R => '0' ); \m_payload_i_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(18), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(18), R => '0' ); \m_payload_i_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(19), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(19), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(1), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(20), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(20), R => '0' ); \m_payload_i_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(21), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(21), R => '0' ); \m_payload_i_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(22), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(22), R => '0' ); \m_payload_i_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(23), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(23), R => '0' ); \m_payload_i_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(24), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(24), R => '0' ); \m_payload_i_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(25), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(25), R => '0' ); \m_payload_i_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(26), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(26), R => '0' ); \m_payload_i_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(27), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(27), R => '0' ); \m_payload_i_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(28), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(28), R => '0' ); \m_payload_i_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(29), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(29), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(2), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(30), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(30), R => '0' ); \m_payload_i_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(31), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31), R => '0' ); \m_payload_i_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(32), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(32), R => '0' ); \m_payload_i_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(33), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33), R => '0' ); \m_payload_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(34), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), R => '0' ); \m_payload_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(35), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(35), R => '0' ); \m_payload_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(36), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(36), R => '0' ); \m_payload_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(37), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(37), R => '0' ); \m_payload_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(38), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(38), R => '0' ); \m_payload_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(39), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(39), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(3), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(40), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(40), R => '0' ); \m_payload_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(41), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(41), R => '0' ); \m_payload_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(42), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(42), R => '0' ); \m_payload_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(43), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(43), R => '0' ); \m_payload_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(44), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(44), R => '0' ); \m_payload_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(45), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(45), R => '0' ); \m_payload_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(46), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(4), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(5), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(6), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(7), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(8), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[3]_0\(0), D => skid_buffer(9), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_valid_i_i_1__6\: unisim.vcomponents.LUT5 generic map( INIT => X"DDFDFDFD" ) port map ( I0 => \^m_axi_rready[3]\, I1 => m_axi_rvalid(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), I4 => \chosen_reg[3]\(0), O => m_valid_i0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i0, Q => \^m_valid_i_reg_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__7\: unisim.vcomponents.LUT5 generic map( INIT => X"D5D5FFD5" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => s_axi_rready(0), I2 => \chosen_reg[3]\(0), I3 => \^m_axi_rready[3]\, I4 => m_axi_rvalid(0), O => \s_ready_i_i_1__7_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__7_n_0\, Q => \^m_axi_rready[3]\, R => p_1_in ); \skid_buffer_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(0), Q => \skid_buffer_reg_n_0_[0]\, R => '0' ); \skid_buffer_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(10), Q => \skid_buffer_reg_n_0_[10]\, R => '0' ); \skid_buffer_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(11), Q => \skid_buffer_reg_n_0_[11]\, R => '0' ); \skid_buffer_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(12), Q => \skid_buffer_reg_n_0_[12]\, R => '0' ); \skid_buffer_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(13), Q => \skid_buffer_reg_n_0_[13]\, R => '0' ); \skid_buffer_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(14), Q => \skid_buffer_reg_n_0_[14]\, R => '0' ); \skid_buffer_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(15), Q => \skid_buffer_reg_n_0_[15]\, R => '0' ); \skid_buffer_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(16), Q => \skid_buffer_reg_n_0_[16]\, R => '0' ); \skid_buffer_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(17), Q => \skid_buffer_reg_n_0_[17]\, R => '0' ); \skid_buffer_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(18), Q => \skid_buffer_reg_n_0_[18]\, R => '0' ); \skid_buffer_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(19), Q => \skid_buffer_reg_n_0_[19]\, R => '0' ); \skid_buffer_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(1), Q => \skid_buffer_reg_n_0_[1]\, R => '0' ); \skid_buffer_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(20), Q => \skid_buffer_reg_n_0_[20]\, R => '0' ); \skid_buffer_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(21), Q => \skid_buffer_reg_n_0_[21]\, R => '0' ); \skid_buffer_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(22), Q => \skid_buffer_reg_n_0_[22]\, R => '0' ); \skid_buffer_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(23), Q => \skid_buffer_reg_n_0_[23]\, R => '0' ); \skid_buffer_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(24), Q => \skid_buffer_reg_n_0_[24]\, R => '0' ); \skid_buffer_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(25), Q => \skid_buffer_reg_n_0_[25]\, R => '0' ); \skid_buffer_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(26), Q => \skid_buffer_reg_n_0_[26]\, R => '0' ); \skid_buffer_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(27), Q => \skid_buffer_reg_n_0_[27]\, R => '0' ); \skid_buffer_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(28), Q => \skid_buffer_reg_n_0_[28]\, R => '0' ); \skid_buffer_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(29), Q => \skid_buffer_reg_n_0_[29]\, R => '0' ); \skid_buffer_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(2), Q => \skid_buffer_reg_n_0_[2]\, R => '0' ); \skid_buffer_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(30), Q => \skid_buffer_reg_n_0_[30]\, R => '0' ); \skid_buffer_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(31), Q => \skid_buffer_reg_n_0_[31]\, R => '0' ); \skid_buffer_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rresp(0), Q => \skid_buffer_reg_n_0_[32]\, R => '0' ); \skid_buffer_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rresp(1), Q => \skid_buffer_reg_n_0_[33]\, R => '0' ); \skid_buffer_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rlast(0), Q => \skid_buffer_reg_n_0_[34]\, R => '0' ); \skid_buffer_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(0), Q => \skid_buffer_reg_n_0_[35]\, R => '0' ); \skid_buffer_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(1), Q => \skid_buffer_reg_n_0_[36]\, R => '0' ); \skid_buffer_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(2), Q => \skid_buffer_reg_n_0_[37]\, R => '0' ); \skid_buffer_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(3), Q => \skid_buffer_reg_n_0_[38]\, R => '0' ); \skid_buffer_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(4), Q => \skid_buffer_reg_n_0_[39]\, R => '0' ); \skid_buffer_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(3), Q => \skid_buffer_reg_n_0_[3]\, R => '0' ); \skid_buffer_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(5), Q => \skid_buffer_reg_n_0_[40]\, R => '0' ); \skid_buffer_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(6), Q => \skid_buffer_reg_n_0_[41]\, R => '0' ); \skid_buffer_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(7), Q => \skid_buffer_reg_n_0_[42]\, R => '0' ); \skid_buffer_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(8), Q => \skid_buffer_reg_n_0_[43]\, R => '0' ); \skid_buffer_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(9), Q => \skid_buffer_reg_n_0_[44]\, R => '0' ); \skid_buffer_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(10), Q => \skid_buffer_reg_n_0_[45]\, R => '0' ); \skid_buffer_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rid(11), Q => \skid_buffer_reg_n_0_[46]\, R => '0' ); \skid_buffer_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(4), Q => \skid_buffer_reg_n_0_[4]\, R => '0' ); \skid_buffer_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(5), Q => \skid_buffer_reg_n_0_[5]\, R => '0' ); \skid_buffer_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(6), Q => \skid_buffer_reg_n_0_[6]\, R => '0' ); \skid_buffer_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(7), Q => \skid_buffer_reg_n_0_[7]\, R => '0' ); \skid_buffer_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(8), Q => \skid_buffer_reg_n_0_[8]\, R => '0' ); \skid_buffer_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[3]\, D => m_axi_rdata(9), Q => \skid_buffer_reg_n_0_[9]\, R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_12\ is port ( m_valid_i_reg_0 : out STD_LOGIC; \m_axi_rready[2]\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; \r_cmd_pop_2__1\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[2]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[2].r_issuing_cnt_reg[18]\ : in STD_LOGIC; \gen_master_slots[2].r_issuing_cnt_reg[19]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); sel_4 : in STD_LOGIC; \s_axi_araddr[25]\ : in STD_LOGIC; sel_2 : in STD_LOGIC; p_57_in : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); \chosen_reg[2]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_12\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_12\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_12\ is signal \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \^m_axi_rready[2]\ : STD_LOGIC; signal m_valid_i0 : STD_LOGIC; signal \^m_valid_i_reg_0\ : STD_LOGIC; signal \^r_cmd_pop_2__1\ : STD_LOGIC; signal \s_ready_i_i_1__8_n_0\ : STD_LOGIC; signal skid_buffer : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \skid_buffer_reg_n_0_[0]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[10]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[11]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[12]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[13]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[14]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[15]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[16]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[17]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[18]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[19]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[1]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[20]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[21]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[22]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[23]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[24]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[25]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[26]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[27]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[28]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[29]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[2]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[30]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[31]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[32]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[33]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[34]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[35]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[36]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[37]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[38]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[39]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[3]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[40]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[41]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[42]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[43]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[44]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[45]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[46]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[4]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[5]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[6]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[7]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[8]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[9]\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \m_payload_i[10]_i_1__1\ : label is "soft_lutpair89"; attribute SOFT_HLUTNM of \m_payload_i[11]_i_1__1\ : label is "soft_lutpair88"; attribute SOFT_HLUTNM of \m_payload_i[12]_i_1__1\ : label is "soft_lutpair88"; attribute SOFT_HLUTNM of \m_payload_i[13]_i_1__6\ : label is "soft_lutpair87"; attribute SOFT_HLUTNM of \m_payload_i[14]_i_1__1\ : label is "soft_lutpair87"; attribute SOFT_HLUTNM of \m_payload_i[15]_i_1__1\ : label is "soft_lutpair86"; attribute SOFT_HLUTNM of \m_payload_i[16]_i_1__1\ : label is "soft_lutpair86"; attribute SOFT_HLUTNM of \m_payload_i[17]_i_1__1\ : label is "soft_lutpair85"; attribute SOFT_HLUTNM of \m_payload_i[18]_i_1__1\ : label is "soft_lutpair85"; attribute SOFT_HLUTNM of \m_payload_i[19]_i_1__1\ : label is "soft_lutpair84"; attribute SOFT_HLUTNM of \m_payload_i[1]_i_1__1\ : label is "soft_lutpair93"; attribute SOFT_HLUTNM of \m_payload_i[20]_i_1__1\ : label is "soft_lutpair84"; attribute SOFT_HLUTNM of \m_payload_i[21]_i_1__1\ : label is "soft_lutpair83"; attribute SOFT_HLUTNM of \m_payload_i[22]_i_1__1\ : label is "soft_lutpair83"; attribute SOFT_HLUTNM of \m_payload_i[23]_i_1__1\ : label is "soft_lutpair82"; attribute SOFT_HLUTNM of \m_payload_i[24]_i_1__1\ : label is "soft_lutpair82"; attribute SOFT_HLUTNM of \m_payload_i[25]_i_1__1\ : label is "soft_lutpair81"; attribute SOFT_HLUTNM of \m_payload_i[26]_i_1__1\ : label is "soft_lutpair81"; attribute SOFT_HLUTNM of \m_payload_i[27]_i_1__1\ : label is "soft_lutpair80"; attribute SOFT_HLUTNM of \m_payload_i[28]_i_1__1\ : label is "soft_lutpair80"; attribute SOFT_HLUTNM of \m_payload_i[29]_i_1__1\ : label is "soft_lutpair79"; attribute SOFT_HLUTNM of \m_payload_i[2]_i_1__1\ : label is "soft_lutpair93"; attribute SOFT_HLUTNM of \m_payload_i[30]_i_1__1\ : label is "soft_lutpair79"; attribute SOFT_HLUTNM of \m_payload_i[31]_i_1__1\ : label is "soft_lutpair78"; attribute SOFT_HLUTNM of \m_payload_i[32]_i_1__1\ : label is "soft_lutpair78"; attribute SOFT_HLUTNM of \m_payload_i[33]_i_1__1\ : label is "soft_lutpair77"; attribute SOFT_HLUTNM of \m_payload_i[34]_i_1__1\ : label is "soft_lutpair77"; attribute SOFT_HLUTNM of \m_payload_i[35]_i_1__1\ : label is "soft_lutpair76"; attribute SOFT_HLUTNM of \m_payload_i[36]_i_1__1\ : label is "soft_lutpair76"; attribute SOFT_HLUTNM of \m_payload_i[37]_i_1__1\ : label is "soft_lutpair75"; attribute SOFT_HLUTNM of \m_payload_i[38]_i_1__1\ : label is "soft_lutpair75"; attribute SOFT_HLUTNM of \m_payload_i[39]_i_1__1\ : label is "soft_lutpair74"; attribute SOFT_HLUTNM of \m_payload_i[3]_i_1__1\ : label is "soft_lutpair92"; attribute SOFT_HLUTNM of \m_payload_i[40]_i_1__1\ : label is "soft_lutpair74"; attribute SOFT_HLUTNM of \m_payload_i[41]_i_1__1\ : label is "soft_lutpair73"; attribute SOFT_HLUTNM of \m_payload_i[42]_i_1__1\ : label is "soft_lutpair73"; attribute SOFT_HLUTNM of \m_payload_i[43]_i_1__1\ : label is "soft_lutpair72"; attribute SOFT_HLUTNM of \m_payload_i[44]_i_1__1\ : label is "soft_lutpair72"; attribute SOFT_HLUTNM of \m_payload_i[45]_i_1__1\ : label is "soft_lutpair71"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_2__1\ : label is "soft_lutpair71"; attribute SOFT_HLUTNM of \m_payload_i[4]_i_1__1\ : label is "soft_lutpair92"; attribute SOFT_HLUTNM of \m_payload_i[5]_i_1__1\ : label is "soft_lutpair91"; attribute SOFT_HLUTNM of \m_payload_i[6]_i_1__1\ : label is "soft_lutpair91"; attribute SOFT_HLUTNM of \m_payload_i[7]_i_1__1\ : label is "soft_lutpair90"; attribute SOFT_HLUTNM of \m_payload_i[8]_i_1__1\ : label is "soft_lutpair90"; attribute SOFT_HLUTNM of \m_payload_i[9]_i_1__1\ : label is "soft_lutpair89"; begin \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) <= \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0); \m_axi_rready[2]\ <= \^m_axi_rready[2]\; m_valid_i_reg_0 <= \^m_valid_i_reg_0\; \r_cmd_pop_2__1\ <= \^r_cmd_pop_2__1\; \gen_master_slots[2].r_issuing_cnt[19]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => \gen_master_slots[2].r_issuing_cnt_reg[19]\(1), I1 => \gen_master_slots[2].r_issuing_cnt_reg[19]\(2), I2 => \gen_master_slots[2].r_issuing_cnt_reg[19]\(0), I3 => \gen_master_slots[2].r_issuing_cnt_reg[19]\(3), I4 => \^r_cmd_pop_2__1\, I5 => p_57_in, O => E(0) ); \gen_master_slots[2].r_issuing_cnt[19]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"8000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), I1 => \chosen_reg[2]\(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), O => \^r_cmd_pop_2__1\ ); \gen_no_arbiter.s_ready_i[0]_i_25__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FE00000000000000" ) port map ( I0 => \gen_master_slots[2].r_issuing_cnt_reg[18]\, I1 => \gen_master_slots[2].r_issuing_cnt_reg[19]\(0), I2 => \^r_cmd_pop_2__1\, I3 => sel_4, I4 => \s_axi_araddr[25]\, I5 => sel_2, O => \gen_no_arbiter.s_ready_i_reg[0]\ ); \m_payload_i[0]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(0), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[0]\, O => skid_buffer(0) ); \m_payload_i[10]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(10), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[10]\, O => skid_buffer(10) ); \m_payload_i[11]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(11), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[11]\, O => skid_buffer(11) ); \m_payload_i[12]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(12), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[12]\, O => skid_buffer(12) ); \m_payload_i[13]_i_1__6\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(13), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[13]\, O => skid_buffer(13) ); \m_payload_i[14]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(14), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[14]\, O => skid_buffer(14) ); \m_payload_i[15]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(15), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[15]\, O => skid_buffer(15) ); \m_payload_i[16]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(16), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[16]\, O => skid_buffer(16) ); \m_payload_i[17]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(17), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[17]\, O => skid_buffer(17) ); \m_payload_i[18]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(18), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[18]\, O => skid_buffer(18) ); \m_payload_i[19]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(19), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[19]\, O => skid_buffer(19) ); \m_payload_i[1]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(1), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[1]\, O => skid_buffer(1) ); \m_payload_i[20]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(20), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[20]\, O => skid_buffer(20) ); \m_payload_i[21]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(21), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[21]\, O => skid_buffer(21) ); \m_payload_i[22]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(22), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[22]\, O => skid_buffer(22) ); \m_payload_i[23]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(23), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[23]\, O => skid_buffer(23) ); \m_payload_i[24]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(24), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[24]\, O => skid_buffer(24) ); \m_payload_i[25]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(25), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[25]\, O => skid_buffer(25) ); \m_payload_i[26]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(26), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[26]\, O => skid_buffer(26) ); \m_payload_i[27]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(27), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[27]\, O => skid_buffer(27) ); \m_payload_i[28]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(28), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[28]\, O => skid_buffer(28) ); \m_payload_i[29]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(29), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[29]\, O => skid_buffer(29) ); \m_payload_i[2]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(2), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[2]\, O => skid_buffer(2) ); \m_payload_i[30]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(30), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[30]\, O => skid_buffer(30) ); \m_payload_i[31]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(31), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[31]\, O => skid_buffer(31) ); \m_payload_i[32]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(0), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[32]\, O => skid_buffer(32) ); \m_payload_i[33]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(1), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[33]\, O => skid_buffer(33) ); \m_payload_i[34]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rlast(0), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[34]\, O => skid_buffer(34) ); \m_payload_i[35]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(0), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[35]\, O => skid_buffer(35) ); \m_payload_i[36]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(1), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[36]\, O => skid_buffer(36) ); \m_payload_i[37]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(2), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[37]\, O => skid_buffer(37) ); \m_payload_i[38]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(3), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[38]\, O => skid_buffer(38) ); \m_payload_i[39]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(4), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[39]\, O => skid_buffer(39) ); \m_payload_i[3]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(3), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[3]\, O => skid_buffer(3) ); \m_payload_i[40]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(5), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[40]\, O => skid_buffer(40) ); \m_payload_i[41]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(6), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[41]\, O => skid_buffer(41) ); \m_payload_i[42]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(7), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[42]\, O => skid_buffer(42) ); \m_payload_i[43]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(8), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[43]\, O => skid_buffer(43) ); \m_payload_i[44]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(9), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[44]\, O => skid_buffer(44) ); \m_payload_i[45]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(10), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[45]\, O => skid_buffer(45) ); \m_payload_i[46]_i_2__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(11), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[46]\, O => skid_buffer(46) ); \m_payload_i[4]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(4), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[4]\, O => skid_buffer(4) ); \m_payload_i[5]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(5), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[5]\, O => skid_buffer(5) ); \m_payload_i[6]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(6), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[6]\, O => skid_buffer(6) ); \m_payload_i[7]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(7), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[7]\, O => skid_buffer(7) ); \m_payload_i[8]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(8), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[8]\, O => skid_buffer(8) ); \m_payload_i[9]_i_1__1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(9), I1 => \^m_axi_rready[2]\, I2 => \skid_buffer_reg_n_0_[9]\, O => skid_buffer(9) ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(0), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(10), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(11), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(12), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(13), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(14), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(14), R => '0' ); \m_payload_i_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(15), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(15), R => '0' ); \m_payload_i_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(16), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(16), R => '0' ); \m_payload_i_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(17), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(17), R => '0' ); \m_payload_i_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(18), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(18), R => '0' ); \m_payload_i_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(19), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(19), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(1), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(20), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(20), R => '0' ); \m_payload_i_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(21), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(21), R => '0' ); \m_payload_i_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(22), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(22), R => '0' ); \m_payload_i_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(23), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(23), R => '0' ); \m_payload_i_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(24), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(24), R => '0' ); \m_payload_i_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(25), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(25), R => '0' ); \m_payload_i_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(26), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(26), R => '0' ); \m_payload_i_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(27), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(27), R => '0' ); \m_payload_i_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(28), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(28), R => '0' ); \m_payload_i_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(29), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(29), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(2), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(30), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(30), R => '0' ); \m_payload_i_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(31), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31), R => '0' ); \m_payload_i_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(32), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(32), R => '0' ); \m_payload_i_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(33), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33), R => '0' ); \m_payload_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(34), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), R => '0' ); \m_payload_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(35), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(35), R => '0' ); \m_payload_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(36), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(36), R => '0' ); \m_payload_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(37), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(37), R => '0' ); \m_payload_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(38), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(38), R => '0' ); \m_payload_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(39), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(39), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(3), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(40), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(40), R => '0' ); \m_payload_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(41), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(41), R => '0' ); \m_payload_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(42), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(42), R => '0' ); \m_payload_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(43), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(43), R => '0' ); \m_payload_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(44), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(44), R => '0' ); \m_payload_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(45), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(45), R => '0' ); \m_payload_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(46), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(4), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(5), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(6), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(7), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(8), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[2]_0\(0), D => skid_buffer(9), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_valid_i_i_1__7\: unisim.vcomponents.LUT5 generic map( INIT => X"DDFDFDFD" ) port map ( I0 => \^m_axi_rready[2]\, I1 => m_axi_rvalid(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), I4 => \chosen_reg[2]\(0), O => m_valid_i0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i0, Q => \^m_valid_i_reg_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__8\: unisim.vcomponents.LUT5 generic map( INIT => X"D5D5FFD5" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => s_axi_rready(0), I2 => \chosen_reg[2]\(0), I3 => \^m_axi_rready[2]\, I4 => m_axi_rvalid(0), O => \s_ready_i_i_1__8_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__8_n_0\, Q => \^m_axi_rready[2]\, R => p_1_in ); \skid_buffer_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(0), Q => \skid_buffer_reg_n_0_[0]\, R => '0' ); \skid_buffer_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(10), Q => \skid_buffer_reg_n_0_[10]\, R => '0' ); \skid_buffer_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(11), Q => \skid_buffer_reg_n_0_[11]\, R => '0' ); \skid_buffer_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(12), Q => \skid_buffer_reg_n_0_[12]\, R => '0' ); \skid_buffer_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(13), Q => \skid_buffer_reg_n_0_[13]\, R => '0' ); \skid_buffer_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(14), Q => \skid_buffer_reg_n_0_[14]\, R => '0' ); \skid_buffer_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(15), Q => \skid_buffer_reg_n_0_[15]\, R => '0' ); \skid_buffer_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(16), Q => \skid_buffer_reg_n_0_[16]\, R => '0' ); \skid_buffer_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(17), Q => \skid_buffer_reg_n_0_[17]\, R => '0' ); \skid_buffer_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(18), Q => \skid_buffer_reg_n_0_[18]\, R => '0' ); \skid_buffer_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(19), Q => \skid_buffer_reg_n_0_[19]\, R => '0' ); \skid_buffer_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(1), Q => \skid_buffer_reg_n_0_[1]\, R => '0' ); \skid_buffer_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(20), Q => \skid_buffer_reg_n_0_[20]\, R => '0' ); \skid_buffer_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(21), Q => \skid_buffer_reg_n_0_[21]\, R => '0' ); \skid_buffer_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(22), Q => \skid_buffer_reg_n_0_[22]\, R => '0' ); \skid_buffer_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(23), Q => \skid_buffer_reg_n_0_[23]\, R => '0' ); \skid_buffer_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(24), Q => \skid_buffer_reg_n_0_[24]\, R => '0' ); \skid_buffer_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(25), Q => \skid_buffer_reg_n_0_[25]\, R => '0' ); \skid_buffer_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(26), Q => \skid_buffer_reg_n_0_[26]\, R => '0' ); \skid_buffer_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(27), Q => \skid_buffer_reg_n_0_[27]\, R => '0' ); \skid_buffer_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(28), Q => \skid_buffer_reg_n_0_[28]\, R => '0' ); \skid_buffer_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(29), Q => \skid_buffer_reg_n_0_[29]\, R => '0' ); \skid_buffer_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(2), Q => \skid_buffer_reg_n_0_[2]\, R => '0' ); \skid_buffer_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(30), Q => \skid_buffer_reg_n_0_[30]\, R => '0' ); \skid_buffer_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(31), Q => \skid_buffer_reg_n_0_[31]\, R => '0' ); \skid_buffer_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rresp(0), Q => \skid_buffer_reg_n_0_[32]\, R => '0' ); \skid_buffer_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rresp(1), Q => \skid_buffer_reg_n_0_[33]\, R => '0' ); \skid_buffer_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rlast(0), Q => \skid_buffer_reg_n_0_[34]\, R => '0' ); \skid_buffer_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(0), Q => \skid_buffer_reg_n_0_[35]\, R => '0' ); \skid_buffer_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(1), Q => \skid_buffer_reg_n_0_[36]\, R => '0' ); \skid_buffer_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(2), Q => \skid_buffer_reg_n_0_[37]\, R => '0' ); \skid_buffer_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(3), Q => \skid_buffer_reg_n_0_[38]\, R => '0' ); \skid_buffer_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(4), Q => \skid_buffer_reg_n_0_[39]\, R => '0' ); \skid_buffer_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(3), Q => \skid_buffer_reg_n_0_[3]\, R => '0' ); \skid_buffer_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(5), Q => \skid_buffer_reg_n_0_[40]\, R => '0' ); \skid_buffer_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(6), Q => \skid_buffer_reg_n_0_[41]\, R => '0' ); \skid_buffer_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(7), Q => \skid_buffer_reg_n_0_[42]\, R => '0' ); \skid_buffer_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(8), Q => \skid_buffer_reg_n_0_[43]\, R => '0' ); \skid_buffer_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(9), Q => \skid_buffer_reg_n_0_[44]\, R => '0' ); \skid_buffer_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(10), Q => \skid_buffer_reg_n_0_[45]\, R => '0' ); \skid_buffer_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rid(11), Q => \skid_buffer_reg_n_0_[46]\, R => '0' ); \skid_buffer_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(4), Q => \skid_buffer_reg_n_0_[4]\, R => '0' ); \skid_buffer_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(5), Q => \skid_buffer_reg_n_0_[5]\, R => '0' ); \skid_buffer_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(6), Q => \skid_buffer_reg_n_0_[6]\, R => '0' ); \skid_buffer_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(7), Q => \skid_buffer_reg_n_0_[7]\, R => '0' ); \skid_buffer_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(8), Q => \skid_buffer_reg_n_0_[8]\, R => '0' ); \skid_buffer_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[2]\, D => m_axi_rdata(9), Q => \skid_buffer_reg_n_0_[9]\, R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_14\ is port ( m_valid_i_reg_0 : out STD_LOGIC; \m_axi_rready[1]\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \r_cmd_pop_1__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[1]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); ADDRESS_HIT_1 : in STD_LOGIC; match : in STD_LOGIC; \gen_master_slots[0].r_issuing_cnt_reg[0]\ : in STD_LOGIC; ADDRESS_HIT_0 : in STD_LOGIC; \gen_master_slots[1].r_issuing_cnt_reg[11]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_75_in : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); \chosen_reg[1]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_14\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_14\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_14\ is signal \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \gen_no_arbiter.s_ready_i[0]_i_20__0_n_0\ : STD_LOGIC; signal \^m_axi_rready[1]\ : STD_LOGIC; signal m_valid_i0 : STD_LOGIC; signal \^m_valid_i_reg_0\ : STD_LOGIC; signal \^r_cmd_pop_1__1\ : STD_LOGIC; signal \s_ready_i_i_1__5_n_0\ : STD_LOGIC; signal skid_buffer : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \skid_buffer_reg_n_0_[0]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[10]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[11]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[12]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[13]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[14]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[15]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[16]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[17]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[18]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[19]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[1]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[20]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[21]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[22]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[23]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[24]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[25]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[26]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[27]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[28]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[29]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[2]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[30]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[31]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[32]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[33]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[34]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[35]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[36]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[37]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[38]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[39]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[3]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[40]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[41]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[42]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[43]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[44]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[45]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[46]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[4]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[5]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[6]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[7]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[8]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[9]\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \m_payload_i[10]_i_1__0\ : label is "soft_lutpair66"; attribute SOFT_HLUTNM of \m_payload_i[11]_i_1__0\ : label is "soft_lutpair65"; attribute SOFT_HLUTNM of \m_payload_i[12]_i_1__0\ : label is "soft_lutpair65"; attribute SOFT_HLUTNM of \m_payload_i[13]_i_1__5\ : label is "soft_lutpair64"; attribute SOFT_HLUTNM of \m_payload_i[14]_i_1__0\ : label is "soft_lutpair64"; attribute SOFT_HLUTNM of \m_payload_i[15]_i_1__0\ : label is "soft_lutpair63"; attribute SOFT_HLUTNM of \m_payload_i[16]_i_1__0\ : label is "soft_lutpair63"; attribute SOFT_HLUTNM of \m_payload_i[17]_i_1__0\ : label is "soft_lutpair62"; attribute SOFT_HLUTNM of \m_payload_i[18]_i_1__0\ : label is "soft_lutpair62"; attribute SOFT_HLUTNM of \m_payload_i[19]_i_1__0\ : label is "soft_lutpair61"; attribute SOFT_HLUTNM of \m_payload_i[1]_i_1__0\ : label is "soft_lutpair70"; attribute SOFT_HLUTNM of \m_payload_i[20]_i_1__0\ : label is "soft_lutpair61"; attribute SOFT_HLUTNM of \m_payload_i[21]_i_1__0\ : label is "soft_lutpair60"; attribute SOFT_HLUTNM of \m_payload_i[22]_i_1__0\ : label is "soft_lutpair60"; attribute SOFT_HLUTNM of \m_payload_i[23]_i_1__0\ : label is "soft_lutpair59"; attribute SOFT_HLUTNM of \m_payload_i[24]_i_1__0\ : label is "soft_lutpair59"; attribute SOFT_HLUTNM of \m_payload_i[25]_i_1__0\ : label is "soft_lutpair58"; attribute SOFT_HLUTNM of \m_payload_i[26]_i_1__0\ : label is "soft_lutpair58"; attribute SOFT_HLUTNM of \m_payload_i[27]_i_1__0\ : label is "soft_lutpair57"; attribute SOFT_HLUTNM of \m_payload_i[28]_i_1__0\ : label is "soft_lutpair57"; attribute SOFT_HLUTNM of \m_payload_i[29]_i_1__0\ : label is "soft_lutpair56"; attribute SOFT_HLUTNM of \m_payload_i[2]_i_1__0\ : label is "soft_lutpair70"; attribute SOFT_HLUTNM of \m_payload_i[30]_i_1__0\ : label is "soft_lutpair56"; attribute SOFT_HLUTNM of \m_payload_i[31]_i_1__0\ : label is "soft_lutpair55"; attribute SOFT_HLUTNM of \m_payload_i[32]_i_1__0\ : label is "soft_lutpair55"; attribute SOFT_HLUTNM of \m_payload_i[33]_i_1__0\ : label is "soft_lutpair54"; attribute SOFT_HLUTNM of \m_payload_i[34]_i_1__0\ : label is "soft_lutpair54"; attribute SOFT_HLUTNM of \m_payload_i[35]_i_1__0\ : label is "soft_lutpair53"; attribute SOFT_HLUTNM of \m_payload_i[36]_i_1__0\ : label is "soft_lutpair53"; attribute SOFT_HLUTNM of \m_payload_i[37]_i_1__0\ : label is "soft_lutpair52"; attribute SOFT_HLUTNM of \m_payload_i[38]_i_1__0\ : label is "soft_lutpair52"; attribute SOFT_HLUTNM of \m_payload_i[39]_i_1__0\ : label is "soft_lutpair51"; attribute SOFT_HLUTNM of \m_payload_i[3]_i_1__0\ : label is "soft_lutpair69"; attribute SOFT_HLUTNM of \m_payload_i[40]_i_1__0\ : label is "soft_lutpair51"; attribute SOFT_HLUTNM of \m_payload_i[41]_i_1__0\ : label is "soft_lutpair50"; attribute SOFT_HLUTNM of \m_payload_i[42]_i_1__0\ : label is "soft_lutpair50"; attribute SOFT_HLUTNM of \m_payload_i[43]_i_1__0\ : label is "soft_lutpair49"; attribute SOFT_HLUTNM of \m_payload_i[44]_i_1__0\ : label is "soft_lutpair49"; attribute SOFT_HLUTNM of \m_payload_i[45]_i_1__0\ : label is "soft_lutpair48"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_2__0\ : label is "soft_lutpair48"; attribute SOFT_HLUTNM of \m_payload_i[4]_i_1__0\ : label is "soft_lutpair69"; attribute SOFT_HLUTNM of \m_payload_i[5]_i_1__0\ : label is "soft_lutpair68"; attribute SOFT_HLUTNM of \m_payload_i[6]_i_1__0\ : label is "soft_lutpair68"; attribute SOFT_HLUTNM of \m_payload_i[7]_i_1__0\ : label is "soft_lutpair67"; attribute SOFT_HLUTNM of \m_payload_i[8]_i_1__0\ : label is "soft_lutpair67"; attribute SOFT_HLUTNM of \m_payload_i[9]_i_1__0\ : label is "soft_lutpair66"; begin \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) <= \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0); \m_axi_rready[1]\ <= \^m_axi_rready[1]\; m_valid_i_reg_0 <= \^m_valid_i_reg_0\; \r_cmd_pop_1__1\ <= \^r_cmd_pop_1__1\; \gen_master_slots[1].r_issuing_cnt[11]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(1), I1 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(2), I2 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(0), I3 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(3), I4 => \^r_cmd_pop_1__1\, I5 => p_75_in, O => E(0) ); \gen_master_slots[1].r_issuing_cnt[11]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"8000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), I1 => \chosen_reg[1]\(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), O => \^r_cmd_pop_1__1\ ); \gen_no_arbiter.s_ready_i[0]_i_16__0\: unisim.vcomponents.LUT5 generic map( INIT => X"F0808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_20__0_n_0\, I1 => ADDRESS_HIT_1, I2 => match, I3 => \gen_master_slots[0].r_issuing_cnt_reg[0]\, I4 => ADDRESS_HIT_0, O => \gen_no_arbiter.s_ready_i_reg[0]\ ); \gen_no_arbiter.s_ready_i[0]_i_20__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFEF" ) port map ( I0 => \^r_cmd_pop_1__1\, I1 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(0), I2 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(3), I3 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(1), I4 => \gen_master_slots[1].r_issuing_cnt_reg[11]\(2), O => \gen_no_arbiter.s_ready_i[0]_i_20__0_n_0\ ); \m_payload_i[0]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(0), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[0]\, O => skid_buffer(0) ); \m_payload_i[10]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(10), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[10]\, O => skid_buffer(10) ); \m_payload_i[11]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(11), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[11]\, O => skid_buffer(11) ); \m_payload_i[12]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(12), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[12]\, O => skid_buffer(12) ); \m_payload_i[13]_i_1__5\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(13), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[13]\, O => skid_buffer(13) ); \m_payload_i[14]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(14), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[14]\, O => skid_buffer(14) ); \m_payload_i[15]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(15), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[15]\, O => skid_buffer(15) ); \m_payload_i[16]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(16), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[16]\, O => skid_buffer(16) ); \m_payload_i[17]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(17), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[17]\, O => skid_buffer(17) ); \m_payload_i[18]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(18), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[18]\, O => skid_buffer(18) ); \m_payload_i[19]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(19), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[19]\, O => skid_buffer(19) ); \m_payload_i[1]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(1), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[1]\, O => skid_buffer(1) ); \m_payload_i[20]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(20), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[20]\, O => skid_buffer(20) ); \m_payload_i[21]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(21), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[21]\, O => skid_buffer(21) ); \m_payload_i[22]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(22), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[22]\, O => skid_buffer(22) ); \m_payload_i[23]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(23), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[23]\, O => skid_buffer(23) ); \m_payload_i[24]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(24), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[24]\, O => skid_buffer(24) ); \m_payload_i[25]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(25), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[25]\, O => skid_buffer(25) ); \m_payload_i[26]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(26), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[26]\, O => skid_buffer(26) ); \m_payload_i[27]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(27), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[27]\, O => skid_buffer(27) ); \m_payload_i[28]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(28), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[28]\, O => skid_buffer(28) ); \m_payload_i[29]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(29), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[29]\, O => skid_buffer(29) ); \m_payload_i[2]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(2), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[2]\, O => skid_buffer(2) ); \m_payload_i[30]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(30), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[30]\, O => skid_buffer(30) ); \m_payload_i[31]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(31), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[31]\, O => skid_buffer(31) ); \m_payload_i[32]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(0), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[32]\, O => skid_buffer(32) ); \m_payload_i[33]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(1), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[33]\, O => skid_buffer(33) ); \m_payload_i[34]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rlast(0), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[34]\, O => skid_buffer(34) ); \m_payload_i[35]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(0), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[35]\, O => skid_buffer(35) ); \m_payload_i[36]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(1), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[36]\, O => skid_buffer(36) ); \m_payload_i[37]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(2), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[37]\, O => skid_buffer(37) ); \m_payload_i[38]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(3), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[38]\, O => skid_buffer(38) ); \m_payload_i[39]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(4), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[39]\, O => skid_buffer(39) ); \m_payload_i[3]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(3), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[3]\, O => skid_buffer(3) ); \m_payload_i[40]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(5), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[40]\, O => skid_buffer(40) ); \m_payload_i[41]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(6), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[41]\, O => skid_buffer(41) ); \m_payload_i[42]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(7), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[42]\, O => skid_buffer(42) ); \m_payload_i[43]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(8), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[43]\, O => skid_buffer(43) ); \m_payload_i[44]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(9), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[44]\, O => skid_buffer(44) ); \m_payload_i[45]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(10), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[45]\, O => skid_buffer(45) ); \m_payload_i[46]_i_2__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(11), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[46]\, O => skid_buffer(46) ); \m_payload_i[4]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(4), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[4]\, O => skid_buffer(4) ); \m_payload_i[5]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(5), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[5]\, O => skid_buffer(5) ); \m_payload_i[6]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(6), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[6]\, O => skid_buffer(6) ); \m_payload_i[7]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(7), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[7]\, O => skid_buffer(7) ); \m_payload_i[8]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(8), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[8]\, O => skid_buffer(8) ); \m_payload_i[9]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(9), I1 => \^m_axi_rready[1]\, I2 => \skid_buffer_reg_n_0_[9]\, O => skid_buffer(9) ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(0), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(10), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(11), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(12), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(13), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(14), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(14), R => '0' ); \m_payload_i_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(15), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(15), R => '0' ); \m_payload_i_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(16), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(16), R => '0' ); \m_payload_i_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(17), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(17), R => '0' ); \m_payload_i_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(18), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(18), R => '0' ); \m_payload_i_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(19), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(19), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(1), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(20), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(20), R => '0' ); \m_payload_i_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(21), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(21), R => '0' ); \m_payload_i_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(22), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(22), R => '0' ); \m_payload_i_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(23), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(23), R => '0' ); \m_payload_i_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(24), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(24), R => '0' ); \m_payload_i_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(25), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(25), R => '0' ); \m_payload_i_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(26), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(26), R => '0' ); \m_payload_i_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(27), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(27), R => '0' ); \m_payload_i_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(28), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(28), R => '0' ); \m_payload_i_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(29), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(29), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(2), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(30), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(30), R => '0' ); \m_payload_i_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(31), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31), R => '0' ); \m_payload_i_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(32), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(32), R => '0' ); \m_payload_i_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(33), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33), R => '0' ); \m_payload_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(34), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), R => '0' ); \m_payload_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(35), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(35), R => '0' ); \m_payload_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(36), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(36), R => '0' ); \m_payload_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(37), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(37), R => '0' ); \m_payload_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(38), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(38), R => '0' ); \m_payload_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(39), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(39), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(3), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(40), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(40), R => '0' ); \m_payload_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(41), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(41), R => '0' ); \m_payload_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(42), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(42), R => '0' ); \m_payload_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(43), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(43), R => '0' ); \m_payload_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(44), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(44), R => '0' ); \m_payload_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(45), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(45), R => '0' ); \m_payload_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(46), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(4), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(5), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(6), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(7), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(8), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[1]_0\(0), D => skid_buffer(9), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_valid_i_i_1__4\: unisim.vcomponents.LUT5 generic map( INIT => X"DDFDFDFD" ) port map ( I0 => \^m_axi_rready[1]\, I1 => m_axi_rvalid(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), I4 => \chosen_reg[1]\(0), O => m_valid_i0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i0, Q => \^m_valid_i_reg_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__5\: unisim.vcomponents.LUT5 generic map( INIT => X"D5D5FFD5" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => s_axi_rready(0), I2 => \chosen_reg[1]\(0), I3 => \^m_axi_rready[1]\, I4 => m_axi_rvalid(0), O => \s_ready_i_i_1__5_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__5_n_0\, Q => \^m_axi_rready[1]\, R => p_1_in ); \skid_buffer_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(0), Q => \skid_buffer_reg_n_0_[0]\, R => '0' ); \skid_buffer_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(10), Q => \skid_buffer_reg_n_0_[10]\, R => '0' ); \skid_buffer_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(11), Q => \skid_buffer_reg_n_0_[11]\, R => '0' ); \skid_buffer_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(12), Q => \skid_buffer_reg_n_0_[12]\, R => '0' ); \skid_buffer_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(13), Q => \skid_buffer_reg_n_0_[13]\, R => '0' ); \skid_buffer_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(14), Q => \skid_buffer_reg_n_0_[14]\, R => '0' ); \skid_buffer_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(15), Q => \skid_buffer_reg_n_0_[15]\, R => '0' ); \skid_buffer_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(16), Q => \skid_buffer_reg_n_0_[16]\, R => '0' ); \skid_buffer_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(17), Q => \skid_buffer_reg_n_0_[17]\, R => '0' ); \skid_buffer_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(18), Q => \skid_buffer_reg_n_0_[18]\, R => '0' ); \skid_buffer_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(19), Q => \skid_buffer_reg_n_0_[19]\, R => '0' ); \skid_buffer_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(1), Q => \skid_buffer_reg_n_0_[1]\, R => '0' ); \skid_buffer_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(20), Q => \skid_buffer_reg_n_0_[20]\, R => '0' ); \skid_buffer_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(21), Q => \skid_buffer_reg_n_0_[21]\, R => '0' ); \skid_buffer_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(22), Q => \skid_buffer_reg_n_0_[22]\, R => '0' ); \skid_buffer_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(23), Q => \skid_buffer_reg_n_0_[23]\, R => '0' ); \skid_buffer_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(24), Q => \skid_buffer_reg_n_0_[24]\, R => '0' ); \skid_buffer_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(25), Q => \skid_buffer_reg_n_0_[25]\, R => '0' ); \skid_buffer_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(26), Q => \skid_buffer_reg_n_0_[26]\, R => '0' ); \skid_buffer_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(27), Q => \skid_buffer_reg_n_0_[27]\, R => '0' ); \skid_buffer_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(28), Q => \skid_buffer_reg_n_0_[28]\, R => '0' ); \skid_buffer_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(29), Q => \skid_buffer_reg_n_0_[29]\, R => '0' ); \skid_buffer_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(2), Q => \skid_buffer_reg_n_0_[2]\, R => '0' ); \skid_buffer_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(30), Q => \skid_buffer_reg_n_0_[30]\, R => '0' ); \skid_buffer_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(31), Q => \skid_buffer_reg_n_0_[31]\, R => '0' ); \skid_buffer_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rresp(0), Q => \skid_buffer_reg_n_0_[32]\, R => '0' ); \skid_buffer_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rresp(1), Q => \skid_buffer_reg_n_0_[33]\, R => '0' ); \skid_buffer_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rlast(0), Q => \skid_buffer_reg_n_0_[34]\, R => '0' ); \skid_buffer_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(0), Q => \skid_buffer_reg_n_0_[35]\, R => '0' ); \skid_buffer_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(1), Q => \skid_buffer_reg_n_0_[36]\, R => '0' ); \skid_buffer_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(2), Q => \skid_buffer_reg_n_0_[37]\, R => '0' ); \skid_buffer_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(3), Q => \skid_buffer_reg_n_0_[38]\, R => '0' ); \skid_buffer_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(4), Q => \skid_buffer_reg_n_0_[39]\, R => '0' ); \skid_buffer_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(3), Q => \skid_buffer_reg_n_0_[3]\, R => '0' ); \skid_buffer_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(5), Q => \skid_buffer_reg_n_0_[40]\, R => '0' ); \skid_buffer_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(6), Q => \skid_buffer_reg_n_0_[41]\, R => '0' ); \skid_buffer_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(7), Q => \skid_buffer_reg_n_0_[42]\, R => '0' ); \skid_buffer_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(8), Q => \skid_buffer_reg_n_0_[43]\, R => '0' ); \skid_buffer_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(9), Q => \skid_buffer_reg_n_0_[44]\, R => '0' ); \skid_buffer_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(10), Q => \skid_buffer_reg_n_0_[45]\, R => '0' ); \skid_buffer_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rid(11), Q => \skid_buffer_reg_n_0_[46]\, R => '0' ); \skid_buffer_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(4), Q => \skid_buffer_reg_n_0_[4]\, R => '0' ); \skid_buffer_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(5), Q => \skid_buffer_reg_n_0_[5]\, R => '0' ); \skid_buffer_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(6), Q => \skid_buffer_reg_n_0_[6]\, R => '0' ); \skid_buffer_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(7), Q => \skid_buffer_reg_n_0_[7]\, R => '0' ); \skid_buffer_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(8), Q => \skid_buffer_reg_n_0_[8]\, R => '0' ); \skid_buffer_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[1]\, D => m_axi_rdata(9), Q => \skid_buffer_reg_n_0_[9]\, R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_16\ is port ( m_valid_i_reg_0 : out STD_LOGIC; \m_axi_rready[0]\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \r_cmd_pop_0__1\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \chosen_reg[2]\ : out STD_LOGIC; \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[0]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[0].r_issuing_cnt_reg[3]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_93_in : in STD_LOGIC; p_102_out : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); \chosen_reg[0]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_16\ : entity is "axi_register_slice_v2_1_13_axic_register_slice"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_16\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_16\ is signal \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \^m_axi_rready[0]\ : STD_LOGIC; signal m_valid_i0 : STD_LOGIC; signal \^m_valid_i_reg_0\ : STD_LOGIC; signal \^r_cmd_pop_0__1\ : STD_LOGIC; signal \s_ready_i_i_1__4_n_0\ : STD_LOGIC; signal skid_buffer : STD_LOGIC_VECTOR ( 46 downto 0 ); signal \skid_buffer_reg_n_0_[0]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[10]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[11]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[12]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[13]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[14]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[15]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[16]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[17]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[18]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[19]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[1]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[20]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[21]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[22]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[23]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[24]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[25]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[26]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[27]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[28]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[29]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[2]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[30]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[31]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[32]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[33]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[34]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[35]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[36]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[37]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[38]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[39]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[3]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[40]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[41]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[42]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[43]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[44]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[45]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[46]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[4]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[5]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[6]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[7]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[8]\ : STD_LOGIC; signal \skid_buffer_reg_n_0_[9]\ : STD_LOGIC; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_master_slots[0].r_issuing_cnt[3]_i_3\ : label is "soft_lutpair24"; attribute SOFT_HLUTNM of \last_rr_hot[2]_i_2\ : label is "soft_lutpair24"; attribute SOFT_HLUTNM of \m_payload_i[10]_i_1\ : label is "soft_lutpair43"; attribute SOFT_HLUTNM of \m_payload_i[11]_i_1\ : label is "soft_lutpair42"; attribute SOFT_HLUTNM of \m_payload_i[12]_i_1\ : label is "soft_lutpair37"; attribute SOFT_HLUTNM of \m_payload_i[13]_i_1__4\ : label is "soft_lutpair42"; attribute SOFT_HLUTNM of \m_payload_i[14]_i_1\ : label is "soft_lutpair41"; attribute SOFT_HLUTNM of \m_payload_i[15]_i_1\ : label is "soft_lutpair41"; attribute SOFT_HLUTNM of \m_payload_i[16]_i_1\ : label is "soft_lutpair40"; attribute SOFT_HLUTNM of \m_payload_i[17]_i_1\ : label is "soft_lutpair40"; attribute SOFT_HLUTNM of \m_payload_i[18]_i_1\ : label is "soft_lutpair39"; attribute SOFT_HLUTNM of \m_payload_i[19]_i_1\ : label is "soft_lutpair39"; attribute SOFT_HLUTNM of \m_payload_i[1]_i_1\ : label is "soft_lutpair47"; attribute SOFT_HLUTNM of \m_payload_i[20]_i_1\ : label is "soft_lutpair38"; attribute SOFT_HLUTNM of \m_payload_i[21]_i_1\ : label is "soft_lutpair38"; attribute SOFT_HLUTNM of \m_payload_i[22]_i_1\ : label is "soft_lutpair37"; attribute SOFT_HLUTNM of \m_payload_i[23]_i_1\ : label is "soft_lutpair36"; attribute SOFT_HLUTNM of \m_payload_i[24]_i_1\ : label is "soft_lutpair36"; attribute SOFT_HLUTNM of \m_payload_i[25]_i_1\ : label is "soft_lutpair35"; attribute SOFT_HLUTNM of \m_payload_i[26]_i_1\ : label is "soft_lutpair25"; attribute SOFT_HLUTNM of \m_payload_i[27]_i_1\ : label is "soft_lutpair35"; attribute SOFT_HLUTNM of \m_payload_i[28]_i_1\ : label is "soft_lutpair34"; attribute SOFT_HLUTNM of \m_payload_i[29]_i_1\ : label is "soft_lutpair34"; attribute SOFT_HLUTNM of \m_payload_i[2]_i_1\ : label is "soft_lutpair47"; attribute SOFT_HLUTNM of \m_payload_i[30]_i_1\ : label is "soft_lutpair33"; attribute SOFT_HLUTNM of \m_payload_i[31]_i_1\ : label is "soft_lutpair33"; attribute SOFT_HLUTNM of \m_payload_i[32]_i_1\ : label is "soft_lutpair32"; attribute SOFT_HLUTNM of \m_payload_i[33]_i_1\ : label is "soft_lutpair32"; attribute SOFT_HLUTNM of \m_payload_i[34]_i_1\ : label is "soft_lutpair31"; attribute SOFT_HLUTNM of \m_payload_i[35]_i_1\ : label is "soft_lutpair31"; attribute SOFT_HLUTNM of \m_payload_i[36]_i_1\ : label is "soft_lutpair30"; attribute SOFT_HLUTNM of \m_payload_i[37]_i_1\ : label is "soft_lutpair30"; attribute SOFT_HLUTNM of \m_payload_i[38]_i_1\ : label is "soft_lutpair29"; attribute SOFT_HLUTNM of \m_payload_i[39]_i_1\ : label is "soft_lutpair29"; attribute SOFT_HLUTNM of \m_payload_i[3]_i_1\ : label is "soft_lutpair46"; attribute SOFT_HLUTNM of \m_payload_i[40]_i_1\ : label is "soft_lutpair28"; attribute SOFT_HLUTNM of \m_payload_i[41]_i_1\ : label is "soft_lutpair28"; attribute SOFT_HLUTNM of \m_payload_i[42]_i_1\ : label is "soft_lutpair27"; attribute SOFT_HLUTNM of \m_payload_i[43]_i_1\ : label is "soft_lutpair27"; attribute SOFT_HLUTNM of \m_payload_i[44]_i_1\ : label is "soft_lutpair26"; attribute SOFT_HLUTNM of \m_payload_i[45]_i_1\ : label is "soft_lutpair26"; attribute SOFT_HLUTNM of \m_payload_i[46]_i_2\ : label is "soft_lutpair25"; attribute SOFT_HLUTNM of \m_payload_i[4]_i_1\ : label is "soft_lutpair46"; attribute SOFT_HLUTNM of \m_payload_i[5]_i_1\ : label is "soft_lutpair43"; attribute SOFT_HLUTNM of \m_payload_i[6]_i_1\ : label is "soft_lutpair45"; attribute SOFT_HLUTNM of \m_payload_i[7]_i_1\ : label is "soft_lutpair45"; attribute SOFT_HLUTNM of \m_payload_i[8]_i_1\ : label is "soft_lutpair44"; attribute SOFT_HLUTNM of \m_payload_i[9]_i_1\ : label is "soft_lutpair44"; begin \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) <= \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0); \m_axi_rready[0]\ <= \^m_axi_rready[0]\; m_valid_i_reg_0 <= \^m_valid_i_reg_0\; \r_cmd_pop_0__1\ <= \^r_cmd_pop_0__1\; \gen_master_slots[0].r_issuing_cnt[3]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(1), I1 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(2), I2 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(0), I3 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(3), I4 => \^r_cmd_pop_0__1\, I5 => p_93_in, O => E(0) ); \gen_master_slots[0].r_issuing_cnt[3]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"8000" ) port map ( I0 => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), I1 => \chosen_reg[0]\(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), O => \^r_cmd_pop_0__1\ ); \gen_no_arbiter.s_ready_i[0]_i_22__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFFFFEF" ) port map ( I0 => \^r_cmd_pop_0__1\, I1 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(0), I2 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(3), I3 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(1), I4 => \gen_master_slots[0].r_issuing_cnt_reg[3]\(2), O => \gen_no_arbiter.s_ready_i_reg[0]\ ); \last_rr_hot[2]_i_2\: unisim.vcomponents.LUT2 generic map( INIT => X"E" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => p_102_out, O => \chosen_reg[2]\ ); \m_payload_i[0]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(0), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[0]\, O => skid_buffer(0) ); \m_payload_i[10]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(10), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[10]\, O => skid_buffer(10) ); \m_payload_i[11]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(11), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[11]\, O => skid_buffer(11) ); \m_payload_i[12]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(12), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[12]\, O => skid_buffer(12) ); \m_payload_i[13]_i_1__4\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(13), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[13]\, O => skid_buffer(13) ); \m_payload_i[14]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(14), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[14]\, O => skid_buffer(14) ); \m_payload_i[15]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(15), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[15]\, O => skid_buffer(15) ); \m_payload_i[16]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(16), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[16]\, O => skid_buffer(16) ); \m_payload_i[17]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(17), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[17]\, O => skid_buffer(17) ); \m_payload_i[18]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(18), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[18]\, O => skid_buffer(18) ); \m_payload_i[19]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(19), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[19]\, O => skid_buffer(19) ); \m_payload_i[1]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(1), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[1]\, O => skid_buffer(1) ); \m_payload_i[20]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(20), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[20]\, O => skid_buffer(20) ); \m_payload_i[21]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(21), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[21]\, O => skid_buffer(21) ); \m_payload_i[22]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(22), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[22]\, O => skid_buffer(22) ); \m_payload_i[23]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(23), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[23]\, O => skid_buffer(23) ); \m_payload_i[24]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(24), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[24]\, O => skid_buffer(24) ); \m_payload_i[25]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(25), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[25]\, O => skid_buffer(25) ); \m_payload_i[26]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(26), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[26]\, O => skid_buffer(26) ); \m_payload_i[27]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(27), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[27]\, O => skid_buffer(27) ); \m_payload_i[28]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(28), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[28]\, O => skid_buffer(28) ); \m_payload_i[29]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(29), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[29]\, O => skid_buffer(29) ); \m_payload_i[2]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(2), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[2]\, O => skid_buffer(2) ); \m_payload_i[30]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(30), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[30]\, O => skid_buffer(30) ); \m_payload_i[31]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(31), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[31]\, O => skid_buffer(31) ); \m_payload_i[32]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(0), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[32]\, O => skid_buffer(32) ); \m_payload_i[33]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rresp(1), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[33]\, O => skid_buffer(33) ); \m_payload_i[34]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rlast(0), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[34]\, O => skid_buffer(34) ); \m_payload_i[35]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(0), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[35]\, O => skid_buffer(35) ); \m_payload_i[36]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(1), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[36]\, O => skid_buffer(36) ); \m_payload_i[37]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(2), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[37]\, O => skid_buffer(37) ); \m_payload_i[38]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(3), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[38]\, O => skid_buffer(38) ); \m_payload_i[39]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(4), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[39]\, O => skid_buffer(39) ); \m_payload_i[3]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(3), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[3]\, O => skid_buffer(3) ); \m_payload_i[40]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(5), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[40]\, O => skid_buffer(40) ); \m_payload_i[41]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(6), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[41]\, O => skid_buffer(41) ); \m_payload_i[42]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(7), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[42]\, O => skid_buffer(42) ); \m_payload_i[43]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(8), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[43]\, O => skid_buffer(43) ); \m_payload_i[44]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(9), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[44]\, O => skid_buffer(44) ); \m_payload_i[45]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(10), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[45]\, O => skid_buffer(45) ); \m_payload_i[46]_i_2\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rid(11), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[46]\, O => skid_buffer(46) ); \m_payload_i[4]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(4), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[4]\, O => skid_buffer(4) ); \m_payload_i[5]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(5), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[5]\, O => skid_buffer(5) ); \m_payload_i[6]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(6), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[6]\, O => skid_buffer(6) ); \m_payload_i[7]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(7), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[7]\, O => skid_buffer(7) ); \m_payload_i[8]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(8), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[8]\, O => skid_buffer(8) ); \m_payload_i[9]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"B8" ) port map ( I0 => m_axi_rdata(9), I1 => \^m_axi_rready[0]\, I2 => \skid_buffer_reg_n_0_[9]\, O => skid_buffer(9) ); \m_payload_i_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(0), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0), R => '0' ); \m_payload_i_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(10), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(10), R => '0' ); \m_payload_i_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(11), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11), R => '0' ); \m_payload_i_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(12), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12), R => '0' ); \m_payload_i_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(13), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13), R => '0' ); \m_payload_i_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(14), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(14), R => '0' ); \m_payload_i_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(15), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(15), R => '0' ); \m_payload_i_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(16), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(16), R => '0' ); \m_payload_i_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(17), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(17), R => '0' ); \m_payload_i_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(18), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(18), R => '0' ); \m_payload_i_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(19), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(19), R => '0' ); \m_payload_i_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(1), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(1), R => '0' ); \m_payload_i_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(20), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(20), R => '0' ); \m_payload_i_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(21), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(21), R => '0' ); \m_payload_i_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(22), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(22), R => '0' ); \m_payload_i_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(23), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(23), R => '0' ); \m_payload_i_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(24), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(24), R => '0' ); \m_payload_i_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(25), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(25), R => '0' ); \m_payload_i_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(26), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(26), R => '0' ); \m_payload_i_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(27), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(27), R => '0' ); \m_payload_i_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(28), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(28), R => '0' ); \m_payload_i_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(29), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(29), R => '0' ); \m_payload_i_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(2), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(2), R => '0' ); \m_payload_i_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(30), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(30), R => '0' ); \m_payload_i_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(31), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31), R => '0' ); \m_payload_i_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(32), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(32), R => '0' ); \m_payload_i_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(33), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33), R => '0' ); \m_payload_i_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(34), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34), R => '0' ); \m_payload_i_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(35), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(35), R => '0' ); \m_payload_i_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(36), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(36), R => '0' ); \m_payload_i_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(37), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(37), R => '0' ); \m_payload_i_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(38), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(38), R => '0' ); \m_payload_i_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(39), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(39), R => '0' ); \m_payload_i_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(3), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(3), R => '0' ); \m_payload_i_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(40), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(40), R => '0' ); \m_payload_i_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(41), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(41), R => '0' ); \m_payload_i_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(42), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(42), R => '0' ); \m_payload_i_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(43), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(43), R => '0' ); \m_payload_i_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(44), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(44), R => '0' ); \m_payload_i_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(45), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(45), R => '0' ); \m_payload_i_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(46), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46), R => '0' ); \m_payload_i_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(4), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(4), R => '0' ); \m_payload_i_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(5), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(5), R => '0' ); \m_payload_i_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(6), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(6), R => '0' ); \m_payload_i_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(7), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(7), R => '0' ); \m_payload_i_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(8), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(8), R => '0' ); \m_payload_i_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \chosen_reg[0]_0\(0), D => skid_buffer(9), Q => \^gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(9), R => '0' ); \m_valid_i_i_1__3\: unisim.vcomponents.LUT5 generic map( INIT => X"DDFDFDFD" ) port map ( I0 => \^m_axi_rready[0]\, I1 => m_axi_rvalid(0), I2 => \^m_valid_i_reg_0\, I3 => s_axi_rready(0), I4 => \chosen_reg[0]\(0), O => m_valid_i0 ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => m_valid_i0, Q => \^m_valid_i_reg_0\, R => \aresetn_d_reg[1]\ ); \s_ready_i_i_1__4\: unisim.vcomponents.LUT5 generic map( INIT => X"D5D5FFD5" ) port map ( I0 => \^m_valid_i_reg_0\, I1 => s_axi_rready(0), I2 => \chosen_reg[0]\(0), I3 => \^m_axi_rready[0]\, I4 => m_axi_rvalid(0), O => \s_ready_i_i_1__4_n_0\ ); s_ready_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__4_n_0\, Q => \^m_axi_rready[0]\, R => p_1_in ); \skid_buffer_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(0), Q => \skid_buffer_reg_n_0_[0]\, R => '0' ); \skid_buffer_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(10), Q => \skid_buffer_reg_n_0_[10]\, R => '0' ); \skid_buffer_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(11), Q => \skid_buffer_reg_n_0_[11]\, R => '0' ); \skid_buffer_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(12), Q => \skid_buffer_reg_n_0_[12]\, R => '0' ); \skid_buffer_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(13), Q => \skid_buffer_reg_n_0_[13]\, R => '0' ); \skid_buffer_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(14), Q => \skid_buffer_reg_n_0_[14]\, R => '0' ); \skid_buffer_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(15), Q => \skid_buffer_reg_n_0_[15]\, R => '0' ); \skid_buffer_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(16), Q => \skid_buffer_reg_n_0_[16]\, R => '0' ); \skid_buffer_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(17), Q => \skid_buffer_reg_n_0_[17]\, R => '0' ); \skid_buffer_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(18), Q => \skid_buffer_reg_n_0_[18]\, R => '0' ); \skid_buffer_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(19), Q => \skid_buffer_reg_n_0_[19]\, R => '0' ); \skid_buffer_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(1), Q => \skid_buffer_reg_n_0_[1]\, R => '0' ); \skid_buffer_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(20), Q => \skid_buffer_reg_n_0_[20]\, R => '0' ); \skid_buffer_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(21), Q => \skid_buffer_reg_n_0_[21]\, R => '0' ); \skid_buffer_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(22), Q => \skid_buffer_reg_n_0_[22]\, R => '0' ); \skid_buffer_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(23), Q => \skid_buffer_reg_n_0_[23]\, R => '0' ); \skid_buffer_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(24), Q => \skid_buffer_reg_n_0_[24]\, R => '0' ); \skid_buffer_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(25), Q => \skid_buffer_reg_n_0_[25]\, R => '0' ); \skid_buffer_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(26), Q => \skid_buffer_reg_n_0_[26]\, R => '0' ); \skid_buffer_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(27), Q => \skid_buffer_reg_n_0_[27]\, R => '0' ); \skid_buffer_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(28), Q => \skid_buffer_reg_n_0_[28]\, R => '0' ); \skid_buffer_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(29), Q => \skid_buffer_reg_n_0_[29]\, R => '0' ); \skid_buffer_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(2), Q => \skid_buffer_reg_n_0_[2]\, R => '0' ); \skid_buffer_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(30), Q => \skid_buffer_reg_n_0_[30]\, R => '0' ); \skid_buffer_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(31), Q => \skid_buffer_reg_n_0_[31]\, R => '0' ); \skid_buffer_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rresp(0), Q => \skid_buffer_reg_n_0_[32]\, R => '0' ); \skid_buffer_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rresp(1), Q => \skid_buffer_reg_n_0_[33]\, R => '0' ); \skid_buffer_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rlast(0), Q => \skid_buffer_reg_n_0_[34]\, R => '0' ); \skid_buffer_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(0), Q => \skid_buffer_reg_n_0_[35]\, R => '0' ); \skid_buffer_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(1), Q => \skid_buffer_reg_n_0_[36]\, R => '0' ); \skid_buffer_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(2), Q => \skid_buffer_reg_n_0_[37]\, R => '0' ); \skid_buffer_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(3), Q => \skid_buffer_reg_n_0_[38]\, R => '0' ); \skid_buffer_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(4), Q => \skid_buffer_reg_n_0_[39]\, R => '0' ); \skid_buffer_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(3), Q => \skid_buffer_reg_n_0_[3]\, R => '0' ); \skid_buffer_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(5), Q => \skid_buffer_reg_n_0_[40]\, R => '0' ); \skid_buffer_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(6), Q => \skid_buffer_reg_n_0_[41]\, R => '0' ); \skid_buffer_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(7), Q => \skid_buffer_reg_n_0_[42]\, R => '0' ); \skid_buffer_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(8), Q => \skid_buffer_reg_n_0_[43]\, R => '0' ); \skid_buffer_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(9), Q => \skid_buffer_reg_n_0_[44]\, R => '0' ); \skid_buffer_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(10), Q => \skid_buffer_reg_n_0_[45]\, R => '0' ); \skid_buffer_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rid(11), Q => \skid_buffer_reg_n_0_[46]\, R => '0' ); \skid_buffer_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(4), Q => \skid_buffer_reg_n_0_[4]\, R => '0' ); \skid_buffer_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(5), Q => \skid_buffer_reg_n_0_[5]\, R => '0' ); \skid_buffer_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(6), Q => \skid_buffer_reg_n_0_[6]\, R => '0' ); \skid_buffer_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(7), Q => \skid_buffer_reg_n_0_[7]\, R => '0' ); \skid_buffer_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(8), Q => \skid_buffer_reg_n_0_[8]\, R => '0' ); \skid_buffer_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \^m_axi_rready[0]\, D => m_axi_rdata(9), Q => \skid_buffer_reg_n_0_[9]\, R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc is port ( \s_axi_rid[0]\ : out STD_LOGIC; \s_axi_rid[1]\ : out STD_LOGIC; \s_axi_rid[2]\ : out STD_LOGIC; \s_axi_rid[3]\ : out STD_LOGIC; \s_axi_rid[4]\ : out STD_LOGIC; \s_axi_rid[5]\ : out STD_LOGIC; \s_axi_rid[6]\ : out STD_LOGIC; \s_axi_rid[7]\ : out STD_LOGIC; \s_axi_rid[8]\ : out STD_LOGIC; \s_axi_rid[9]\ : out STD_LOGIC; \s_axi_rid[10]\ : out STD_LOGIC; \s_axi_rid[11]\ : out STD_LOGIC; s_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_rlast : out STD_LOGIC_VECTOR ( 0 to 0 ); E : out STD_LOGIC_VECTOR ( 0 to 0 ); m_valid_i : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.accept_cnt_reg[3]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); D : out STD_LOGIC_VECTOR ( 2 downto 0 ); S : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); resp_select : in STD_LOGIC_VECTOR ( 0 to 0 ); f_mux4_return : in STD_LOGIC_VECTOR ( 46 downto 0 ); st_mr_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); \m_payload_i_reg[34]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); aresetn_d : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\ : in STD_LOGIC; aa_mi_arvalid : in STD_LOGIC; Q : in STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.accept_cnt_reg[0]\ : in STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : in STD_LOGIC; \gen_master_slots[1].r_issuing_cnt_reg[8]\ : in STD_LOGIC; \gen_master_slots[4].r_issuing_cnt_reg[32]\ : in STD_LOGIC; cmd_push_0 : in STD_LOGIC; \thread_valid_0__2\ : in STD_LOGIC; CO : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_3 : in STD_LOGIC; \thread_valid_3__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_4 : in STD_LOGIC; \thread_valid_4__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_7 : in STD_LOGIC; \thread_valid_7__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_6 : in STD_LOGIC; \thread_valid_6__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_5 : in STD_LOGIC; \thread_valid_5__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_2 : in STD_LOGIC; \thread_valid_2__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_1 : in STD_LOGIC; \thread_valid_1__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); S_AXI_ARREADY : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ) ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc is signal \any_pop__1\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_6__0_n_0\ : STD_LOGIC; signal \^m_valid_i\ : STD_LOGIC; signal \^s_axi_rid[0]\ : STD_LOGIC; signal \^s_axi_rid[10]\ : STD_LOGIC; signal \^s_axi_rid[11]\ : STD_LOGIC; signal \^s_axi_rid[1]\ : STD_LOGIC; signal \^s_axi_rid[2]\ : STD_LOGIC; signal \^s_axi_rid[3]\ : STD_LOGIC; signal \^s_axi_rid[4]\ : STD_LOGIC; signal \^s_axi_rid[5]\ : STD_LOGIC; signal \^s_axi_rid[6]\ : STD_LOGIC; signal \^s_axi_rid[7]\ : STD_LOGIC; signal \^s_axi_rid[8]\ : STD_LOGIC; signal \^s_axi_rid[9]\ : STD_LOGIC; signal \^s_axi_rlast\ : STD_LOGIC_VECTOR ( 0 to 0 ); attribute BOX_TYPE : string; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[0].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[10].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[11].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[12].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[13].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[15].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[16].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[17].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[18].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[19].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[1].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[20].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[21].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[22].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[23].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[24].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[25].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[26].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[27].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[28].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[29].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[2].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[30].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[31].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[32].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[33].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[34].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[35].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[36].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[37].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[38].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[39].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[3].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[40].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[41].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[42].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[43].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[44].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[45].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[46].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[47].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[4].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[5].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[6].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[7].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[8].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[9].mux_s2_inst\ : label is "PRIMITIVE"; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_multi_thread.accept_cnt[1]_i_1__0\ : label is "soft_lutpair132"; attribute SOFT_HLUTNM of \gen_multi_thread.accept_cnt[2]_i_1__0\ : label is "soft_lutpair132"; begin m_valid_i <= \^m_valid_i\; \s_axi_rid[0]\ <= \^s_axi_rid[0]\; \s_axi_rid[10]\ <= \^s_axi_rid[10]\; \s_axi_rid[11]\ <= \^s_axi_rid[11]\; \s_axi_rid[1]\ <= \^s_axi_rid[1]\; \s_axi_rid[2]\ <= \^s_axi_rid[2]\; \s_axi_rid[3]\ <= \^s_axi_rid[3]\; \s_axi_rid[4]\ <= \^s_axi_rid[4]\; \s_axi_rid[5]\ <= \^s_axi_rid[5]\; \s_axi_rid[6]\ <= \^s_axi_rid[6]\; \s_axi_rid[7]\ <= \^s_axi_rid[7]\; \s_axi_rid[8]\ <= \^s_axi_rid[8]\; \s_axi_rid[9]\ <= \^s_axi_rid[9]\; s_axi_rlast(0) <= \^s_axi_rlast\(0); \gen_fpga.gen_mux_5_8[0].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(0), I1 => st_mr_rid(0), O => \^s_axi_rid[0]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[10].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(10), I1 => st_mr_rid(10), O => \^s_axi_rid[10]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(11), I1 => st_mr_rid(11), O => \^s_axi_rid[11]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[12].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(12), I1 => '1', O => s_axi_rresp(0), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[13].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(13), I1 => '1', O => s_axi_rresp(1), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[15].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(14), I1 => '0', O => s_axi_rdata(0), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[16].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(15), I1 => '0', O => s_axi_rdata(1), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[17].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(16), I1 => '0', O => s_axi_rdata(2), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[18].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(17), I1 => '0', O => s_axi_rdata(3), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[19].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(18), I1 => '0', O => s_axi_rdata(4), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[1].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(1), I1 => st_mr_rid(1), O => \^s_axi_rid[1]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[20].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(19), I1 => '0', O => s_axi_rdata(5), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[21].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(20), I1 => '0', O => s_axi_rdata(6), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[22].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(21), I1 => '0', O => s_axi_rdata(7), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[23].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(22), I1 => '0', O => s_axi_rdata(8), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[24].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(23), I1 => '0', O => s_axi_rdata(9), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[25].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(24), I1 => '0', O => s_axi_rdata(10), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[26].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(25), I1 => '0', O => s_axi_rdata(11), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[27].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(26), I1 => '0', O => s_axi_rdata(12), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[28].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(27), I1 => '0', O => s_axi_rdata(13), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[29].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(28), I1 => '0', O => s_axi_rdata(14), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[2].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(2), I1 => st_mr_rid(2), O => \^s_axi_rid[2]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[30].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(29), I1 => '0', O => s_axi_rdata(15), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[31].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(30), I1 => '0', O => s_axi_rdata(16), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[32].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(31), I1 => '0', O => s_axi_rdata(17), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[33].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(32), I1 => '0', O => s_axi_rdata(18), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[34].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(33), I1 => '0', O => s_axi_rdata(19), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[35].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(34), I1 => '0', O => s_axi_rdata(20), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[36].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(35), I1 => '0', O => s_axi_rdata(21), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[37].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(36), I1 => '0', O => s_axi_rdata(22), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[38].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(37), I1 => '0', O => s_axi_rdata(23), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[39].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(38), I1 => '0', O => s_axi_rdata(24), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[3].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(3), I1 => st_mr_rid(3), O => \^s_axi_rid[3]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[40].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(39), I1 => '0', O => s_axi_rdata(25), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[41].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(40), I1 => '0', O => s_axi_rdata(26), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[42].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(41), I1 => '0', O => s_axi_rdata(27), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[43].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(42), I1 => '0', O => s_axi_rdata(28), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[44].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(43), I1 => '0', O => s_axi_rdata(29), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[45].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(44), I1 => '0', O => s_axi_rdata(30), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[46].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(45), I1 => '0', O => s_axi_rdata(31), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[47].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(46), I1 => \m_payload_i_reg[34]\(0), O => \^s_axi_rlast\(0), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[4].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(4), I1 => st_mr_rid(4), O => \^s_axi_rid[4]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[5].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(5), I1 => st_mr_rid(5), O => \^s_axi_rid[5]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[6].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(6), I1 => st_mr_rid(6), O => \^s_axi_rid[6]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[7].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(7), I1 => st_mr_rid(7), O => \^s_axi_rid[7]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[8].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(8), I1 => st_mr_rid(8), O => \^s_axi_rid[8]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[9].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(9), I1 => st_mr_rid(9), O => \^s_axi_rid[9]\, S => resp_select(0) ); \gen_multi_thread.accept_cnt[1]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"9A65" ) port map ( I0 => Q(0), I1 => \any_pop__1\, I2 => S_AXI_ARREADY(0), I3 => Q(1), O => D(0) ); \gen_multi_thread.accept_cnt[2]_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"DFF2200D" ) port map ( I0 => S_AXI_ARREADY(0), I1 => \any_pop__1\, I2 => Q(0), I3 => Q(1), I4 => Q(2), O => D(1) ); \gen_multi_thread.accept_cnt[3]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => Q(1), I1 => Q(2), I2 => Q(0), I3 => Q(3), I4 => \any_pop__1\, I5 => S_AXI_ARREADY(0), O => \gen_multi_thread.accept_cnt_reg[3]\(0) ); \gen_multi_thread.accept_cnt[3]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"F7FF0800FFAE0051" ) port map ( I0 => Q(1), I1 => S_AXI_ARREADY(0), I2 => \any_pop__1\, I3 => Q(0), I4 => Q(3), I5 => Q(2), O => D(2) ); \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_0, I1 => \any_pop__1\, I2 => \thread_valid_0__2\, I3 => CO(0), O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_1, I1 => \any_pop__1\, I2 => \thread_valid_1__2\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\(0), O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_2, I1 => \any_pop__1\, I2 => \thread_valid_2__2\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\(0), O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_3, I1 => \any_pop__1\, I2 => \thread_valid_3__2\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\(0), O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_4, I1 => \any_pop__1\, I2 => \thread_valid_4__2\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\(0), O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_5, I1 => \any_pop__1\, I2 => \thread_valid_5__2\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\(0), O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_6, I1 => \any_pop__1\, I2 => \thread_valid_6__2\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\(0), O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_7, I1 => \any_pop__1\, I2 => \thread_valid_7__2\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\(0), O => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_3__0\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => s_axi_rready(0), I1 => \^s_axi_rlast\(0), I2 => s_axi_rvalid(0), O => \any_pop__1\ ); \gen_no_arbiter.s_ready_i[0]_i_1__0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => \^m_valid_i\, I1 => aresetn_d, O => E(0) ); \gen_no_arbiter.s_ready_i[0]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000100" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\, I2 => \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\, I3 => \gen_no_arbiter.s_ready_i[0]_i_6__0_n_0\, I4 => \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\, I5 => aa_mi_arvalid, O => \^m_valid_i\ ); \gen_no_arbiter.s_ready_i[0]_i_6__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FD00FD00FD000000" ) port map ( I0 => Q(3), I1 => \any_pop__1\, I2 => \gen_multi_thread.accept_cnt_reg[0]\, I3 => \gen_no_arbiter.s_ready_i_reg[0]\, I4 => \gen_master_slots[1].r_issuing_cnt_reg[8]\, I5 => \gen_master_slots[4].r_issuing_cnt_reg[32]\, O => \gen_no_arbiter.s_ready_i[0]_i_6__0_n_0\ ); \i__carry_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(9), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(11), I5 => \^s_axi_rid[11]\, O => S(3) ); \i__carry_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(6), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(8), I5 => \^s_axi_rid[8]\, O => S(2) ); \i__carry_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(3), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(5), I5 => \^s_axi_rid[5]\, O => S(1) ); \i__carry_i_4\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(0), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(2), I5 => \^s_axi_rid[2]\, O => S(0) ); p_10_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(9), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(3) ); p_10_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(6), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(2) ); p_10_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(3), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(1) ); p_10_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(0), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(0) ); p_12_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(9), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(3) ); p_12_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(6), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(2) ); p_12_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(3), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(1) ); p_12_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(0), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(0) ); p_14_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(9), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(3) ); p_14_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(6), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(2) ); p_14_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(3), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(1) ); p_14_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(0), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(0) ); p_2_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(9), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(3) ); p_2_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(6), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(2) ); p_2_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(3), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(1) ); p_2_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(0), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(0) ); p_4_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(9), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(3) ); p_4_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(6), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(2) ); p_4_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(3), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(1) ); p_4_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(0), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(0) ); p_6_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(9), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(3) ); p_6_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(6), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(2) ); p_6_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(3), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(1) ); p_6_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(0), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(0) ); p_8_out_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[10]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(10), I2 => \^s_axi_rid[9]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(9), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(11), I5 => \^s_axi_rid[11]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(3) ); p_8_out_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[7]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(7), I2 => \^s_axi_rid[6]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(6), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(8), I5 => \^s_axi_rid[8]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(2) ); p_8_out_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[4]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(4), I2 => \^s_axi_rid[3]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(3), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(5), I5 => \^s_axi_rid[5]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(1) ); p_8_out_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_rid[1]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(1), I2 => \^s_axi_rid[0]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(0), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(2), I5 => \^s_axi_rid[2]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc__parameterized0\ is port ( \s_axi_bid[0]\ : out STD_LOGIC; \s_axi_bid[1]\ : out STD_LOGIC; \s_axi_bid[2]\ : out STD_LOGIC; \s_axi_bid[3]\ : out STD_LOGIC; \s_axi_bid[4]\ : out STD_LOGIC; \s_axi_bid[5]\ : out STD_LOGIC; \s_axi_bid[6]\ : out STD_LOGIC; \s_axi_bid[7]\ : out STD_LOGIC; \s_axi_bid[8]\ : out STD_LOGIC; \s_axi_bid[9]\ : out STD_LOGIC; \s_axi_bid[10]\ : out STD_LOGIC; \s_axi_bid[11]\ : out STD_LOGIC; s_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); E : out STD_LOGIC_VECTOR ( 0 to 0 ); \any_pop__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.accept_cnt_reg[3]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); D : out STD_LOGIC_VECTOR ( 2 downto 0 ); S : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\ : out STD_LOGIC_VECTOR ( 3 downto 0 ); resp_select : in STD_LOGIC_VECTOR ( 0 to 0 ); f_mux4_return : in STD_LOGIC_VECTOR ( 13 downto 0 ); st_mr_bid : in STD_LOGIC_VECTOR ( 11 downto 0 ); cmd_push_0 : in STD_LOGIC; \thread_valid_0__2\ : in STD_LOGIC; CO : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_3 : in STD_LOGIC; \thread_valid_3__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_4 : in STD_LOGIC; \thread_valid_4__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_7 : in STD_LOGIC; \thread_valid_7__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_6 : in STD_LOGIC; \thread_valid_6__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_5 : in STD_LOGIC; \thread_valid_5__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_2 : in STD_LOGIC; \thread_valid_2__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); cmd_push_1 : in STD_LOGIC; \thread_valid_1__2\ : in STD_LOGIC; \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 3 downto 0 ); \m_ready_d_reg[1]\ : in STD_LOGIC; s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc__parameterized0\ : entity is "generic_baseblocks_v2_1_0_mux_enc"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc__parameterized0\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc__parameterized0\ is signal \^any_pop__1\ : STD_LOGIC; signal p_0_out : STD_LOGIC; signal \^s_axi_bid[0]\ : STD_LOGIC; signal \^s_axi_bid[10]\ : STD_LOGIC; signal \^s_axi_bid[11]\ : STD_LOGIC; signal \^s_axi_bid[1]\ : STD_LOGIC; signal \^s_axi_bid[2]\ : STD_LOGIC; signal \^s_axi_bid[3]\ : STD_LOGIC; signal \^s_axi_bid[4]\ : STD_LOGIC; signal \^s_axi_bid[5]\ : STD_LOGIC; signal \^s_axi_bid[6]\ : STD_LOGIC; signal \^s_axi_bid[7]\ : STD_LOGIC; signal \^s_axi_bid[8]\ : STD_LOGIC; signal \^s_axi_bid[9]\ : STD_LOGIC; attribute BOX_TYPE : string; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[0].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[10].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[11].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[12].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[13].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[15].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[1].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[2].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[3].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[4].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[5].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[6].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[7].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[8].mux_s2_inst\ : label is "PRIMITIVE"; attribute BOX_TYPE of \gen_fpga.gen_mux_5_8[9].mux_s2_inst\ : label is "PRIMITIVE"; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_multi_thread.accept_cnt[1]_i_1\ : label is "soft_lutpair158"; attribute SOFT_HLUTNM of \gen_multi_thread.accept_cnt[2]_i_1\ : label is "soft_lutpair158"; begin \any_pop__1\ <= \^any_pop__1\; \s_axi_bid[0]\ <= \^s_axi_bid[0]\; \s_axi_bid[10]\ <= \^s_axi_bid[10]\; \s_axi_bid[11]\ <= \^s_axi_bid[11]\; \s_axi_bid[1]\ <= \^s_axi_bid[1]\; \s_axi_bid[2]\ <= \^s_axi_bid[2]\; \s_axi_bid[3]\ <= \^s_axi_bid[3]\; \s_axi_bid[4]\ <= \^s_axi_bid[4]\; \s_axi_bid[5]\ <= \^s_axi_bid[5]\; \s_axi_bid[6]\ <= \^s_axi_bid[6]\; \s_axi_bid[7]\ <= \^s_axi_bid[7]\; \s_axi_bid[8]\ <= \^s_axi_bid[8]\; \s_axi_bid[9]\ <= \^s_axi_bid[9]\; \gen_fpga.gen_mux_5_8[0].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(0), I1 => st_mr_bid(0), O => \^s_axi_bid[0]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[10].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(10), I1 => st_mr_bid(10), O => \^s_axi_bid[10]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[11].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(11), I1 => st_mr_bid(11), O => \^s_axi_bid[11]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[12].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(12), I1 => '1', O => s_axi_bresp(0), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[13].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(13), I1 => '1', O => s_axi_bresp(1), S => resp_select(0) ); \gen_fpga.gen_mux_5_8[15].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => '1', I1 => '1', O => p_0_out, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[1].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(1), I1 => st_mr_bid(1), O => \^s_axi_bid[1]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[2].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(2), I1 => st_mr_bid(2), O => \^s_axi_bid[2]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[3].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(3), I1 => st_mr_bid(3), O => \^s_axi_bid[3]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[4].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(4), I1 => st_mr_bid(4), O => \^s_axi_bid[4]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[5].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(5), I1 => st_mr_bid(5), O => \^s_axi_bid[5]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[6].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(6), I1 => st_mr_bid(6), O => \^s_axi_bid[6]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[7].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(7), I1 => st_mr_bid(7), O => \^s_axi_bid[7]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[8].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(8), I1 => st_mr_bid(8), O => \^s_axi_bid[8]\, S => resp_select(0) ); \gen_fpga.gen_mux_5_8[9].mux_s2_inst\: unisim.vcomponents.MUXF7 port map ( I0 => f_mux4_return(9), I1 => st_mr_bid(9), O => \^s_axi_bid[9]\, S => resp_select(0) ); \gen_multi_thread.accept_cnt[1]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"9A65" ) port map ( I0 => Q(0), I1 => \^any_pop__1\, I2 => \m_ready_d_reg[1]\, I3 => Q(1), O => D(0) ); \gen_multi_thread.accept_cnt[2]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"DFF2200D" ) port map ( I0 => \m_ready_d_reg[1]\, I1 => \^any_pop__1\, I2 => Q(0), I3 => Q(1), I4 => Q(2), O => D(1) ); \gen_multi_thread.accept_cnt[3]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"0000FFFFFFFE0000" ) port map ( I0 => Q(1), I1 => Q(2), I2 => Q(0), I3 => Q(3), I4 => \^any_pop__1\, I5 => \m_ready_d_reg[1]\, O => \gen_multi_thread.accept_cnt_reg[3]\(0) ); \gen_multi_thread.accept_cnt[3]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"F7FF0800FFAE0051" ) port map ( I0 => Q(1), I1 => \m_ready_d_reg[1]\, I2 => \^any_pop__1\, I3 => Q(0), I4 => Q(3), I5 => Q(2), O => D(2) ); \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_0, I1 => \^any_pop__1\, I2 => \thread_valid_0__2\, I3 => CO(0), O => E(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_1, I1 => \^any_pop__1\, I2 => \thread_valid_1__2\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\(0), O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_2, I1 => \^any_pop__1\, I2 => \thread_valid_2__2\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\(0), O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_3, I1 => \^any_pop__1\, I2 => \thread_valid_3__2\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\(0), O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_4, I1 => \^any_pop__1\, I2 => \thread_valid_4__2\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\(0), O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_5, I1 => \^any_pop__1\, I2 => \thread_valid_5__2\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\(0), O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_6, I1 => \^any_pop__1\, I2 => \thread_valid_6__2\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\(0), O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"6AAA" ) port map ( I0 => cmd_push_7, I1 => \^any_pop__1\, I2 => \thread_valid_7__2\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\(0), O => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_3\: unisim.vcomponents.LUT3 generic map( INIT => X"80" ) port map ( I0 => s_axi_bready(0), I1 => p_0_out, I2 => s_axi_bvalid(0), O => \^any_pop__1\ ); \i__carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(9), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(11), I5 => \^s_axi_bid[11]\, O => S(3) ); \i__carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(6), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(8), I5 => \^s_axi_bid[8]\, O => S(2) ); \i__carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(3), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(5), I5 => \^s_axi_bid[5]\, O => S(1) ); \i__carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(0), I4 => \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(2), I5 => \^s_axi_bid[2]\, O => S(0) ); \p_10_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(9), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(3) ); \p_10_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(6), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(2) ); \p_10_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(3), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(1) ); \p_10_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(0), I4 => \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(0) ); \p_12_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(9), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(3) ); \p_12_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(6), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(2) ); \p_12_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(3), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(1) ); \p_12_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(0), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(0) ); \p_14_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(9), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(3) ); \p_14_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(6), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(2) ); \p_14_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(3), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(1) ); \p_14_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(0), I4 => \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(0) ); \p_2_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(9), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(3) ); \p_2_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(6), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(2) ); \p_2_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(3), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(1) ); \p_2_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(0), I4 => \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(0) ); \p_4_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(9), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(3) ); \p_4_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(6), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(2) ); \p_4_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(3), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(1) ); \p_4_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(0), I4 => \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(0) ); \p_6_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(9), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(3) ); \p_6_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(6), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(2) ); \p_6_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(3), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(1) ); \p_6_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(0), I4 => \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(0) ); \p_8_out_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[10]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(10), I2 => \^s_axi_bid[9]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(9), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(11), I5 => \^s_axi_bid[11]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(3) ); \p_8_out_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[7]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(7), I2 => \^s_axi_bid[6]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(6), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(8), I5 => \^s_axi_bid[8]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(2) ); \p_8_out_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[4]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(4), I2 => \^s_axi_bid[3]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(3), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(5), I5 => \^s_axi_bid[5]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(1) ); \p_8_out_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \^s_axi_bid[1]\, I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(1), I2 => \^s_axi_bid[0]\, I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(0), I4 => \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(2), I5 => \^s_axi_bid[2]\, O => \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor is port ( \s_axi_rid[0]\ : out STD_LOGIC; \s_axi_rid[1]\ : out STD_LOGIC; \s_axi_rid[2]\ : out STD_LOGIC; \s_axi_rid[3]\ : out STD_LOGIC; \s_axi_rid[4]\ : out STD_LOGIC; \s_axi_rid[5]\ : out STD_LOGIC; \s_axi_rid[6]\ : out STD_LOGIC; \s_axi_rid[7]\ : out STD_LOGIC; \s_axi_rid[8]\ : out STD_LOGIC; \s_axi_rid[9]\ : out STD_LOGIC; \s_axi_rid[10]\ : out STD_LOGIC; \s_axi_rid[11]\ : out STD_LOGIC; s_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_rlast : out STD_LOGIC_VECTOR ( 0 to 0 ); E : out STD_LOGIC_VECTOR ( 0 to 0 ); m_valid_i : out STD_LOGIC; D : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); Q : out STD_LOGIC_VECTOR ( 4 downto 0 ); s_axi_rvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]_0\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]_1\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[0]_2\ : out STD_LOGIC_VECTOR ( 0 to 0 ); st_mr_rid : in STD_LOGIC_VECTOR ( 59 downto 0 ); \m_payload_i_reg[34]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ); aresetn_d : in STD_LOGIC; aa_mi_arvalid : in STD_LOGIC; \s_axi_araddr[18]\ : in STD_LOGIC; \s_axi_araddr[25]\ : in STD_LOGIC; match : in STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : in STD_LOGIC; \gen_master_slots[1].r_issuing_cnt_reg[8]\ : in STD_LOGIC; \gen_master_slots[4].r_issuing_cnt_reg[32]\ : in STD_LOGIC; S_AXI_ARREADY : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); p_122_out : in STD_LOGIC; st_mr_rmesg : in STD_LOGIC_VECTOR ( 135 downto 0 ); \m_payload_i_reg[34]_1\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]_2\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]_3\ : in STD_LOGIC_VECTOR ( 0 to 0 ); \m_payload_i_reg[34]_4\ : in STD_LOGIC_VECTOR ( 0 to 0 ); p_62_out : in STD_LOGIC; p_102_out : in STD_LOGIC; p_40_out : in STD_LOGIC; m_valid_i_reg : in STD_LOGIC; p_82_out : in STD_LOGIC; m_valid_i_reg_0 : in STD_LOGIC; \s_axi_arid[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); SR : in STD_LOGIC_VECTOR ( 0 to 0 ); aclk : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor is signal \^d\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \accum_push_5__0\ : STD_LOGIC; signal active_cnt : STD_LOGIC_VECTOR ( 59 downto 0 ); signal active_target : STD_LOGIC_VECTOR ( 58 downto 0 ); signal aid_match_00 : STD_LOGIC; signal aid_match_00_carry_i_1_n_0 : STD_LOGIC; signal aid_match_00_carry_i_2_n_0 : STD_LOGIC; signal aid_match_00_carry_i_3_n_0 : STD_LOGIC; signal aid_match_00_carry_i_4_n_0 : STD_LOGIC; signal aid_match_00_carry_n_1 : STD_LOGIC; signal aid_match_00_carry_n_2 : STD_LOGIC; signal aid_match_00_carry_n_3 : STD_LOGIC; signal aid_match_10 : STD_LOGIC; signal aid_match_10_carry_i_1_n_0 : STD_LOGIC; signal aid_match_10_carry_i_2_n_0 : STD_LOGIC; signal aid_match_10_carry_i_3_n_0 : STD_LOGIC; signal aid_match_10_carry_i_4_n_0 : STD_LOGIC; signal aid_match_10_carry_n_1 : STD_LOGIC; signal aid_match_10_carry_n_2 : STD_LOGIC; signal aid_match_10_carry_n_3 : STD_LOGIC; signal aid_match_20 : STD_LOGIC; signal aid_match_20_carry_i_1_n_0 : STD_LOGIC; signal aid_match_20_carry_i_2_n_0 : STD_LOGIC; signal aid_match_20_carry_i_3_n_0 : STD_LOGIC; signal aid_match_20_carry_i_4_n_0 : STD_LOGIC; signal aid_match_20_carry_n_1 : STD_LOGIC; signal aid_match_20_carry_n_2 : STD_LOGIC; signal aid_match_20_carry_n_3 : STD_LOGIC; signal aid_match_30 : STD_LOGIC; signal aid_match_30_carry_i_1_n_0 : STD_LOGIC; signal aid_match_30_carry_i_2_n_0 : STD_LOGIC; signal aid_match_30_carry_i_3_n_0 : STD_LOGIC; signal aid_match_30_carry_i_4_n_0 : STD_LOGIC; signal aid_match_30_carry_n_1 : STD_LOGIC; signal aid_match_30_carry_n_2 : STD_LOGIC; signal aid_match_30_carry_n_3 : STD_LOGIC; signal aid_match_40 : STD_LOGIC; signal aid_match_40_carry_i_1_n_0 : STD_LOGIC; signal aid_match_40_carry_i_2_n_0 : STD_LOGIC; signal aid_match_40_carry_i_3_n_0 : STD_LOGIC; signal aid_match_40_carry_i_4_n_0 : STD_LOGIC; signal aid_match_40_carry_n_1 : STD_LOGIC; signal aid_match_40_carry_n_2 : STD_LOGIC; signal aid_match_40_carry_n_3 : STD_LOGIC; signal aid_match_50 : STD_LOGIC; signal aid_match_50_carry_i_1_n_0 : STD_LOGIC; signal aid_match_50_carry_i_2_n_0 : STD_LOGIC; signal aid_match_50_carry_i_3_n_0 : STD_LOGIC; signal aid_match_50_carry_i_4_n_0 : STD_LOGIC; signal aid_match_50_carry_n_1 : STD_LOGIC; signal aid_match_50_carry_n_2 : STD_LOGIC; signal aid_match_50_carry_n_3 : STD_LOGIC; signal aid_match_60 : STD_LOGIC; signal aid_match_60_carry_i_1_n_0 : STD_LOGIC; signal aid_match_60_carry_i_2_n_0 : STD_LOGIC; signal aid_match_60_carry_i_3_n_0 : STD_LOGIC; signal aid_match_60_carry_i_4_n_0 : STD_LOGIC; signal aid_match_60_carry_n_1 : STD_LOGIC; signal aid_match_60_carry_n_2 : STD_LOGIC; signal aid_match_60_carry_n_3 : STD_LOGIC; signal \aid_match_6__0\ : STD_LOGIC; signal aid_match_70 : STD_LOGIC; signal aid_match_70_carry_i_1_n_0 : STD_LOGIC; signal aid_match_70_carry_i_2_n_0 : STD_LOGIC; signal aid_match_70_carry_i_3_n_0 : STD_LOGIC; signal aid_match_70_carry_i_4_n_0 : STD_LOGIC; signal aid_match_70_carry_n_1 : STD_LOGIC; signal aid_match_70_carry_n_2 : STD_LOGIC; signal aid_match_70_carry_n_3 : STD_LOGIC; signal \aid_match_7__0\ : STD_LOGIC; signal cmd_push_0 : STD_LOGIC; signal cmd_push_1 : STD_LOGIC; signal cmd_push_2 : STD_LOGIC; signal cmd_push_3 : STD_LOGIC; signal cmd_push_4 : STD_LOGIC; signal cmd_push_5 : STD_LOGIC; signal cmd_push_6 : STD_LOGIC; signal cmd_push_7 : STD_LOGIC; signal f_mux4_return : STD_LOGIC_VECTOR ( 47 downto 0 ); signal \gen_multi_thread.accept_cnt[0]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.accept_cnt_reg__0\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_49\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_50\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_51\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_52\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_53\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_54\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_55\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_56\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_57\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_58\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_59\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_60\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_61\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_62\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_63\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_64\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_65\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_66\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_67\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_68\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_69\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_70\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_71\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_72\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_73\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_74\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_75\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_76\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_77\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_78\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_79\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_80\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_81\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_82\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_83\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_84\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_85\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_86\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_87\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_88\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_89\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_90\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_91\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_92\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_10__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_11__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_12__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_13__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_14__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_18__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_19__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_3__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_4__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_5__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_7__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_8__0_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_9__0_n_0\ : STD_LOGIC; signal p_0_out : STD_LOGIC; signal \p_0_out_inferred__9/i__carry_n_1\ : STD_LOGIC; signal \p_0_out_inferred__9/i__carry_n_2\ : STD_LOGIC; signal \p_0_out_inferred__9/i__carry_n_3\ : STD_LOGIC; signal p_10_out : STD_LOGIC; signal p_10_out_carry_n_1 : STD_LOGIC; signal p_10_out_carry_n_2 : STD_LOGIC; signal p_10_out_carry_n_3 : STD_LOGIC; signal p_12_out : STD_LOGIC; signal p_12_out_carry_n_1 : STD_LOGIC; signal p_12_out_carry_n_2 : STD_LOGIC; signal p_12_out_carry_n_3 : STD_LOGIC; signal p_14_out : STD_LOGIC; signal p_14_out_carry_n_1 : STD_LOGIC; signal p_14_out_carry_n_2 : STD_LOGIC; signal p_14_out_carry_n_3 : STD_LOGIC; signal p_2_out : STD_LOGIC; signal p_2_out_carry_n_1 : STD_LOGIC; signal p_2_out_carry_n_2 : STD_LOGIC; signal p_2_out_carry_n_3 : STD_LOGIC; signal p_4_out : STD_LOGIC; signal p_4_out_carry_n_1 : STD_LOGIC; signal p_4_out_carry_n_2 : STD_LOGIC; signal p_4_out_carry_n_3 : STD_LOGIC; signal p_6_out : STD_LOGIC; signal p_6_out_carry_n_1 : STD_LOGIC; signal p_6_out_carry_n_2 : STD_LOGIC; signal p_6_out_carry_n_3 : STD_LOGIC; signal p_8_out : STD_LOGIC; signal p_8_out_carry_n_1 : STD_LOGIC; signal p_8_out_carry_n_2 : STD_LOGIC; signal p_8_out_carry_n_3 : STD_LOGIC; signal resp_select : STD_LOGIC_VECTOR ( 2 to 2 ); signal \^s_axi_rvalid\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \thread_valid_0__2\ : STD_LOGIC; signal \thread_valid_1__2\ : STD_LOGIC; signal \thread_valid_2__2\ : STD_LOGIC; signal \thread_valid_3__2\ : STD_LOGIC; signal \thread_valid_4__2\ : STD_LOGIC; signal \thread_valid_5__2\ : STD_LOGIC; signal \thread_valid_6__2\ : STD_LOGIC; signal \thread_valid_7__2\ : STD_LOGIC; signal NLW_aid_match_00_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_10_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_20_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_30_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_40_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_50_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_60_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_70_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \NLW_p_0_out_inferred__9/i__carry_O_UNCONNECTED\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_10_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_12_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_14_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_2_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_4_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_6_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_8_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_multi_thread.accept_cnt[0]_i_1\ : label is "soft_lutpair151"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1__0\ : label is "soft_lutpair143"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1__0\ : label is "soft_lutpair143"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2__0\ : label is "soft_lutpair142"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1__0\ : label is "soft_lutpair140"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2__0\ : label is "soft_lutpair140"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1__0\ : label is "soft_lutpair144"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1__0\ : label is "soft_lutpair145"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1__0\ : label is "soft_lutpair141"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2__0\ : label is "soft_lutpair141"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_2__0\ : label is "soft_lutpair142"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_3__0\ : label is "soft_lutpair144"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_4__0\ : label is "soft_lutpair145"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1__0\ : label is "soft_lutpair146"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1__0\ : label is "soft_lutpair133"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2__0\ : label is "soft_lutpair133"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1__0\ : label is "soft_lutpair147"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1__0\ : label is "soft_lutpair135"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2__0\ : label is "soft_lutpair135"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_3__0\ : label is "soft_lutpair146"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_4__0\ : label is "soft_lutpair147"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1__0\ : label is "soft_lutpair148"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1__0\ : label is "soft_lutpair139"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2__0\ : label is "soft_lutpair139"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1\ : label is "soft_lutpair149"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1__0\ : label is "soft_lutpair149"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1__0\ : label is "soft_lutpair136"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2__0\ : label is "soft_lutpair136"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_2__0\ : label is "soft_lutpair148"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_3__0\ : label is "soft_lutpair137"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1\ : label is "soft_lutpair150"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1__0\ : label is "soft_lutpair150"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1__0\ : label is "soft_lutpair134"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2__0\ : label is "soft_lutpair134"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_4__0\ : label is "soft_lutpair138"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_5__0\ : label is "soft_lutpair138"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_9__0\ : label is "soft_lutpair137"; attribute SOFT_HLUTNM of \gen_no_arbiter.s_ready_i[0]_i_14__0\ : label is "soft_lutpair151"; begin D(0) <= \^d\(0); s_axi_rvalid(0) <= \^s_axi_rvalid\(0); aid_match_00_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_00, CO(2) => aid_match_00_carry_n_1, CO(1) => aid_match_00_carry_n_2, CO(0) => aid_match_00_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_00_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_00_carry_i_1_n_0, S(2) => aid_match_00_carry_i_2_n_0, S(1) => aid_match_00_carry_i_3_n_0, S(0) => aid_match_00_carry_i_4_n_0 ); aid_match_00_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(11), O => aid_match_00_carry_i_1_n_0 ); aid_match_00_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(8), O => aid_match_00_carry_i_2_n_0 ); aid_match_00_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(5), O => aid_match_00_carry_i_3_n_0 ); aid_match_00_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(2), O => aid_match_00_carry_i_4_n_0 ); aid_match_10_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_10, CO(2) => aid_match_10_carry_n_1, CO(1) => aid_match_10_carry_n_2, CO(0) => aid_match_10_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_10_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_10_carry_i_1_n_0, S(2) => aid_match_10_carry_i_2_n_0, S(1) => aid_match_10_carry_i_3_n_0, S(0) => aid_match_10_carry_i_4_n_0 ); aid_match_10_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(9), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(11), I5 => \s_axi_arid[11]\(11), O => aid_match_10_carry_i_1_n_0 ); aid_match_10_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(6), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(8), I5 => \s_axi_arid[11]\(8), O => aid_match_10_carry_i_2_n_0 ); aid_match_10_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(3), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(5), I5 => \s_axi_arid[11]\(5), O => aid_match_10_carry_i_3_n_0 ); aid_match_10_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(0), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(2), I5 => \s_axi_arid[11]\(2), O => aid_match_10_carry_i_4_n_0 ); aid_match_20_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_20, CO(2) => aid_match_20_carry_n_1, CO(1) => aid_match_20_carry_n_2, CO(0) => aid_match_20_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_20_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_20_carry_i_1_n_0, S(2) => aid_match_20_carry_i_2_n_0, S(1) => aid_match_20_carry_i_3_n_0, S(0) => aid_match_20_carry_i_4_n_0 ); aid_match_20_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(11), O => aid_match_20_carry_i_1_n_0 ); aid_match_20_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(8), O => aid_match_20_carry_i_2_n_0 ); aid_match_20_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(5), O => aid_match_20_carry_i_3_n_0 ); aid_match_20_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(2), O => aid_match_20_carry_i_4_n_0 ); aid_match_30_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_30, CO(2) => aid_match_30_carry_n_1, CO(1) => aid_match_30_carry_n_2, CO(0) => aid_match_30_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_30_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_30_carry_i_1_n_0, S(2) => aid_match_30_carry_i_2_n_0, S(1) => aid_match_30_carry_i_3_n_0, S(0) => aid_match_30_carry_i_4_n_0 ); aid_match_30_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(11), O => aid_match_30_carry_i_1_n_0 ); aid_match_30_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(8), O => aid_match_30_carry_i_2_n_0 ); aid_match_30_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(5), O => aid_match_30_carry_i_3_n_0 ); aid_match_30_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(2), O => aid_match_30_carry_i_4_n_0 ); aid_match_40_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_40, CO(2) => aid_match_40_carry_n_1, CO(1) => aid_match_40_carry_n_2, CO(0) => aid_match_40_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_40_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_40_carry_i_1_n_0, S(2) => aid_match_40_carry_i_2_n_0, S(1) => aid_match_40_carry_i_3_n_0, S(0) => aid_match_40_carry_i_4_n_0 ); aid_match_40_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(11), O => aid_match_40_carry_i_1_n_0 ); aid_match_40_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(8), O => aid_match_40_carry_i_2_n_0 ); aid_match_40_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(5), O => aid_match_40_carry_i_3_n_0 ); aid_match_40_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(2), O => aid_match_40_carry_i_4_n_0 ); aid_match_50_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_50, CO(2) => aid_match_50_carry_n_1, CO(1) => aid_match_50_carry_n_2, CO(0) => aid_match_50_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_50_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_50_carry_i_1_n_0, S(2) => aid_match_50_carry_i_2_n_0, S(1) => aid_match_50_carry_i_3_n_0, S(0) => aid_match_50_carry_i_4_n_0 ); aid_match_50_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(11), O => aid_match_50_carry_i_1_n_0 ); aid_match_50_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(8), O => aid_match_50_carry_i_2_n_0 ); aid_match_50_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(5), O => aid_match_50_carry_i_3_n_0 ); aid_match_50_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(2), O => aid_match_50_carry_i_4_n_0 ); aid_match_60_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_60, CO(2) => aid_match_60_carry_n_1, CO(1) => aid_match_60_carry_n_2, CO(0) => aid_match_60_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_60_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_60_carry_i_1_n_0, S(2) => aid_match_60_carry_i_2_n_0, S(1) => aid_match_60_carry_i_3_n_0, S(0) => aid_match_60_carry_i_4_n_0 ); aid_match_60_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(11), O => aid_match_60_carry_i_1_n_0 ); aid_match_60_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(8), O => aid_match_60_carry_i_2_n_0 ); aid_match_60_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(5), O => aid_match_60_carry_i_3_n_0 ); aid_match_60_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(2), O => aid_match_60_carry_i_4_n_0 ); aid_match_70_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_70, CO(2) => aid_match_70_carry_n_1, CO(1) => aid_match_70_carry_n_2, CO(0) => aid_match_70_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_70_carry_O_UNCONNECTED(3 downto 0), S(3) => aid_match_70_carry_i_1_n_0, S(2) => aid_match_70_carry_i_2_n_0, S(1) => aid_match_70_carry_i_3_n_0, S(0) => aid_match_70_carry_i_4_n_0 ); aid_match_70_carry_i_1: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(10), I2 => \s_axi_arid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(9), I4 => \s_axi_arid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(11), O => aid_match_70_carry_i_1_n_0 ); aid_match_70_carry_i_2: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(7), I2 => \s_axi_arid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(6), I4 => \s_axi_arid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(8), O => aid_match_70_carry_i_2_n_0 ); aid_match_70_carry_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(4), I2 => \s_axi_arid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(3), I4 => \s_axi_arid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(5), O => aid_match_70_carry_i_3_n_0 ); aid_match_70_carry_i_4: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_arid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(1), I2 => \s_axi_arid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(0), I4 => \s_axi_arid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(2), O => aid_match_70_carry_i_4_n_0 ); \gen_multi_thread.accept_cnt[0]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \gen_multi_thread.accept_cnt_reg__0\(0), O => \gen_multi_thread.accept_cnt[0]_i_1_n_0\ ); \gen_multi_thread.accept_cnt_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_57\, D => \gen_multi_thread.accept_cnt[0]_i_1_n_0\, Q => \gen_multi_thread.accept_cnt_reg__0\(0), R => SR(0) ); \gen_multi_thread.accept_cnt_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_57\, D => \gen_multi_thread.mux_resp_multi_thread_n_60\, Q => \gen_multi_thread.accept_cnt_reg__0\(1), R => SR(0) ); \gen_multi_thread.accept_cnt_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_57\, D => \gen_multi_thread.mux_resp_multi_thread_n_59\, Q => \gen_multi_thread.accept_cnt_reg__0\(2), R => SR(0) ); \gen_multi_thread.accept_cnt_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_57\, D => \gen_multi_thread.mux_resp_multi_thread_n_58\, Q => \gen_multi_thread.accept_cnt_reg__0\(3), R => SR(0) ); \gen_multi_thread.arbiter_resp_inst\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp_8 port map ( Q(4 downto 0) => Q(4 downto 0), SR(0) => SR(0), aclk => aclk, f_mux4_return(46 downto 14) => f_mux4_return(47 downto 15), f_mux4_return(13 downto 0) => f_mux4_return(13 downto 0), \m_payload_i_reg[0]\(0) => \m_payload_i_reg[0]\(0), \m_payload_i_reg[0]_0\(0) => \m_payload_i_reg[0]_0\(0), \m_payload_i_reg[0]_1\(0) => \m_payload_i_reg[0]_1\(0), \m_payload_i_reg[0]_2\(0) => \m_payload_i_reg[0]_2\(0), \m_payload_i_reg[34]\(0) => \m_payload_i_reg[34]\(0), \m_payload_i_reg[34]_0\(0) => \m_payload_i_reg[34]_1\(0), \m_payload_i_reg[34]_1\(0) => \m_payload_i_reg[34]_2\(0), \m_payload_i_reg[34]_2\(0) => \m_payload_i_reg[34]_3\(0), \m_payload_i_reg[34]_3\(0) => \m_payload_i_reg[34]_4\(0), m_valid_i_reg => m_valid_i_reg, m_valid_i_reg_0 => m_valid_i_reg_0, p_102_out => p_102_out, p_122_out => p_122_out, p_40_out => p_40_out, p_62_out => p_62_out, p_82_out => p_82_out, resp_select(0) => resp_select(2), s_axi_rready(0) => s_axi_rready(0), s_axi_rvalid(0) => \^s_axi_rvalid\(0), st_mr_rid(47 downto 0) => st_mr_rid(47 downto 0), st_mr_rmesg(135 downto 0) => st_mr_rmesg(135 downto 0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(0), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(0), I1 => cmd_push_0, I2 => active_cnt(1), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_0, I1 => active_cnt(0), I2 => active_cnt(2), I3 => active_cnt(1), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(1), I1 => cmd_push_0, I2 => active_cnt(0), I3 => active_cnt(3), I4 => active_cnt(2), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_49\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1_n_0\, Q => active_cnt(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_49\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1__0_n_0\, Q => active_cnt(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_49\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1__0_n_0\, Q => active_cnt(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_49\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2__0_n_0\, Q => active_cnt(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_target[2]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"E222" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I1 => \thread_valid_0__2\, I2 => aid_match_00, I3 => S_AXI_ARREADY(0), O => cmd_push_0 ); \gen_multi_thread.gen_thread_loop[0].active_target_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_araddr[18]\, Q => active_target(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_target_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_araddr[25]\, Q => active_target(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[0].active_target_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \^d\(0), Q => active_target(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_1, I1 => active_cnt(8), I2 => active_cnt(10), I3 => active_cnt(9), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(9), I1 => cmd_push_1, I2 => active_cnt(8), I3 => active_cnt(11), I4 => active_cnt(10), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(8), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(8), I1 => cmd_push_1, I2 => active_cnt(9), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_56\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1__0_n_0\, Q => active_cnt(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[11]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_56\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2__0_n_0\, Q => active_cnt(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[8]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_56\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1_n_0\, Q => active_cnt(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[9]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_56\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1__0_n_0\, Q => active_cnt(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_target[10]_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"F8080808" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I1 => \thread_valid_0__2\, I2 => \thread_valid_1__2\, I3 => aid_match_10, I4 => S_AXI_ARREADY(0), O => cmd_push_1 ); \gen_multi_thread.gen_thread_loop[1].active_target_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \^d\(0), Q => active_target(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_araddr[18]\, Q => active_target(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[1].active_target_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_araddr[25]\, Q => active_target(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(16), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(16), I1 => cmd_push_2, I2 => active_cnt(17), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_2, I1 => active_cnt(16), I2 => active_cnt(18), I3 => active_cnt(17), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(17), I1 => cmd_push_2, I2 => active_cnt(16), I3 => active_cnt(19), I4 => active_cnt(18), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[16]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_55\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1_n_0\, Q => active_cnt(16), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[17]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_55\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1__0_n_0\, Q => active_cnt(17), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_55\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1__0_n_0\, Q => active_cnt(18), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[19]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_55\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2__0_n_0\, Q => active_cnt(19), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80008000800080" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I1 => \thread_valid_0__2\, I2 => \thread_valid_1__2\, I3 => \thread_valid_2__2\, I4 => aid_match_20, I5 => S_AXI_ARREADY(0), O => cmd_push_2 ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_2__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(2), I1 => active_cnt(3), I2 => active_cnt(1), I3 => active_cnt(0), O => \thread_valid_0__2\ ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_3__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(10), I1 => active_cnt(11), I2 => active_cnt(9), I3 => active_cnt(8), O => \thread_valid_1__2\ ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_4__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(18), I1 => active_cnt(19), I2 => active_cnt(17), I3 => active_cnt(16), O => \thread_valid_2__2\ ); \gen_multi_thread.gen_thread_loop[2].active_target_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_araddr[18]\, Q => active_target(16), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_target_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_araddr[25]\, Q => active_target(17), R => SR(0) ); \gen_multi_thread.gen_thread_loop[2].active_target_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \^d\(0), Q => active_target(18), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(24), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(24), I1 => cmd_push_3, I2 => active_cnt(25), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_3, I1 => active_cnt(24), I2 => active_cnt(26), I3 => active_cnt(25), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(25), I1 => cmd_push_3, I2 => active_cnt(24), I3 => active_cnt(27), I4 => active_cnt(26), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[24]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_50\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1_n_0\, Q => active_cnt(24), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[25]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_50\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1__0_n_0\, Q => active_cnt(25), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_50\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1__0_n_0\, Q => active_cnt(26), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[27]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_50\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2__0_n_0\, Q => active_cnt(27), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_target[26]_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"F4040404" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2__0_n_0\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I2 => \thread_valid_3__2\, I3 => aid_match_30, I4 => S_AXI_ARREADY(0), O => cmd_push_3 ); \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_araddr[18]\, Q => active_target(24), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_target_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_araddr[25]\, Q => active_target(25), R => SR(0) ); \gen_multi_thread.gen_thread_loop[3].active_target_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \^d\(0), Q => active_target(26), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(32), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(32), I1 => cmd_push_4, I2 => active_cnt(33), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_4, I1 => active_cnt(32), I2 => active_cnt(34), I3 => active_cnt(33), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(33), I1 => cmd_push_4, I2 => active_cnt(32), I3 => active_cnt(35), I4 => active_cnt(34), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[32]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_51\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1_n_0\, Q => active_cnt(32), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[33]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_51\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1__0_n_0\, Q => active_cnt(33), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_51\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1__0_n_0\, Q => active_cnt(34), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[35]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_51\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2__0_n_0\, Q => active_cnt(35), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[48]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[49]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[50]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[51]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[52]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[53]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[54]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[55]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[56]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[57]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FF40004000400040" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2__0_n_0\, I1 => \thread_valid_3__2\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I3 => \thread_valid_4__2\, I4 => aid_match_40, I5 => S_AXI_ARREADY(0), O => cmd_push_4 ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"55555557FFFFFFFF" ) port map ( I0 => \thread_valid_0__2\, I1 => active_cnt(10), I2 => active_cnt(11), I3 => active_cnt(9), I4 => active_cnt(8), I5 => \thread_valid_2__2\, O => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_3__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(26), I1 => active_cnt(27), I2 => active_cnt(25), I3 => active_cnt(24), O => \thread_valid_3__2\ ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_4__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(34), I1 => active_cnt(35), I2 => active_cnt(33), I3 => active_cnt(32), O => \thread_valid_4__2\ ); \gen_multi_thread.gen_thread_loop[4].active_target_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_araddr[18]\, Q => active_target(32), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_target_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_araddr[25]\, Q => active_target(33), R => SR(0) ); \gen_multi_thread.gen_thread_loop[4].active_target_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \^d\(0), Q => active_target(34), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(40), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(40), I1 => cmd_push_5, I2 => active_cnt(41), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_5, I1 => active_cnt(40), I2 => active_cnt(42), I3 => active_cnt(41), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(41), I1 => cmd_push_5, I2 => active_cnt(40), I3 => active_cnt(43), I4 => active_cnt(42), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[40]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_54\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1_n_0\, Q => active_cnt(40), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[41]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_54\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1__0_n_0\, Q => active_cnt(41), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_54\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1__0_n_0\, Q => active_cnt(42), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[43]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_54\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2__0_n_0\, Q => active_cnt(43), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[60]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[61]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[62]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[63]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[64]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[65]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[66]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[67]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[68]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[69]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_target[42]_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"F4040404" ) port map ( I0 => \accum_push_5__0\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I2 => \thread_valid_5__2\, I3 => aid_match_50, I4 => S_AXI_ARREADY(0), O => cmd_push_5 ); \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_araddr[18]\, Q => active_target(40), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_target_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_araddr[25]\, Q => active_target(41), R => SR(0) ); \gen_multi_thread.gen_thread_loop[5].active_target_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \^d\(0), Q => active_target(42), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(48), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(48), I1 => cmd_push_6, I2 => active_cnt(49), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_6, I1 => active_cnt(48), I2 => active_cnt(50), I3 => active_cnt(49), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(49), I1 => cmd_push_6, I2 => active_cnt(48), I3 => active_cnt(51), I4 => active_cnt(50), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[48]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_53\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1_n_0\, Q => active_cnt(48), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[49]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_53\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1__0_n_0\, Q => active_cnt(49), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_53\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1__0_n_0\, Q => active_cnt(50), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[51]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_53\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2__0_n_0\, Q => active_cnt(51), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[72]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[73]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[74]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[75]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[76]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[77]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[78]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[79]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[80]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[81]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FF40004000400040" ) port map ( I0 => \accum_push_5__0\, I1 => \thread_valid_5__2\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I3 => \thread_valid_6__2\, I4 => aid_match_60, I5 => S_AXI_ARREADY(0), O => cmd_push_6 ); \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_2__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(42), I1 => active_cnt(43), I2 => active_cnt(41), I3 => active_cnt(40), O => \thread_valid_5__2\ ); \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_3__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(50), I1 => active_cnt(51), I2 => active_cnt(49), I3 => active_cnt(48), O => \thread_valid_6__2\ ); \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_araddr[18]\, Q => active_target(48), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_target_reg[49]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_araddr[25]\, Q => active_target(49), R => SR(0) ); \gen_multi_thread.gen_thread_loop[6].active_target_reg[50]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \^d\(0), Q => active_target(50), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(56), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1__0\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(56), I1 => cmd_push_7, I2 => active_cnt(57), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1__0\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_7, I1 => active_cnt(56), I2 => active_cnt(58), I3 => active_cnt(57), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2__0\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(57), I1 => cmd_push_7, I2 => active_cnt(56), I3 => active_cnt(59), I4 => active_cnt(58), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_4__0\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(58), I1 => active_cnt(59), I2 => active_cnt(57), I3 => active_cnt(56), O => \thread_valid_7__2\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[56]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_52\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1_n_0\, Q => active_cnt(56), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[57]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_52\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1__0_n_0\, Q => active_cnt(57), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_52\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1__0_n_0\, Q => active_cnt(58), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[59]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_52\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2__0_n_0\, Q => active_cnt(59), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[84]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(0), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[85]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(1), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[86]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(2), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[87]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(3), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[88]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(4), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[89]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(5), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[90]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(6), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[91]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(7), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[92]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(8), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[93]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(9), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(10), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_arid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(11), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_1__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FF404040" ) port map ( I0 => \accum_push_5__0\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3__0_n_0\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\, I3 => \aid_match_7__0\, I4 => S_AXI_ARREADY(0), O => cmd_push_7 ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFFF55555557" ) port map ( I0 => \thread_valid_3__2\, I1 => active_cnt(34), I2 => active_cnt(35), I3 => active_cnt(33), I4 => active_cnt(32), I5 => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2__0_n_0\, O => \accum_push_5__0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => active_cnt(58), I1 => active_cnt(59), I2 => active_cnt(57), I3 => active_cnt(56), I4 => \thread_valid_6__2\, I5 => \thread_valid_5__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000002" ) port map ( I0 => S_AXI_ARREADY(0), I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6__0_n_0\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7__0_n_0\, I3 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8__0_n_0\, I4 => \aid_match_6__0\, I5 => \aid_match_7__0\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_5__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFE0000" ) port map ( I0 => active_cnt(56), I1 => active_cnt(57), I2 => active_cnt(59), I3 => active_cnt(58), I4 => aid_match_70, O => \aid_match_7__0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6__0\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => aid_match_00, I1 => \thread_valid_0__2\, I2 => aid_match_10, I3 => \thread_valid_1__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7__0\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => aid_match_20, I1 => \thread_valid_2__2\, I2 => aid_match_30, I3 => \thread_valid_3__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8__0\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => aid_match_40, I1 => \thread_valid_4__2\, I2 => aid_match_50, I3 => \thread_valid_5__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_9__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFE0000" ) port map ( I0 => active_cnt(48), I1 => active_cnt(49), I2 => active_cnt(51), I3 => active_cnt(50), I4 => aid_match_60, O => \aid_match_6__0\ ); \gen_multi_thread.gen_thread_loop[7].active_target_reg[56]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_araddr[18]\, Q => active_target(56), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_araddr[25]\, Q => active_target(57), R => SR(0) ); \gen_multi_thread.gen_thread_loop[7].active_target_reg[58]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \^d\(0), Q => active_target(58), R => SR(0) ); \gen_multi_thread.mux_resp_multi_thread\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc port map ( CO(0) => p_14_out, D(2) => \gen_multi_thread.mux_resp_multi_thread_n_58\, D(1) => \gen_multi_thread.mux_resp_multi_thread_n_59\, D(0) => \gen_multi_thread.mux_resp_multi_thread_n_60\, E(0) => E(0), Q(3 downto 0) => \gen_multi_thread.accept_cnt_reg__0\(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_61\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_62\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_63\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_64\, S_AXI_ARREADY(0) => S_AXI_ARREADY(0), aa_mi_arvalid => aa_mi_arvalid, aresetn_d => aresetn_d, cmd_push_0 => cmd_push_0, cmd_push_1 => cmd_push_1, cmd_push_2 => cmd_push_2, cmd_push_3 => cmd_push_3, cmd_push_4 => cmd_push_4, cmd_push_5 => cmd_push_5, cmd_push_6 => cmd_push_6, cmd_push_7 => cmd_push_7, f_mux4_return(46 downto 14) => f_mux4_return(47 downto 15), f_mux4_return(13 downto 0) => f_mux4_return(13 downto 0), \gen_master_slots[1].r_issuing_cnt_reg[8]\ => \gen_master_slots[1].r_issuing_cnt_reg[8]\, \gen_master_slots[4].r_issuing_cnt_reg[32]\ => \gen_master_slots[4].r_issuing_cnt_reg[32]\, \gen_multi_thread.accept_cnt_reg[0]\ => \gen_no_arbiter.s_ready_i[0]_i_14__0_n_0\, \gen_multi_thread.accept_cnt_reg[3]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_57\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_49\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_89\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_90\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_91\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_92\, \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[0].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_56\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_85\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_86\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_87\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_88\, \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\(0) => p_12_out, \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[1].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\ => \gen_no_arbiter.s_ready_i[0]_i_4__0_n_0\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_55\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_81\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_82\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_83\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_84\, \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\(0) => p_10_out, \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[2].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_50\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_77\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_78\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_79\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_80\, \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\(0) => p_8_out, \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[3].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\ => \gen_no_arbiter.s_ready_i[0]_i_3__0_n_0\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_51\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_73\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_74\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_75\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_76\, \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\(0) => p_6_out, \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[4].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_54\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_69\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_70\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_71\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_72\, \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\(0) => p_4_out, \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[5].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\ => \gen_no_arbiter.s_ready_i[0]_i_7__0_n_0\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_53\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_65\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_66\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_67\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_68\, \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\(0) => p_2_out, \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[6].active_id_reg__0\(11 downto 0), \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\ => \gen_no_arbiter.s_ready_i[0]_i_5__0_n_0\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_52\, \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\(0) => p_0_out, \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_id_reg__0\(11 downto 0), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_no_arbiter.s_ready_i_reg[0]\, \m_payload_i_reg[34]\(0) => \m_payload_i_reg[34]_0\(0), m_valid_i => m_valid_i, resp_select(0) => resp_select(2), s_axi_rdata(31 downto 0) => s_axi_rdata(31 downto 0), \s_axi_rid[0]\ => \s_axi_rid[0]\, \s_axi_rid[10]\ => \s_axi_rid[10]\, \s_axi_rid[11]\ => \s_axi_rid[11]\, \s_axi_rid[1]\ => \s_axi_rid[1]\, \s_axi_rid[2]\ => \s_axi_rid[2]\, \s_axi_rid[3]\ => \s_axi_rid[3]\, \s_axi_rid[4]\ => \s_axi_rid[4]\, \s_axi_rid[5]\ => \s_axi_rid[5]\, \s_axi_rid[6]\ => \s_axi_rid[6]\, \s_axi_rid[7]\ => \s_axi_rid[7]\, \s_axi_rid[8]\ => \s_axi_rid[8]\, \s_axi_rid[9]\ => \s_axi_rid[9]\, s_axi_rlast(0) => s_axi_rlast(0), s_axi_rready(0) => s_axi_rready(0), s_axi_rresp(1 downto 0) => s_axi_rresp(1 downto 0), s_axi_rvalid(0) => \^s_axi_rvalid\(0), st_mr_rid(11 downto 0) => st_mr_rid(59 downto 48), \thread_valid_0__2\ => \thread_valid_0__2\, \thread_valid_1__2\ => \thread_valid_1__2\, \thread_valid_2__2\ => \thread_valid_2__2\, \thread_valid_3__2\ => \thread_valid_3__2\, \thread_valid_4__2\ => \thread_valid_4__2\, \thread_valid_5__2\ => \thread_valid_5__2\, \thread_valid_6__2\ => \thread_valid_6__2\, \thread_valid_7__2\ => \thread_valid_7__2\ ); \gen_no_arbiter.m_target_hot_i[4]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => match, O => \^d\(0) ); \gen_no_arbiter.s_ready_i[0]_i_10__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(8), I1 => \s_axi_araddr[18]\, I2 => active_target(9), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(10), O => \gen_no_arbiter.s_ready_i[0]_i_10__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_11__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(0), I1 => \s_axi_araddr[18]\, I2 => active_target(1), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(2), O => \gen_no_arbiter.s_ready_i[0]_i_11__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_12__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(48), I1 => \s_axi_araddr[18]\, I2 => active_target(49), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(50), O => \gen_no_arbiter.s_ready_i[0]_i_12__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_13__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(56), I1 => \s_axi_araddr[18]\, I2 => active_target(57), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(58), O => \gen_no_arbiter.s_ready_i[0]_i_13__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_14__0\: unisim.vcomponents.LUT3 generic map( INIT => X"FE" ) port map ( I0 => \gen_multi_thread.accept_cnt_reg__0\(0), I1 => \gen_multi_thread.accept_cnt_reg__0\(2), I2 => \gen_multi_thread.accept_cnt_reg__0\(1), O => \gen_no_arbiter.s_ready_i[0]_i_14__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_18__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(40), I1 => \s_axi_araddr[18]\, I2 => active_target(41), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(42), O => \gen_no_arbiter.s_ready_i[0]_i_18__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_19__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(32), I1 => \s_axi_araddr[18]\, I2 => active_target(33), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(34), O => \gen_no_arbiter.s_ready_i[0]_i_19__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80808080808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_8__0_n_0\, I1 => \thread_valid_3__2\, I2 => aid_match_30, I3 => \gen_no_arbiter.s_ready_i[0]_i_9__0_n_0\, I4 => \thread_valid_2__2\, I5 => aid_match_20, O => \gen_no_arbiter.s_ready_i[0]_i_3__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80808080808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_10__0_n_0\, I1 => \thread_valid_1__2\, I2 => aid_match_10, I3 => \gen_no_arbiter.s_ready_i[0]_i_11__0_n_0\, I4 => \thread_valid_0__2\, I5 => aid_match_00, O => \gen_no_arbiter.s_ready_i[0]_i_4__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_5__0\: unisim.vcomponents.LUT5 generic map( INIT => X"FF808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_12__0_n_0\, I1 => \thread_valid_6__2\, I2 => aid_match_60, I3 => \gen_no_arbiter.s_ready_i[0]_i_13__0_n_0\, I4 => \aid_match_7__0\, O => \gen_no_arbiter.s_ready_i[0]_i_5__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_7__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80808080808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_18__0_n_0\, I1 => \thread_valid_5__2\, I2 => aid_match_50, I3 => \gen_no_arbiter.s_ready_i[0]_i_19__0_n_0\, I4 => \thread_valid_4__2\, I5 => aid_match_40, O => \gen_no_arbiter.s_ready_i[0]_i_7__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_8__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(24), I1 => \s_axi_araddr[18]\, I2 => active_target(25), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(26), O => \gen_no_arbiter.s_ready_i[0]_i_8__0_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_9__0\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(16), I1 => \s_axi_araddr[18]\, I2 => active_target(17), I3 => \s_axi_araddr[25]\, I4 => match, I5 => active_target(18), O => \gen_no_arbiter.s_ready_i[0]_i_9__0_n_0\ ); \p_0_out_inferred__9/i__carry\: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_0_out, CO(2) => \p_0_out_inferred__9/i__carry_n_1\, CO(1) => \p_0_out_inferred__9/i__carry_n_2\, CO(0) => \p_0_out_inferred__9/i__carry_n_3\, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => \NLW_p_0_out_inferred__9/i__carry_O_UNCONNECTED\(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_61\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_62\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_63\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_64\ ); p_10_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_10_out, CO(2) => p_10_out_carry_n_1, CO(1) => p_10_out_carry_n_2, CO(0) => p_10_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_10_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_81\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_82\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_83\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_84\ ); p_12_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_12_out, CO(2) => p_12_out_carry_n_1, CO(1) => p_12_out_carry_n_2, CO(0) => p_12_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_12_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_85\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_86\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_87\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_88\ ); p_14_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_14_out, CO(2) => p_14_out_carry_n_1, CO(1) => p_14_out_carry_n_2, CO(0) => p_14_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_14_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_89\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_90\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_91\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_92\ ); p_2_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_2_out, CO(2) => p_2_out_carry_n_1, CO(1) => p_2_out_carry_n_2, CO(0) => p_2_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_2_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_65\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_66\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_67\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_68\ ); p_4_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_4_out, CO(2) => p_4_out_carry_n_1, CO(1) => p_4_out_carry_n_2, CO(0) => p_4_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_4_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_69\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_70\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_71\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_72\ ); p_6_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_6_out, CO(2) => p_6_out_carry_n_1, CO(1) => p_6_out_carry_n_2, CO(0) => p_6_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_6_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_73\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_74\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_75\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_76\ ); p_8_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_8_out, CO(2) => p_8_out_carry_n_1, CO(1) => p_8_out_carry_n_2, CO(0) => p_8_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_8_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_77\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_78\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_79\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_80\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor__parameterized0\ is port ( \s_axi_bid[0]\ : out STD_LOGIC; \s_axi_bid[1]\ : out STD_LOGIC; \s_axi_bid[2]\ : out STD_LOGIC; \s_axi_bid[3]\ : out STD_LOGIC; \s_axi_bid[4]\ : out STD_LOGIC; \s_axi_bid[5]\ : out STD_LOGIC; \s_axi_bid[6]\ : out STD_LOGIC; \s_axi_bid[7]\ : out STD_LOGIC; \s_axi_bid[8]\ : out STD_LOGIC; \s_axi_bid[9]\ : out STD_LOGIC; \s_axi_bid[10]\ : out STD_LOGIC; \s_axi_bid[11]\ : out STD_LOGIC; s_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); E : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[2].w_issuing_cnt_reg[16]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[3].w_issuing_cnt_reg[24]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[0].w_issuing_cnt_reg[0]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); SR : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC_VECTOR ( 0 to 0 ); m_valid_i : out STD_LOGIC; D : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); Q : out STD_LOGIC_VECTOR ( 4 downto 0 ); st_mr_bid : in STD_LOGIC_VECTOR ( 59 downto 0 ); w_issuing_cnt : in STD_LOGIC_VECTOR ( 16 downto 0 ); p_84_in : in STD_LOGIC; p_66_in : in STD_LOGIC; p_48_in : in STD_LOGIC; p_101_in : in STD_LOGIC; aresetn_d : in STD_LOGIC; aa_sa_awvalid : in STD_LOGIC; st_aa_awtarget_enc : in STD_LOGIC_VECTOR ( 1 downto 0 ); match : in STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]_0\ : in STD_LOGIC; ADDRESS_HIT_3 : in STD_LOGIC; ADDRESS_HIT_1 : in STD_LOGIC; ADDRESS_HIT_0 : in STD_LOGIC; \gen_master_slots[2].w_issuing_cnt_reg[18]\ : in STD_LOGIC; sel_4 : in STD_LOGIC; \s_axi_awaddr[25]\ : in STD_LOGIC; sel_2 : in STD_LOGIC; \m_ready_d_reg[1]\ : in STD_LOGIC; s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); p_46_out : in STD_LOGIC; p_128_out : in STD_LOGIC; p_108_out : in STD_LOGIC; m_valid_i_reg : in STD_LOGIC; st_mr_bmesg : in STD_LOGIC_VECTOR ( 7 downto 0 ); p_68_out : in STD_LOGIC; p_88_out : in STD_LOGIC; m_valid_i_reg_0 : in STD_LOGIC; \s_axi_awid[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); aclk : in STD_LOGIC ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor__parameterized0\ : entity is "axi_crossbar_v2_1_14_si_transactor"; end \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor__parameterized0\; architecture STRUCTURE of \decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor__parameterized0\ is signal \^d\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^sr\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \accum_push_5__0\ : STD_LOGIC; signal active_cnt : STD_LOGIC_VECTOR ( 59 downto 0 ); signal active_target : STD_LOGIC_VECTOR ( 58 downto 0 ); signal aid_match_00 : STD_LOGIC; signal \aid_match_00_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_00_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_00_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_00_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_00_carry_n_1 : STD_LOGIC; signal aid_match_00_carry_n_2 : STD_LOGIC; signal aid_match_00_carry_n_3 : STD_LOGIC; signal aid_match_10 : STD_LOGIC; signal \aid_match_10_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_10_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_10_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_10_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_10_carry_n_1 : STD_LOGIC; signal aid_match_10_carry_n_2 : STD_LOGIC; signal aid_match_10_carry_n_3 : STD_LOGIC; signal aid_match_20 : STD_LOGIC; signal \aid_match_20_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_20_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_20_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_20_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_20_carry_n_1 : STD_LOGIC; signal aid_match_20_carry_n_2 : STD_LOGIC; signal aid_match_20_carry_n_3 : STD_LOGIC; signal aid_match_30 : STD_LOGIC; signal \aid_match_30_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_30_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_30_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_30_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_30_carry_n_1 : STD_LOGIC; signal aid_match_30_carry_n_2 : STD_LOGIC; signal aid_match_30_carry_n_3 : STD_LOGIC; signal aid_match_40 : STD_LOGIC; signal \aid_match_40_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_40_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_40_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_40_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_40_carry_n_1 : STD_LOGIC; signal aid_match_40_carry_n_2 : STD_LOGIC; signal aid_match_40_carry_n_3 : STD_LOGIC; signal aid_match_50 : STD_LOGIC; signal \aid_match_50_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_50_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_50_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_50_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_50_carry_n_1 : STD_LOGIC; signal aid_match_50_carry_n_2 : STD_LOGIC; signal aid_match_50_carry_n_3 : STD_LOGIC; signal aid_match_60 : STD_LOGIC; signal \aid_match_60_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_60_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_60_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_60_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_60_carry_n_1 : STD_LOGIC; signal aid_match_60_carry_n_2 : STD_LOGIC; signal aid_match_60_carry_n_3 : STD_LOGIC; signal \aid_match_6__0\ : STD_LOGIC; signal aid_match_70 : STD_LOGIC; signal \aid_match_70_carry_i_1__0_n_0\ : STD_LOGIC; signal \aid_match_70_carry_i_2__0_n_0\ : STD_LOGIC; signal \aid_match_70_carry_i_3__0_n_0\ : STD_LOGIC; signal \aid_match_70_carry_i_4__0_n_0\ : STD_LOGIC; signal aid_match_70_carry_n_1 : STD_LOGIC; signal aid_match_70_carry_n_2 : STD_LOGIC; signal aid_match_70_carry_n_3 : STD_LOGIC; signal \aid_match_7__0\ : STD_LOGIC; signal \any_pop__1\ : STD_LOGIC; signal cmd_push_0 : STD_LOGIC; signal cmd_push_1 : STD_LOGIC; signal cmd_push_2 : STD_LOGIC; signal cmd_push_3 : STD_LOGIC; signal cmd_push_4 : STD_LOGIC; signal cmd_push_5 : STD_LOGIC; signal cmd_push_6 : STD_LOGIC; signal cmd_push_7 : STD_LOGIC; signal f_mux4_return : STD_LOGIC_VECTOR ( 13 downto 0 ); signal \gen_multi_thread.accept_cnt[0]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.accept_cnt_reg\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[0].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[1].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[2].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[3].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[4].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[5].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[6].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1__0_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_id_reg\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7_n_0\ : STD_LOGIC; signal \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8_n_0\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_14\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_16\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_17\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_18\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_19\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_20\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_21\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_22\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_23\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_24\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_25\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_26\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_27\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_28\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_29\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_30\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_31\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_32\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_33\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_34\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_35\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_36\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_37\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_38\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_39\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_40\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_41\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_42\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_43\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_44\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_45\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_46\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_47\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_48\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_49\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_50\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_51\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_52\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_53\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_54\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_55\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_56\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_57\ : STD_LOGIC; signal \gen_multi_thread.mux_resp_multi_thread_n_58\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_10_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_11_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_12_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_13_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_14_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_18_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_19_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_3_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_4_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_5_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_7_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_8_n_0\ : STD_LOGIC; signal \gen_no_arbiter.s_ready_i[0]_i_9_n_0\ : STD_LOGIC; signal p_0_out : STD_LOGIC; signal \p_0_out_inferred__9/i__carry_n_1\ : STD_LOGIC; signal \p_0_out_inferred__9/i__carry_n_2\ : STD_LOGIC; signal \p_0_out_inferred__9/i__carry_n_3\ : STD_LOGIC; signal p_10_out : STD_LOGIC; signal p_10_out_carry_n_1 : STD_LOGIC; signal p_10_out_carry_n_2 : STD_LOGIC; signal p_10_out_carry_n_3 : STD_LOGIC; signal p_12_out : STD_LOGIC; signal p_12_out_carry_n_1 : STD_LOGIC; signal p_12_out_carry_n_2 : STD_LOGIC; signal p_12_out_carry_n_3 : STD_LOGIC; signal p_14_out : STD_LOGIC; signal p_14_out_carry_n_1 : STD_LOGIC; signal p_14_out_carry_n_2 : STD_LOGIC; signal p_14_out_carry_n_3 : STD_LOGIC; signal p_2_out : STD_LOGIC; signal p_2_out_carry_n_1 : STD_LOGIC; signal p_2_out_carry_n_2 : STD_LOGIC; signal p_2_out_carry_n_3 : STD_LOGIC; signal p_4_out : STD_LOGIC; signal p_4_out_carry_n_1 : STD_LOGIC; signal p_4_out_carry_n_2 : STD_LOGIC; signal p_4_out_carry_n_3 : STD_LOGIC; signal p_6_out : STD_LOGIC; signal p_6_out_carry_n_1 : STD_LOGIC; signal p_6_out_carry_n_2 : STD_LOGIC; signal p_6_out_carry_n_3 : STD_LOGIC; signal p_8_out : STD_LOGIC; signal p_8_out_carry_n_1 : STD_LOGIC; signal p_8_out_carry_n_2 : STD_LOGIC; signal p_8_out_carry_n_3 : STD_LOGIC; signal resp_select : STD_LOGIC_VECTOR ( 2 to 2 ); signal \^s_axi_bvalid\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \thread_valid_0__2\ : STD_LOGIC; signal \thread_valid_1__2\ : STD_LOGIC; signal \thread_valid_2__2\ : STD_LOGIC; signal \thread_valid_3__2\ : STD_LOGIC; signal \thread_valid_4__2\ : STD_LOGIC; signal \thread_valid_5__2\ : STD_LOGIC; signal \thread_valid_6__2\ : STD_LOGIC; signal \thread_valid_7__2\ : STD_LOGIC; signal NLW_aid_match_00_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_10_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_20_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_30_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_40_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_50_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_60_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_aid_match_70_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \NLW_p_0_out_inferred__9/i__carry_O_UNCONNECTED\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_10_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_12_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_14_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_2_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_4_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_6_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_p_8_out_carry_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \gen_multi_thread.accept_cnt[0]_i_1__0\ : label is "soft_lutpair177"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1\ : label is "soft_lutpair169"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1\ : label is "soft_lutpair169"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2\ : label is "soft_lutpair168"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1\ : label is "soft_lutpair166"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2\ : label is "soft_lutpair166"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1\ : label is "soft_lutpair170"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1\ : label is "soft_lutpair171"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1\ : label is "soft_lutpair167"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2\ : label is "soft_lutpair167"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_2\ : label is "soft_lutpair168"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_3\ : label is "soft_lutpair170"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_4\ : label is "soft_lutpair171"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1\ : label is "soft_lutpair172"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1\ : label is "soft_lutpair159"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2\ : label is "soft_lutpair159"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1\ : label is "soft_lutpair173"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1\ : label is "soft_lutpair161"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2\ : label is "soft_lutpair161"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_3\ : label is "soft_lutpair172"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_4\ : label is "soft_lutpair173"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1\ : label is "soft_lutpair174"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1\ : label is "soft_lutpair165"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2\ : label is "soft_lutpair165"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1__0\ : label is "soft_lutpair175"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1\ : label is "soft_lutpair175"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1\ : label is "soft_lutpair162"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2\ : label is "soft_lutpair162"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_2\ : label is "soft_lutpair174"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_3\ : label is "soft_lutpair163"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1__0\ : label is "soft_lutpair176"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1\ : label is "soft_lutpair176"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1\ : label is "soft_lutpair160"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2\ : label is "soft_lutpair160"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_4\ : label is "soft_lutpair164"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_5\ : label is "soft_lutpair164"; attribute SOFT_HLUTNM of \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_9\ : label is "soft_lutpair163"; attribute SOFT_HLUTNM of \gen_no_arbiter.s_ready_i[0]_i_14\ : label is "soft_lutpair177"; begin D(0) <= \^d\(0); SR(0) <= \^sr\(0); s_axi_bvalid(0) <= \^s_axi_bvalid\(0); aid_match_00_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_00, CO(2) => aid_match_00_carry_n_1, CO(1) => aid_match_00_carry_n_2, CO(0) => aid_match_00_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_00_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_00_carry_i_1__0_n_0\, S(2) => \aid_match_00_carry_i_2__0_n_0\, S(1) => \aid_match_00_carry_i_3__0_n_0\, S(0) => \aid_match_00_carry_i_4__0_n_0\ ); \aid_match_00_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(11), O => \aid_match_00_carry_i_1__0_n_0\ ); \aid_match_00_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(8), O => \aid_match_00_carry_i_2__0_n_0\ ); \aid_match_00_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(5), O => \aid_match_00_carry_i_3__0_n_0\ ); \aid_match_00_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(2), O => \aid_match_00_carry_i_4__0_n_0\ ); aid_match_10_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_10, CO(2) => aid_match_10_carry_n_1, CO(1) => aid_match_10_carry_n_2, CO(0) => aid_match_10_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_10_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_10_carry_i_1__0_n_0\, S(2) => \aid_match_10_carry_i_2__0_n_0\, S(1) => \aid_match_10_carry_i_3__0_n_0\, S(0) => \aid_match_10_carry_i_4__0_n_0\ ); \aid_match_10_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(9), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(11), I5 => \s_axi_awid[11]\(11), O => \aid_match_10_carry_i_1__0_n_0\ ); \aid_match_10_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(6), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(8), I5 => \s_axi_awid[11]\(8), O => \aid_match_10_carry_i_2__0_n_0\ ); \aid_match_10_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(3), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(5), I5 => \s_axi_awid[11]\(5), O => \aid_match_10_carry_i_3__0_n_0\ ); \aid_match_10_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(0), I4 => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(2), I5 => \s_axi_awid[11]\(2), O => \aid_match_10_carry_i_4__0_n_0\ ); aid_match_20_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_20, CO(2) => aid_match_20_carry_n_1, CO(1) => aid_match_20_carry_n_2, CO(0) => aid_match_20_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_20_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_20_carry_i_1__0_n_0\, S(2) => \aid_match_20_carry_i_2__0_n_0\, S(1) => \aid_match_20_carry_i_3__0_n_0\, S(0) => \aid_match_20_carry_i_4__0_n_0\ ); \aid_match_20_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(11), O => \aid_match_20_carry_i_1__0_n_0\ ); \aid_match_20_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(8), O => \aid_match_20_carry_i_2__0_n_0\ ); \aid_match_20_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(5), O => \aid_match_20_carry_i_3__0_n_0\ ); \aid_match_20_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(2), O => \aid_match_20_carry_i_4__0_n_0\ ); aid_match_30_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_30, CO(2) => aid_match_30_carry_n_1, CO(1) => aid_match_30_carry_n_2, CO(0) => aid_match_30_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_30_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_30_carry_i_1__0_n_0\, S(2) => \aid_match_30_carry_i_2__0_n_0\, S(1) => \aid_match_30_carry_i_3__0_n_0\, S(0) => \aid_match_30_carry_i_4__0_n_0\ ); \aid_match_30_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(11), O => \aid_match_30_carry_i_1__0_n_0\ ); \aid_match_30_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(8), O => \aid_match_30_carry_i_2__0_n_0\ ); \aid_match_30_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(5), O => \aid_match_30_carry_i_3__0_n_0\ ); \aid_match_30_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(2), O => \aid_match_30_carry_i_4__0_n_0\ ); aid_match_40_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_40, CO(2) => aid_match_40_carry_n_1, CO(1) => aid_match_40_carry_n_2, CO(0) => aid_match_40_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_40_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_40_carry_i_1__0_n_0\, S(2) => \aid_match_40_carry_i_2__0_n_0\, S(1) => \aid_match_40_carry_i_3__0_n_0\, S(0) => \aid_match_40_carry_i_4__0_n_0\ ); \aid_match_40_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(11), O => \aid_match_40_carry_i_1__0_n_0\ ); \aid_match_40_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(8), O => \aid_match_40_carry_i_2__0_n_0\ ); \aid_match_40_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(5), O => \aid_match_40_carry_i_3__0_n_0\ ); \aid_match_40_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(2), O => \aid_match_40_carry_i_4__0_n_0\ ); aid_match_50_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_50, CO(2) => aid_match_50_carry_n_1, CO(1) => aid_match_50_carry_n_2, CO(0) => aid_match_50_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_50_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_50_carry_i_1__0_n_0\, S(2) => \aid_match_50_carry_i_2__0_n_0\, S(1) => \aid_match_50_carry_i_3__0_n_0\, S(0) => \aid_match_50_carry_i_4__0_n_0\ ); \aid_match_50_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(11), O => \aid_match_50_carry_i_1__0_n_0\ ); \aid_match_50_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(8), O => \aid_match_50_carry_i_2__0_n_0\ ); \aid_match_50_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(5), O => \aid_match_50_carry_i_3__0_n_0\ ); \aid_match_50_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(2), O => \aid_match_50_carry_i_4__0_n_0\ ); aid_match_60_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_60, CO(2) => aid_match_60_carry_n_1, CO(1) => aid_match_60_carry_n_2, CO(0) => aid_match_60_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_60_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_60_carry_i_1__0_n_0\, S(2) => \aid_match_60_carry_i_2__0_n_0\, S(1) => \aid_match_60_carry_i_3__0_n_0\, S(0) => \aid_match_60_carry_i_4__0_n_0\ ); \aid_match_60_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(11), O => \aid_match_60_carry_i_1__0_n_0\ ); \aid_match_60_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(8), O => \aid_match_60_carry_i_2__0_n_0\ ); \aid_match_60_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(5), O => \aid_match_60_carry_i_3__0_n_0\ ); \aid_match_60_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(2), O => \aid_match_60_carry_i_4__0_n_0\ ); aid_match_70_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => aid_match_70, CO(2) => aid_match_70_carry_n_1, CO(1) => aid_match_70_carry_n_2, CO(0) => aid_match_70_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_aid_match_70_carry_O_UNCONNECTED(3 downto 0), S(3) => \aid_match_70_carry_i_1__0_n_0\, S(2) => \aid_match_70_carry_i_2__0_n_0\, S(1) => \aid_match_70_carry_i_3__0_n_0\, S(0) => \aid_match_70_carry_i_4__0_n_0\ ); \aid_match_70_carry_i_1__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(10), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(10), I2 => \s_axi_awid[11]\(9), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(9), I4 => \s_axi_awid[11]\(11), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(11), O => \aid_match_70_carry_i_1__0_n_0\ ); \aid_match_70_carry_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(7), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(7), I2 => \s_axi_awid[11]\(6), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(6), I4 => \s_axi_awid[11]\(8), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(8), O => \aid_match_70_carry_i_2__0_n_0\ ); \aid_match_70_carry_i_3__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(4), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(4), I2 => \s_axi_awid[11]\(3), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(3), I4 => \s_axi_awid[11]\(5), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(5), O => \aid_match_70_carry_i_3__0_n_0\ ); \aid_match_70_carry_i_4__0\: unisim.vcomponents.LUT6 generic map( INIT => X"9009000000009009" ) port map ( I0 => \s_axi_awid[11]\(1), I1 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(1), I2 => \s_axi_awid[11]\(0), I3 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(0), I4 => \s_axi_awid[11]\(2), I5 => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(2), O => \aid_match_70_carry_i_4__0_n_0\ ); \gen_multi_thread.accept_cnt[0]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => \gen_multi_thread.accept_cnt_reg\(0), O => \gen_multi_thread.accept_cnt[0]_i_1__0_n_0\ ); \gen_multi_thread.accept_cnt_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_23\, D => \gen_multi_thread.accept_cnt[0]_i_1__0_n_0\, Q => \gen_multi_thread.accept_cnt_reg\(0), R => \^sr\(0) ); \gen_multi_thread.accept_cnt_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_23\, D => \gen_multi_thread.mux_resp_multi_thread_n_26\, Q => \gen_multi_thread.accept_cnt_reg\(1), R => \^sr\(0) ); \gen_multi_thread.accept_cnt_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_23\, D => \gen_multi_thread.mux_resp_multi_thread_n_25\, Q => \gen_multi_thread.accept_cnt_reg\(2), R => \^sr\(0) ); \gen_multi_thread.accept_cnt_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_23\, D => \gen_multi_thread.mux_resp_multi_thread_n_24\, Q => \gen_multi_thread.accept_cnt_reg\(3), R => \^sr\(0) ); \gen_multi_thread.arbiter_resp_inst\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_arbiter_resp port map ( ADDRESS_HIT_0 => ADDRESS_HIT_0, ADDRESS_HIT_1 => ADDRESS_HIT_1, ADDRESS_HIT_3 => ADDRESS_HIT_3, E(0) => E(0), Q(0) => \gen_multi_thread.accept_cnt_reg\(3), SR(0) => \^sr\(0), aa_sa_awvalid => aa_sa_awvalid, aclk => aclk, \any_pop__1\ => \any_pop__1\, aresetn_d => aresetn_d, f_mux4_return(13 downto 0) => f_mux4_return(13 downto 0), \gen_master_slots[0].w_issuing_cnt_reg[0]\(0) => \gen_master_slots[0].w_issuing_cnt_reg[0]\(0), \gen_master_slots[2].w_issuing_cnt_reg[16]\(0) => \gen_master_slots[2].w_issuing_cnt_reg[16]\(0), \gen_master_slots[2].w_issuing_cnt_reg[18]\ => \gen_master_slots[2].w_issuing_cnt_reg[18]\, \gen_master_slots[3].w_issuing_cnt_reg[24]\(0) => \gen_master_slots[3].w_issuing_cnt_reg[24]\(0), \gen_multi_thread.accept_cnt_reg[0]\ => \gen_no_arbiter.s_ready_i[0]_i_14_n_0\, \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\ => \gen_no_arbiter.s_ready_i[0]_i_4_n_0\, \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\ => \gen_no_arbiter.s_ready_i[0]_i_3_n_0\, \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\ => \gen_no_arbiter.s_ready_i[0]_i_7_n_0\, \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\ => \gen_no_arbiter.s_ready_i[0]_i_5_n_0\, \gen_no_arbiter.s_ready_i_reg[0]\(0) => \gen_no_arbiter.s_ready_i_reg[0]\(0), \gen_no_arbiter.s_ready_i_reg[0]_0\ => \gen_no_arbiter.s_ready_i_reg[0]_0\, m_valid_i => m_valid_i, m_valid_i_reg => m_valid_i_reg, m_valid_i_reg_0 => m_valid_i_reg_0, match => match, p_101_in => p_101_in, p_108_out => p_108_out, p_128_out => p_128_out, p_46_out => p_46_out, p_48_in => p_48_in, p_66_in => p_66_in, p_68_out => p_68_out, p_84_in => p_84_in, p_88_out => p_88_out, resp_select(0) => resp_select(2), \s_axi_awaddr[25]\ => \s_axi_awaddr[25]\, s_axi_bready(0) => s_axi_bready(0), s_axi_bvalid(0) => \^s_axi_bvalid\(0), s_ready_i_reg(4 downto 0) => Q(4 downto 0), sel_2 => sel_2, sel_4 => sel_4, st_mr_bid(47 downto 0) => st_mr_bid(47 downto 0), st_mr_bmesg(7 downto 0) => st_mr_bmesg(7 downto 0), w_issuing_cnt(16 downto 0) => w_issuing_cnt(16 downto 0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(0), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(0), I1 => cmd_push_0, I2 => active_cnt(1), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_0, I1 => active_cnt(0), I2 => active_cnt(2), I3 => active_cnt(1), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(1), I1 => cmd_push_0, I2 => active_cnt(0), I3 => active_cnt(3), I4 => active_cnt(2), O => \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[0]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_14\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[0]_i_1__0_n_0\, Q => active_cnt(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_14\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[1]_i_1_n_0\, Q => active_cnt(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_14\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[2]_i_1_n_0\, Q => active_cnt(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_14\, D => \gen_multi_thread.gen_thread_loop[0].active_cnt[3]_i_2_n_0\, Q => active_cnt(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[4]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[5]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[6]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[7]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_id_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_target[2]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"E222" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I1 => \thread_valid_0__2\, I2 => aid_match_00, I3 => \m_ready_d_reg[1]\, O => cmd_push_0 ); \gen_multi_thread.gen_thread_loop[0].active_target_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => st_aa_awtarget_enc(0), Q => active_target(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_target_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => st_aa_awtarget_enc(1), Q => active_target(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[0].active_target_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_0, D => \^d\(0), Q => active_target(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_1, I1 => active_cnt(8), I2 => active_cnt(10), I3 => active_cnt(9), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(9), I1 => cmd_push_1, I2 => active_cnt(8), I3 => active_cnt(11), I4 => active_cnt(10), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(8), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(8), I1 => cmd_push_1, I2 => active_cnt(9), O => \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_22\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[10]_i_1_n_0\, Q => active_cnt(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[11]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_22\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[11]_i_2_n_0\, Q => active_cnt(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[8]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_22\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[8]_i_1__0_n_0\, Q => active_cnt(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[9]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_22\, D => \gen_multi_thread.gen_thread_loop[1].active_cnt[9]_i_1_n_0\, Q => active_cnt(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[12]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[13]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[14]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[15]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[20]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[21]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_target[10]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"F8080808" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I1 => \thread_valid_0__2\, I2 => \thread_valid_1__2\, I3 => aid_match_10, I4 => \m_ready_d_reg[1]\, O => cmd_push_1 ); \gen_multi_thread.gen_thread_loop[1].active_target_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => \^d\(0), Q => active_target(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_target_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => st_aa_awtarget_enc(0), Q => active_target(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[1].active_target_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_1, D => st_aa_awtarget_enc(1), Q => active_target(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(16), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(16), I1 => cmd_push_2, I2 => active_cnt(17), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_2, I1 => active_cnt(16), I2 => active_cnt(18), I3 => active_cnt(17), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(17), I1 => cmd_push_2, I2 => active_cnt(16), I3 => active_cnt(19), I4 => active_cnt(18), O => \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[16]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_21\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[16]_i_1__0_n_0\, Q => active_cnt(16), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[17]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_21\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[17]_i_1_n_0\, Q => active_cnt(17), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_21\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[18]_i_1_n_0\, Q => active_cnt(18), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[19]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_21\, D => \gen_multi_thread.gen_thread_loop[2].active_cnt[19]_i_2_n_0\, Q => active_cnt(19), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[28]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[29]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[30]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[31]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80008000800080" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I1 => \thread_valid_0__2\, I2 => \thread_valid_1__2\, I3 => \thread_valid_2__2\, I4 => aid_match_20, I5 => \m_ready_d_reg[1]\, O => cmd_push_2 ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(2), I1 => active_cnt(3), I2 => active_cnt(1), I3 => active_cnt(0), O => \thread_valid_0__2\ ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(10), I1 => active_cnt(11), I2 => active_cnt(9), I3 => active_cnt(8), O => \thread_valid_1__2\ ); \gen_multi_thread.gen_thread_loop[2].active_target[18]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(18), I1 => active_cnt(19), I2 => active_cnt(17), I3 => active_cnt(16), O => \thread_valid_2__2\ ); \gen_multi_thread.gen_thread_loop[2].active_target_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => st_aa_awtarget_enc(0), Q => active_target(16), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_target_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => st_aa_awtarget_enc(1), Q => active_target(17), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[2].active_target_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_2, D => \^d\(0), Q => active_target(18), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(24), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(24), I1 => cmd_push_3, I2 => active_cnt(25), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_3, I1 => active_cnt(24), I2 => active_cnt(26), I3 => active_cnt(25), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(25), I1 => cmd_push_3, I2 => active_cnt(24), I3 => active_cnt(27), I4 => active_cnt(26), O => \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[24]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_16\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[24]_i_1__0_n_0\, Q => active_cnt(24), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[25]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_16\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[25]_i_1_n_0\, Q => active_cnt(25), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_16\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[26]_i_1_n_0\, Q => active_cnt(26), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[27]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_16\, D => \gen_multi_thread.gen_thread_loop[3].active_cnt[27]_i_2_n_0\, Q => active_cnt(27), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[36]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[37]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[38]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[39]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[43]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[44]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[45]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_target[26]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"F4040404" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2_n_0\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I2 => \thread_valid_3__2\, I3 => aid_match_30, I4 => \m_ready_d_reg[1]\, O => cmd_push_3 ); \gen_multi_thread.gen_thread_loop[3].active_target_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => st_aa_awtarget_enc(0), Q => active_target(24), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_target_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => st_aa_awtarget_enc(1), Q => active_target(25), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[3].active_target_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_3, D => \^d\(0), Q => active_target(26), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(32), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(32), I1 => cmd_push_4, I2 => active_cnt(33), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_4, I1 => active_cnt(32), I2 => active_cnt(34), I3 => active_cnt(33), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(33), I1 => cmd_push_4, I2 => active_cnt(32), I3 => active_cnt(35), I4 => active_cnt(34), O => \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[32]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_17\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[32]_i_1__0_n_0\, Q => active_cnt(32), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[33]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_17\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[33]_i_1_n_0\, Q => active_cnt(33), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_17\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[34]_i_1_n_0\, Q => active_cnt(34), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[35]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_17\, D => \gen_multi_thread.gen_thread_loop[4].active_cnt[35]_i_2_n_0\, Q => active_cnt(35), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[48]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[49]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[50]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[51]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[52]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[53]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[54]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[55]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[56]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[57]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FF40004000400040" ) port map ( I0 => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2_n_0\, I1 => \thread_valid_3__2\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I3 => \thread_valid_4__2\, I4 => aid_match_40, I5 => \m_ready_d_reg[1]\, O => cmd_push_4 ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"55555557FFFFFFFF" ) port map ( I0 => \thread_valid_0__2\, I1 => active_cnt(10), I2 => active_cnt(11), I3 => active_cnt(9), I4 => active_cnt(8), I5 => \thread_valid_2__2\, O => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(26), I1 => active_cnt(27), I2 => active_cnt(25), I3 => active_cnt(24), O => \thread_valid_3__2\ ); \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(34), I1 => active_cnt(35), I2 => active_cnt(33), I3 => active_cnt(32), O => \thread_valid_4__2\ ); \gen_multi_thread.gen_thread_loop[4].active_target_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => st_aa_awtarget_enc(0), Q => active_target(32), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_target_reg[33]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => st_aa_awtarget_enc(1), Q => active_target(33), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[4].active_target_reg[34]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_4, D => \^d\(0), Q => active_target(34), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(40), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(40), I1 => cmd_push_5, I2 => active_cnt(41), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_5, I1 => active_cnt(40), I2 => active_cnt(42), I3 => active_cnt(41), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(41), I1 => cmd_push_5, I2 => active_cnt(40), I3 => active_cnt(43), I4 => active_cnt(42), O => \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[40]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_20\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[40]_i_1__0_n_0\, Q => active_cnt(40), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[41]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_20\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[41]_i_1_n_0\, Q => active_cnt(41), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_20\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[42]_i_1_n_0\, Q => active_cnt(42), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[43]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_20\, D => \gen_multi_thread.gen_thread_loop[5].active_cnt[43]_i_2_n_0\, Q => active_cnt(43), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[60]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[61]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[62]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[63]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[64]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[65]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[66]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[67]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[68]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[69]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_target[42]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"F4040404" ) port map ( I0 => \accum_push_5__0\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I2 => \thread_valid_5__2\, I3 => aid_match_50, I4 => \m_ready_d_reg[1]\, O => cmd_push_5 ); \gen_multi_thread.gen_thread_loop[5].active_target_reg[40]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => st_aa_awtarget_enc(0), Q => active_target(40), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_target_reg[41]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => st_aa_awtarget_enc(1), Q => active_target(41), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[5].active_target_reg[42]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_5, D => \^d\(0), Q => active_target(42), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(48), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(48), I1 => cmd_push_6, I2 => active_cnt(49), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_6, I1 => active_cnt(48), I2 => active_cnt(50), I3 => active_cnt(49), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(49), I1 => cmd_push_6, I2 => active_cnt(48), I3 => active_cnt(51), I4 => active_cnt(50), O => \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[48]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_19\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[48]_i_1__0_n_0\, Q => active_cnt(48), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[49]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_19\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[49]_i_1_n_0\, Q => active_cnt(49), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_19\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[50]_i_1_n_0\, Q => active_cnt(50), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[51]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_19\, D => \gen_multi_thread.gen_thread_loop[6].active_cnt[51]_i_2_n_0\, Q => active_cnt(51), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[72]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[73]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[74]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[75]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[76]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[77]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[78]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[79]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[80]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[81]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FF40004000400040" ) port map ( I0 => \accum_push_5__0\, I1 => \thread_valid_5__2\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I3 => \thread_valid_6__2\, I4 => aid_match_60, I5 => \m_ready_d_reg[1]\, O => cmd_push_6 ); \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_2\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(42), I1 => active_cnt(43), I2 => active_cnt(41), I3 => active_cnt(40), O => \thread_valid_5__2\ ); \gen_multi_thread.gen_thread_loop[6].active_target[50]_i_3\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(50), I1 => active_cnt(51), I2 => active_cnt(49), I3 => active_cnt(48), O => \thread_valid_6__2\ ); \gen_multi_thread.gen_thread_loop[6].active_target_reg[48]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => st_aa_awtarget_enc(0), Q => active_target(48), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_target_reg[49]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => st_aa_awtarget_enc(1), Q => active_target(49), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[6].active_target_reg[50]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_6, D => \^d\(0), Q => active_target(50), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1__0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => active_cnt(56), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1__0_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1\: unisim.vcomponents.LUT3 generic map( INIT => X"69" ) port map ( I0 => active_cnt(56), I1 => cmd_push_7, I2 => active_cnt(57), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"78E1" ) port map ( I0 => cmd_push_7, I1 => active_cnt(56), I2 => active_cnt(58), I3 => active_cnt(57), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"7F80FE01" ) port map ( I0 => active_cnt(57), I1 => cmd_push_7, I2 => active_cnt(56), I3 => active_cnt(59), I4 => active_cnt(58), O => \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_4\: unisim.vcomponents.LUT4 generic map( INIT => X"FFFE" ) port map ( I0 => active_cnt(58), I1 => active_cnt(59), I2 => active_cnt(57), I3 => active_cnt(56), O => \thread_valid_7__2\ ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[56]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_18\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[56]_i_1__0_n_0\, Q => active_cnt(56), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[57]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_18\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[57]_i_1_n_0\, Q => active_cnt(57), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_18\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[58]_i_1_n_0\, Q => active_cnt(58), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[59]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \gen_multi_thread.mux_resp_multi_thread_n_18\, D => \gen_multi_thread.gen_thread_loop[7].active_cnt[59]_i_2_n_0\, Q => active_cnt(59), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[84]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(0), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(0), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[85]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(1), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(1), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[86]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(2), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(2), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[87]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(3), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(3), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[88]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(4), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(4), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[89]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(5), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(5), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[90]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(6), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(6), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[91]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(7), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(7), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[92]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(8), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(8), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[93]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(9), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(9), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(10), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(10), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \s_axi_awid[11]\(11), Q => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(11), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"FF404040" ) port map ( I0 => \accum_push_5__0\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3_n_0\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\, I3 => \aid_match_7__0\, I4 => \m_ready_d_reg[1]\, O => cmd_push_7 ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFFFFF55555557" ) port map ( I0 => \thread_valid_3__2\, I1 => active_cnt(34), I2 => active_cnt(35), I3 => active_cnt(33), I4 => active_cnt(32), I5 => \gen_multi_thread.gen_thread_loop[4].active_target[34]_i_2_n_0\, O => \accum_push_5__0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"0001000000000000" ) port map ( I0 => active_cnt(58), I1 => active_cnt(59), I2 => active_cnt(57), I3 => active_cnt(56), I4 => \thread_valid_6__2\, I5 => \thread_valid_5__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_3_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000002" ) port map ( I0 => \m_ready_d_reg[1]\, I1 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6_n_0\, I2 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7_n_0\, I3 => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8_n_0\, I4 => \aid_match_6__0\, I5 => \aid_match_7__0\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_4_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_5\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFE0000" ) port map ( I0 => active_cnt(56), I1 => active_cnt(57), I2 => active_cnt(59), I3 => active_cnt(58), I4 => aid_match_70, O => \aid_match_7__0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => aid_match_00, I1 => \thread_valid_0__2\, I2 => aid_match_10, I3 => \thread_valid_1__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_6_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => aid_match_20, I1 => \thread_valid_2__2\, I2 => aid_match_30, I3 => \thread_valid_3__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_7_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8\: unisim.vcomponents.LUT4 generic map( INIT => X"F888" ) port map ( I0 => aid_match_40, I1 => \thread_valid_4__2\, I2 => aid_match_50, I3 => \thread_valid_5__2\, O => \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_8_n_0\ ); \gen_multi_thread.gen_thread_loop[7].active_target[58]_i_9\: unisim.vcomponents.LUT5 generic map( INIT => X"FFFE0000" ) port map ( I0 => active_cnt(48), I1 => active_cnt(49), I2 => active_cnt(51), I3 => active_cnt(50), I4 => aid_match_60, O => \aid_match_6__0\ ); \gen_multi_thread.gen_thread_loop[7].active_target_reg[56]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => st_aa_awtarget_enc(0), Q => active_target(56), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => st_aa_awtarget_enc(1), Q => active_target(57), R => \^sr\(0) ); \gen_multi_thread.gen_thread_loop[7].active_target_reg[58]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => cmd_push_7, D => \^d\(0), Q => active_target(58), R => \^sr\(0) ); \gen_multi_thread.mux_resp_multi_thread\: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_generic_baseblocks_v2_1_0_mux_enc__parameterized0\ port map ( CO(0) => p_14_out, D(2) => \gen_multi_thread.mux_resp_multi_thread_n_24\, D(1) => \gen_multi_thread.mux_resp_multi_thread_n_25\, D(0) => \gen_multi_thread.mux_resp_multi_thread_n_26\, E(0) => \gen_multi_thread.mux_resp_multi_thread_n_14\, Q(3 downto 0) => \gen_multi_thread.accept_cnt_reg\(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_27\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_28\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_29\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_30\, \any_pop__1\ => \any_pop__1\, cmd_push_0 => cmd_push_0, cmd_push_1 => cmd_push_1, cmd_push_2 => cmd_push_2, cmd_push_3 => cmd_push_3, cmd_push_4 => cmd_push_4, cmd_push_5 => cmd_push_5, cmd_push_6 => cmd_push_6, cmd_push_7 => cmd_push_7, f_mux4_return(13 downto 0) => f_mux4_return(13 downto 0), \gen_multi_thread.accept_cnt_reg[3]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_23\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(3) => \gen_multi_thread.mux_resp_multi_thread_n_55\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(2) => \gen_multi_thread.mux_resp_multi_thread_n_56\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(1) => \gen_multi_thread.mux_resp_multi_thread_n_57\, \gen_multi_thread.gen_thread_loop[0].active_cnt_reg[2]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_58\, \gen_multi_thread.gen_thread_loop[0].active_id_reg[11]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[0].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_22\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_51\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_52\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_53\, \gen_multi_thread.gen_thread_loop[1].active_cnt_reg[10]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_54\, \gen_multi_thread.gen_thread_loop[1].active_id_reg[22]\(0) => p_12_out, \gen_multi_thread.gen_thread_loop[1].active_id_reg[23]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[1].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_21\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_47\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_48\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_49\, \gen_multi_thread.gen_thread_loop[2].active_cnt_reg[18]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_50\, \gen_multi_thread.gen_thread_loop[2].active_id_reg[34]\(0) => p_10_out, \gen_multi_thread.gen_thread_loop[2].active_id_reg[35]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[2].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_16\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_43\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_44\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_45\, \gen_multi_thread.gen_thread_loop[3].active_cnt_reg[26]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_46\, \gen_multi_thread.gen_thread_loop[3].active_id_reg[46]\(0) => p_8_out, \gen_multi_thread.gen_thread_loop[3].active_id_reg[47]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[3].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_17\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_39\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_40\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_41\, \gen_multi_thread.gen_thread_loop[4].active_cnt_reg[34]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_42\, \gen_multi_thread.gen_thread_loop[4].active_id_reg[58]\(0) => p_6_out, \gen_multi_thread.gen_thread_loop[4].active_id_reg[59]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[4].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_20\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_35\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_36\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_37\, \gen_multi_thread.gen_thread_loop[5].active_cnt_reg[42]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_38\, \gen_multi_thread.gen_thread_loop[5].active_id_reg[70]\(0) => p_4_out, \gen_multi_thread.gen_thread_loop[5].active_id_reg[71]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[5].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_19\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(3) => \gen_multi_thread.mux_resp_multi_thread_n_31\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(2) => \gen_multi_thread.mux_resp_multi_thread_n_32\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(1) => \gen_multi_thread.mux_resp_multi_thread_n_33\, \gen_multi_thread.gen_thread_loop[6].active_cnt_reg[50]_0\(0) => \gen_multi_thread.mux_resp_multi_thread_n_34\, \gen_multi_thread.gen_thread_loop[6].active_id_reg[82]\(0) => p_2_out, \gen_multi_thread.gen_thread_loop[6].active_id_reg[83]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[6].active_id_reg\(11 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0) => \gen_multi_thread.mux_resp_multi_thread_n_18\, \gen_multi_thread.gen_thread_loop[7].active_id_reg[94]\(0) => p_0_out, \gen_multi_thread.gen_thread_loop[7].active_id_reg[95]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_id_reg\(11 downto 0), \m_ready_d_reg[1]\ => \m_ready_d_reg[1]\, resp_select(0) => resp_select(2), \s_axi_bid[0]\ => \s_axi_bid[0]\, \s_axi_bid[10]\ => \s_axi_bid[10]\, \s_axi_bid[11]\ => \s_axi_bid[11]\, \s_axi_bid[1]\ => \s_axi_bid[1]\, \s_axi_bid[2]\ => \s_axi_bid[2]\, \s_axi_bid[3]\ => \s_axi_bid[3]\, \s_axi_bid[4]\ => \s_axi_bid[4]\, \s_axi_bid[5]\ => \s_axi_bid[5]\, \s_axi_bid[6]\ => \s_axi_bid[6]\, \s_axi_bid[7]\ => \s_axi_bid[7]\, \s_axi_bid[8]\ => \s_axi_bid[8]\, \s_axi_bid[9]\ => \s_axi_bid[9]\, s_axi_bready(0) => s_axi_bready(0), s_axi_bresp(1 downto 0) => s_axi_bresp(1 downto 0), s_axi_bvalid(0) => \^s_axi_bvalid\(0), st_mr_bid(11 downto 0) => st_mr_bid(59 downto 48), \thread_valid_0__2\ => \thread_valid_0__2\, \thread_valid_1__2\ => \thread_valid_1__2\, \thread_valid_2__2\ => \thread_valid_2__2\, \thread_valid_3__2\ => \thread_valid_3__2\, \thread_valid_4__2\ => \thread_valid_4__2\, \thread_valid_5__2\ => \thread_valid_5__2\, \thread_valid_6__2\ => \thread_valid_6__2\, \thread_valid_7__2\ => \thread_valid_7__2\ ); \gen_no_arbiter.m_target_hot_i[4]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => match, O => \^d\(0) ); \gen_no_arbiter.s_ready_i[0]_i_10\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(8), I1 => st_aa_awtarget_enc(0), I2 => active_target(9), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(10), O => \gen_no_arbiter.s_ready_i[0]_i_10_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_11\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(0), I1 => st_aa_awtarget_enc(0), I2 => active_target(1), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(2), O => \gen_no_arbiter.s_ready_i[0]_i_11_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_12\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(48), I1 => st_aa_awtarget_enc(0), I2 => active_target(49), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(50), O => \gen_no_arbiter.s_ready_i[0]_i_12_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_13\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(56), I1 => st_aa_awtarget_enc(0), I2 => active_target(57), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(58), O => \gen_no_arbiter.s_ready_i[0]_i_13_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_14\: unisim.vcomponents.LUT3 generic map( INIT => X"FE" ) port map ( I0 => \gen_multi_thread.accept_cnt_reg\(0), I1 => \gen_multi_thread.accept_cnt_reg\(2), I2 => \gen_multi_thread.accept_cnt_reg\(1), O => \gen_no_arbiter.s_ready_i[0]_i_14_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_18\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(40), I1 => st_aa_awtarget_enc(0), I2 => active_target(41), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(42), O => \gen_no_arbiter.s_ready_i[0]_i_18_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_19\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(32), I1 => st_aa_awtarget_enc(0), I2 => active_target(33), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(34), O => \gen_no_arbiter.s_ready_i[0]_i_19_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_3\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80808080808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_8_n_0\, I1 => \thread_valid_3__2\, I2 => aid_match_30, I3 => \gen_no_arbiter.s_ready_i[0]_i_9_n_0\, I4 => \thread_valid_2__2\, I5 => aid_match_20, O => \gen_no_arbiter.s_ready_i[0]_i_3_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_4\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80808080808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_10_n_0\, I1 => \thread_valid_1__2\, I2 => aid_match_10, I3 => \gen_no_arbiter.s_ready_i[0]_i_11_n_0\, I4 => \thread_valid_0__2\, I5 => aid_match_00, O => \gen_no_arbiter.s_ready_i[0]_i_4_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_5\: unisim.vcomponents.LUT5 generic map( INIT => X"FF808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_12_n_0\, I1 => \thread_valid_6__2\, I2 => aid_match_60, I3 => \gen_no_arbiter.s_ready_i[0]_i_13_n_0\, I4 => \aid_match_7__0\, O => \gen_no_arbiter.s_ready_i[0]_i_5_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_7\: unisim.vcomponents.LUT6 generic map( INIT => X"FF80808080808080" ) port map ( I0 => \gen_no_arbiter.s_ready_i[0]_i_18_n_0\, I1 => \thread_valid_5__2\, I2 => aid_match_50, I3 => \gen_no_arbiter.s_ready_i[0]_i_19_n_0\, I4 => \thread_valid_4__2\, I5 => aid_match_40, O => \gen_no_arbiter.s_ready_i[0]_i_7_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_8\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(24), I1 => st_aa_awtarget_enc(0), I2 => active_target(25), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(26), O => \gen_no_arbiter.s_ready_i[0]_i_8_n_0\ ); \gen_no_arbiter.s_ready_i[0]_i_9\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFF6FF66FF6FFFF" ) port map ( I0 => active_target(16), I1 => st_aa_awtarget_enc(0), I2 => active_target(17), I3 => st_aa_awtarget_enc(1), I4 => match, I5 => active_target(18), O => \gen_no_arbiter.s_ready_i[0]_i_9_n_0\ ); \p_0_out_inferred__9/i__carry\: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_0_out, CO(2) => \p_0_out_inferred__9/i__carry_n_1\, CO(1) => \p_0_out_inferred__9/i__carry_n_2\, CO(0) => \p_0_out_inferred__9/i__carry_n_3\, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => \NLW_p_0_out_inferred__9/i__carry_O_UNCONNECTED\(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_27\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_28\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_29\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_30\ ); p_10_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_10_out, CO(2) => p_10_out_carry_n_1, CO(1) => p_10_out_carry_n_2, CO(0) => p_10_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_10_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_47\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_48\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_49\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_50\ ); p_12_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_12_out, CO(2) => p_12_out_carry_n_1, CO(1) => p_12_out_carry_n_2, CO(0) => p_12_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_12_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_51\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_52\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_53\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_54\ ); p_14_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_14_out, CO(2) => p_14_out_carry_n_1, CO(1) => p_14_out_carry_n_2, CO(0) => p_14_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_14_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_55\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_56\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_57\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_58\ ); p_2_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_2_out, CO(2) => p_2_out_carry_n_1, CO(1) => p_2_out_carry_n_2, CO(0) => p_2_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_2_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_31\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_32\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_33\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_34\ ); p_4_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_4_out, CO(2) => p_4_out_carry_n_1, CO(1) => p_4_out_carry_n_2, CO(0) => p_4_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_4_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_35\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_36\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_37\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_38\ ); p_6_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_6_out, CO(2) => p_6_out_carry_n_1, CO(1) => p_6_out_carry_n_2, CO(0) => p_6_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_6_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_39\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_40\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_41\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_42\ ); p_8_out_carry: unisim.vcomponents.CARRY4 port map ( CI => '0', CO(3) => p_8_out, CO(2) => p_8_out_carry_n_1, CO(1) => p_8_out_carry_n_2, CO(0) => p_8_out_carry_n_3, CYINIT => '1', DI(3 downto 0) => B"0000", O(3 downto 0) => NLW_p_8_out_carry_O_UNCONNECTED(3 downto 0), S(3) => \gen_multi_thread.mux_resp_multi_thread_n_43\, S(2) => \gen_multi_thread.mux_resp_multi_thread_n_44\, S(1) => \gen_multi_thread.mux_resp_multi_thread_n_45\, S(0) => \gen_multi_thread.mux_resp_multi_thread_n_46\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_axic_reg_srl_fifo is port ( ss_wr_awready : out STD_LOGIC; m_axi_wvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_wready : out STD_LOGIC_VECTOR ( 0 to 0 ); \write_cs0__0\ : out STD_LOGIC; st_aa_awtarget_enc : in STD_LOGIC_VECTOR ( 1 downto 0 ); aclk : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 0 to 0 ); SR : in STD_LOGIC_VECTOR ( 0 to 0 ); match : in STD_LOGIC; m_ready_d : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_wready : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_22_in : in STD_LOGIC; ss_wr_awvalid : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_axic_reg_srl_fifo; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_axic_reg_srl_fifo is signal \/FSM_onehot_state[1]_i_1_n_0\ : STD_LOGIC; signal \/FSM_onehot_state[2]_i_1_n_0\ : STD_LOGIC; signal \FSM_onehot_state[0]_i_1_n_0\ : STD_LOGIC; signal \FSM_onehot_state[3]_i_2_n_0\ : STD_LOGIC; signal \FSM_onehot_state_reg_n_0_[2]\ : STD_LOGIC; attribute RTL_KEEP : string; attribute RTL_KEEP of \FSM_onehot_state_reg_n_0_[2]\ : signal is "yes"; signal \FSM_onehot_state_reg_n_0_[3]\ : STD_LOGIC; attribute RTL_KEEP of \FSM_onehot_state_reg_n_0_[3]\ : signal is "yes"; signal areset_d1 : STD_LOGIC; signal fifoaddr : STD_LOGIC_VECTOR ( 2 downto 0 ); signal \gen_rep[0].fifoaddr[0]_i_1_n_0\ : STD_LOGIC; signal \gen_rep[0].fifoaddr[1]_i_1_n_0\ : STD_LOGIC; signal \gen_rep[0].fifoaddr[2]_i_1_n_0\ : STD_LOGIC; signal \gen_srls[0].gen_rep[0].srl_nx1_n_0\ : STD_LOGIC; signal \gen_srls[0].gen_rep[2].srl_nx1_n_1\ : STD_LOGIC; signal load_s1 : STD_LOGIC; signal \m_aready0__3\ : STD_LOGIC; signal \m_aready__1\ : STD_LOGIC; signal m_avalid : STD_LOGIC; signal m_select_enc : STD_LOGIC_VECTOR ( 2 downto 0 ); signal \m_valid_i__0\ : STD_LOGIC; signal m_valid_i_n_0 : STD_LOGIC; signal p_0_in5_out : STD_LOGIC; signal p_0_in8_in : STD_LOGIC; attribute RTL_KEEP of p_0_in8_in : signal is "yes"; signal p_2_out : STD_LOGIC; signal p_9_in : STD_LOGIC; attribute RTL_KEEP of p_9_in : signal is "yes"; signal push : STD_LOGIC; signal \s_ready_i1__4\ : STD_LOGIC; signal \s_ready_i_i_1__9_n_0\ : STD_LOGIC; signal \^ss_wr_awready\ : STD_LOGIC; signal \storage_data1[0]_i_1_n_0\ : STD_LOGIC; signal \storage_data1[1]_i_1_n_0\ : STD_LOGIC; attribute KEEP : string; attribute KEEP of \FSM_onehot_state_reg[0]\ : label is "yes"; attribute KEEP of \FSM_onehot_state_reg[1]\ : label is "yes"; attribute KEEP of \FSM_onehot_state_reg[2]\ : label is "yes"; attribute KEEP of \FSM_onehot_state_reg[3]\ : label is "yes"; attribute syn_keep : string; attribute syn_keep of \gen_rep[0].fifoaddr_reg[0]\ : label is "1"; attribute syn_keep of \gen_rep[0].fifoaddr_reg[1]\ : label is "1"; attribute syn_keep of \gen_rep[0].fifoaddr_reg[2]\ : label is "1"; attribute SOFT_HLUTNM : string; attribute SOFT_HLUTNM of \m_axi_wvalid[0]_INST_0\ : label is "soft_lutpair179"; attribute SOFT_HLUTNM of \m_axi_wvalid[1]_INST_0\ : label is "soft_lutpair179"; attribute SOFT_HLUTNM of \m_axi_wvalid[2]_INST_0\ : label is "soft_lutpair180"; attribute SOFT_HLUTNM of \m_axi_wvalid[3]_INST_0\ : label is "soft_lutpair180"; begin ss_wr_awready <= \^ss_wr_awready\; \/FSM_onehot_state[1]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"20202F20" ) port map ( I0 => s_axi_awvalid(0), I1 => m_ready_d(0), I2 => p_9_in, I3 => p_0_in5_out, I4 => p_0_in8_in, O => \/FSM_onehot_state[1]_i_1_n_0\ ); \/FSM_onehot_state[2]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"B0B0B0BF" ) port map ( I0 => m_ready_d(0), I1 => s_axi_awvalid(0), I2 => p_9_in, I3 => p_0_in5_out, I4 => p_0_in8_in, O => \/FSM_onehot_state[2]_i_1_n_0\ ); \FSM_onehot_state[0]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"008A0000" ) port map ( I0 => \m_aready__1\, I1 => m_ready_d(0), I2 => s_axi_awvalid(0), I3 => p_9_in, I4 => p_0_in8_in, O => \FSM_onehot_state[0]_i_1_n_0\ ); \FSM_onehot_state[3]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFF488F488F488" ) port map ( I0 => \m_aready__1\, I1 => p_0_in8_in, I2 => p_9_in, I3 => ss_wr_awvalid, I4 => \FSM_onehot_state_reg_n_0_[3]\, I5 => p_0_in5_out, O => \m_valid_i__0\ ); \FSM_onehot_state[3]_i_2\: unisim.vcomponents.LUT5 generic map( INIT => X"00007500" ) port map ( I0 => \m_aready__1\, I1 => m_ready_d(0), I2 => s_axi_awvalid(0), I3 => p_0_in8_in, I4 => p_9_in, O => \FSM_onehot_state[3]_i_2_n_0\ ); \FSM_onehot_state_reg[0]\: unisim.vcomponents.FDSE generic map( INIT => '1' ) port map ( C => aclk, CE => \m_valid_i__0\, D => \FSM_onehot_state[0]_i_1_n_0\, Q => p_9_in, S => areset_d1 ); \FSM_onehot_state_reg[1]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \m_valid_i__0\, D => \/FSM_onehot_state[1]_i_1_n_0\, Q => p_0_in8_in, R => areset_d1 ); \FSM_onehot_state_reg[2]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \m_valid_i__0\, D => \/FSM_onehot_state[2]_i_1_n_0\, Q => \FSM_onehot_state_reg_n_0_[2]\, R => areset_d1 ); \FSM_onehot_state_reg[3]\: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \m_valid_i__0\, D => \FSM_onehot_state[3]_i_2_n_0\, Q => \FSM_onehot_state_reg_n_0_[3]\, R => areset_d1 ); areset_d1_reg: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => SR(0), Q => areset_d1, R => '0' ); \gen_axi.write_cs[1]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000800000" ) port map ( I0 => s_axi_wlast(0), I1 => m_avalid, I2 => s_axi_wvalid(0), I3 => m_select_enc(0), I4 => m_select_enc(2), I5 => m_select_enc(1), O => \write_cs0__0\ ); \gen_rep[0].fifoaddr[0]_i_1\: unisim.vcomponents.LUT4 generic map( INIT => X"8778" ) port map ( I0 => \m_aready__1\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => push, I3 => fifoaddr(0), O => \gen_rep[0].fifoaddr[0]_i_1_n_0\ ); \gen_rep[0].fifoaddr[1]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"8FF77008" ) port map ( I0 => \m_aready__1\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => fifoaddr(0), I3 => push, I4 => fifoaddr(1), O => \gen_rep[0].fifoaddr[1]_i_1_n_0\ ); \gen_rep[0].fifoaddr[2]_i_1\: unisim.vcomponents.LUT6 generic map( INIT => X"8FFFFFF770000008" ) port map ( I0 => \m_aready__1\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => fifoaddr(0), I3 => fifoaddr(1), I4 => push, I5 => fifoaddr(2), O => \gen_rep[0].fifoaddr[2]_i_1_n_0\ ); \gen_rep[0].fifoaddr_reg[0]\: unisim.vcomponents.FDSE port map ( C => aclk, CE => '1', D => \gen_rep[0].fifoaddr[0]_i_1_n_0\, Q => fifoaddr(0), S => SR(0) ); \gen_rep[0].fifoaddr_reg[1]\: unisim.vcomponents.FDSE port map ( C => aclk, CE => '1', D => \gen_rep[0].fifoaddr[1]_i_1_n_0\, Q => fifoaddr(1), S => SR(0) ); \gen_rep[0].fifoaddr_reg[2]\: unisim.vcomponents.FDSE port map ( C => aclk, CE => '1', D => \gen_rep[0].fifoaddr[2]_i_1_n_0\, Q => fifoaddr(2), S => SR(0) ); \gen_srls[0].gen_rep[0].srl_nx1\: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0\ port map ( aclk => aclk, fifoaddr(2 downto 0) => fifoaddr(2 downto 0), push => push, st_aa_awtarget_enc(0) => st_aa_awtarget_enc(0), \storage_data1_reg[0]\ => \gen_srls[0].gen_rep[0].srl_nx1_n_0\ ); \gen_srls[0].gen_rep[1].srl_nx1\: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_6\ port map ( aclk => aclk, fifoaddr(2 downto 0) => fifoaddr(2 downto 0), p_2_out => p_2_out, push => push, st_aa_awtarget_enc(0) => st_aa_awtarget_enc(1) ); \gen_srls[0].gen_rep[2].srl_nx1\: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_ndeep_srl__parameterized0_7\ port map ( D(0) => D(0), aclk => aclk, fifoaddr(2 downto 0) => fifoaddr(2 downto 0), load_s1 => load_s1, \m_aready0__3\ => \m_aready0__3\, \m_aready__1\ => \m_aready__1\, m_avalid => m_avalid, m_axi_wready(3 downto 0) => m_axi_wready(3 downto 0), m_ready_d(0) => m_ready_d(0), m_select_enc(2 downto 0) => m_select_enc(2 downto 0), match => match, out0(1) => p_0_in8_in, out0(0) => \FSM_onehot_state_reg_n_0_[3]\, p_22_in => p_22_in, push => push, s_axi_awvalid(0) => s_axi_awvalid(0), s_axi_wlast(0) => s_axi_wlast(0), s_axi_wvalid(0) => s_axi_wvalid(0), ss_wr_awready => \^ss_wr_awready\, \storage_data1_reg[2]\ => \gen_srls[0].gen_rep[2].srl_nx1_n_1\ ); \m_axi_wvalid[0]_INST_0\: unisim.vcomponents.LUT5 generic map( INIT => X"00000008" ) port map ( I0 => s_axi_wvalid(0), I1 => m_avalid, I2 => m_select_enc(0), I3 => m_select_enc(1), I4 => m_select_enc(2), O => m_axi_wvalid(0) ); \m_axi_wvalid[1]_INST_0\: unisim.vcomponents.LUT5 generic map( INIT => X"00000080" ) port map ( I0 => s_axi_wvalid(0), I1 => m_avalid, I2 => m_select_enc(0), I3 => m_select_enc(1), I4 => m_select_enc(2), O => m_axi_wvalid(1) ); \m_axi_wvalid[2]_INST_0\: unisim.vcomponents.LUT5 generic map( INIT => X"00000800" ) port map ( I0 => s_axi_wvalid(0), I1 => m_avalid, I2 => m_select_enc(0), I3 => m_select_enc(1), I4 => m_select_enc(2), O => m_axi_wvalid(2) ); \m_axi_wvalid[3]_INST_0\: unisim.vcomponents.LUT5 generic map( INIT => X"00008000" ) port map ( I0 => s_axi_wvalid(0), I1 => m_avalid, I2 => m_select_enc(0), I3 => m_select_enc(1), I4 => m_select_enc(2), O => m_axi_wvalid(3) ); m_valid_i: unisim.vcomponents.LUT6 generic map( INIT => X"FFFFF400F400F400" ) port map ( I0 => \m_aready__1\, I1 => p_0_in8_in, I2 => p_9_in, I3 => ss_wr_awvalid, I4 => \FSM_onehot_state_reg_n_0_[3]\, I5 => p_0_in5_out, O => m_valid_i_n_0 ); m_valid_i_i_3: unisim.vcomponents.LUT6 generic map( INIT => X"0000000000000008" ) port map ( I0 => \m_aready__1\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => fifoaddr(1), I3 => fifoaddr(0), I4 => fifoaddr(2), I5 => push, O => p_0_in5_out ); m_valid_i_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => \m_valid_i__0\, D => m_valid_i_n_0, Q => m_avalid, R => areset_d1 ); \s_axi_wready[0]_INST_0\: unisim.vcomponents.LUT2 generic map( INIT => X"8" ) port map ( I0 => m_avalid, I1 => \m_aready0__3\, O => s_axi_wready(0) ); \s_ready_i_i_1__9\: unisim.vcomponents.LUT5 generic map( INIT => X"F0FFF0F8" ) port map ( I0 => \m_aready__1\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => areset_d1, I3 => \s_ready_i1__4\, I4 => \^ss_wr_awready\, O => \s_ready_i_i_1__9_n_0\ ); \s_ready_i_i_2__0\: unisim.vcomponents.LUT6 generic map( INIT => X"0000700000000000" ) port map ( I0 => \m_aready__1\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => fifoaddr(2), I3 => fifoaddr(1), I4 => fifoaddr(0), I5 => push, O => \s_ready_i1__4\ ); s_ready_i_reg: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \s_ready_i_i_1__9_n_0\, Q => \^ss_wr_awready\, R => SR(0) ); \storage_data1[0]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"B8FFB800" ) port map ( I0 => \gen_srls[0].gen_rep[0].srl_nx1_n_0\, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => st_aa_awtarget_enc(0), I3 => load_s1, I4 => m_select_enc(0), O => \storage_data1[0]_i_1_n_0\ ); \storage_data1[1]_i_1\: unisim.vcomponents.LUT5 generic map( INIT => X"B8FFB800" ) port map ( I0 => p_2_out, I1 => \FSM_onehot_state_reg_n_0_[3]\, I2 => st_aa_awtarget_enc(1), I3 => load_s1, I4 => m_select_enc(1), O => \storage_data1[1]_i_1_n_0\ ); \storage_data1[2]_i_2\: unisim.vcomponents.LUT6 generic map( INIT => X"A0FCA0A0A0ECA0A0" ) port map ( I0 => \FSM_onehot_state_reg_n_0_[3]\, I1 => p_9_in, I2 => \m_aready__1\, I3 => m_ready_d(0), I4 => s_axi_awvalid(0), I5 => p_0_in8_in, O => load_s1 ); \storage_data1_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \storage_data1[0]_i_1_n_0\, Q => m_select_enc(0), R => '0' ); \storage_data1_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \storage_data1[1]_i_1_n_0\, Q => m_select_enc(1), R => '0' ); \storage_data1_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => \gen_srls[0].gen_rep[2].srl_nx1_n_1\, Q => m_select_enc(2), R => '0' ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice is port ( p_128_out : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); p_122_out : out STD_LOGIC; \m_axi_rready[0]\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \r_cmd_pop_0__1\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \chosen_reg[2]\ : out STD_LOGIC; \chosen_reg[2]_0\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[0]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[0].r_issuing_cnt_reg[3]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_93_in : in STD_LOGIC; p_102_out : in STD_LOGIC; p_108_out : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); D : in STD_LOGIC_VECTOR ( 13 downto 0 ); \chosen_reg[0]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice is begin b_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_15\ port map ( D(13 downto 0) => D(13 downto 0), Q(0) => Q(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \aresetn_d_reg[1]_0\ => \aresetn_d_reg[1]_0\, \chosen_reg[2]\ => \chosen_reg[2]_0\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 0), m_axi_bready(0) => m_axi_bready(0), m_axi_bvalid(0) => m_axi_bvalid(0), \m_payload_i_reg[0]_0\ => p_128_out, p_108_out => p_108_out, p_1_in => p_1_in, s_axi_bready(0) => s_axi_bready(0) ); r_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_16\ port map ( E(0) => E(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \chosen_reg[0]\(0) => \chosen_reg[0]\(0), \chosen_reg[0]_0\(0) => \chosen_reg[0]_0\(0), \chosen_reg[2]\ => \chosen_reg[2]\, \gen_master_slots[0].r_issuing_cnt_reg[3]\(3 downto 0) => \gen_master_slots[0].r_issuing_cnt_reg[3]\(3 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_no_arbiter.s_ready_i_reg[0]\, m_axi_rdata(31 downto 0) => m_axi_rdata(31 downto 0), m_axi_rid(11 downto 0) => m_axi_rid(11 downto 0), m_axi_rlast(0) => m_axi_rlast(0), \m_axi_rready[0]\ => \m_axi_rready[0]\, m_axi_rresp(1 downto 0) => m_axi_rresp(1 downto 0), m_axi_rvalid(0) => m_axi_rvalid(0), m_valid_i_reg_0 => p_122_out, p_102_out => p_102_out, p_1_in => p_1_in, p_93_in => p_93_in, \r_cmd_pop_0__1\ => \r_cmd_pop_0__1\, s_axi_rready(0) => s_axi_rready(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_1 is port ( p_108_out : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); p_102_out : out STD_LOGIC; \m_axi_rready[1]\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \r_cmd_pop_1__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[1]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); ADDRESS_HIT_1 : in STD_LOGIC; match : in STD_LOGIC; \gen_master_slots[0].r_issuing_cnt_reg[0]\ : in STD_LOGIC; ADDRESS_HIT_0 : in STD_LOGIC; \gen_master_slots[1].r_issuing_cnt_reg[11]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_75_in : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); D : in STD_LOGIC_VECTOR ( 13 downto 0 ); \chosen_reg[1]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_1 : entity is "axi_register_slice_v2_1_13_axi_register_slice"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_1; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_1 is begin b_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_13\ port map ( D(13 downto 0) => D(13 downto 0), Q(0) => Q(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \aresetn_d_reg[1]_0\ => \aresetn_d_reg[1]_0\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 0), m_axi_bready(0) => m_axi_bready(0), m_axi_bvalid(0) => m_axi_bvalid(0), \m_payload_i_reg[0]_0\ => p_108_out, p_1_in => p_1_in, s_axi_bready(0) => s_axi_bready(0) ); r_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_14\ port map ( ADDRESS_HIT_0 => ADDRESS_HIT_0, ADDRESS_HIT_1 => ADDRESS_HIT_1, E(0) => E(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \chosen_reg[1]\(0) => \chosen_reg[1]\(0), \chosen_reg[1]_0\(0) => \chosen_reg[1]_0\(0), \gen_master_slots[0].r_issuing_cnt_reg[0]\ => \gen_master_slots[0].r_issuing_cnt_reg[0]\, \gen_master_slots[1].r_issuing_cnt_reg[11]\(3 downto 0) => \gen_master_slots[1].r_issuing_cnt_reg[11]\(3 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_no_arbiter.s_ready_i_reg[0]\, m_axi_rdata(31 downto 0) => m_axi_rdata(31 downto 0), m_axi_rid(11 downto 0) => m_axi_rid(11 downto 0), m_axi_rlast(0) => m_axi_rlast(0), \m_axi_rready[1]\ => \m_axi_rready[1]\, m_axi_rresp(1 downto 0) => m_axi_rresp(1 downto 0), m_axi_rvalid(0) => m_axi_rvalid(0), m_valid_i_reg_0 => p_102_out, match => match, p_1_in => p_1_in, p_75_in => p_75_in, \r_cmd_pop_1__1\ => \r_cmd_pop_1__1\, s_axi_rready(0) => s_axi_rready(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_2 is port ( p_88_out : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); p_82_out : out STD_LOGIC; \m_axi_rready[2]\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; \r_cmd_pop_2__1\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]\ : in STD_LOGIC; aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[2]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); \gen_master_slots[2].r_issuing_cnt_reg[18]\ : in STD_LOGIC; \gen_master_slots[2].r_issuing_cnt_reg[19]\ : in STD_LOGIC_VECTOR ( 3 downto 0 ); sel_4 : in STD_LOGIC; \s_axi_araddr[25]\ : in STD_LOGIC; sel_2 : in STD_LOGIC; p_57_in : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); D : in STD_LOGIC_VECTOR ( 13 downto 0 ); \chosen_reg[2]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_2 : entity is "axi_register_slice_v2_1_13_axi_register_slice"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_2; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_2 is begin b_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_11\ port map ( D(13 downto 0) => D(13 downto 0), Q(0) => Q(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \aresetn_d_reg[1]_0\ => \aresetn_d_reg[1]_0\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 0), m_axi_bready(0) => m_axi_bready(0), m_axi_bvalid(0) => m_axi_bvalid(0), \m_payload_i_reg[0]_0\ => p_88_out, p_1_in => p_1_in, s_axi_bready(0) => s_axi_bready(0) ); r_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_12\ port map ( E(0) => E(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \chosen_reg[2]\(0) => \chosen_reg[2]\(0), \chosen_reg[2]_0\(0) => \chosen_reg[2]_0\(0), \gen_master_slots[2].r_issuing_cnt_reg[18]\ => \gen_master_slots[2].r_issuing_cnt_reg[18]\, \gen_master_slots[2].r_issuing_cnt_reg[19]\(3 downto 0) => \gen_master_slots[2].r_issuing_cnt_reg[19]\(3 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_no_arbiter.s_ready_i_reg[0]\, m_axi_rdata(31 downto 0) => m_axi_rdata(31 downto 0), m_axi_rid(11 downto 0) => m_axi_rid(11 downto 0), m_axi_rlast(0) => m_axi_rlast(0), \m_axi_rready[2]\ => \m_axi_rready[2]\, m_axi_rresp(1 downto 0) => m_axi_rresp(1 downto 0), m_axi_rvalid(0) => m_axi_rvalid(0), m_valid_i_reg_0 => p_82_out, p_1_in => p_1_in, p_57_in => p_57_in, \r_cmd_pop_2__1\ => \r_cmd_pop_2__1\, \s_axi_araddr[25]\ => \s_axi_araddr[25]\, s_axi_rready(0) => s_axi_rready(0), sel_2 => sel_2, sel_4 => sel_4 ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_3 is port ( p_68_out : out STD_LOGIC; m_axi_bready : out STD_LOGIC_VECTOR ( 0 to 0 ); p_1_in : out STD_LOGIC; p_62_out : out STD_LOGIC; \m_axi_rready[3]\ : out STD_LOGIC; \gen_no_arbiter.s_ready_i_reg[0]\ : out STD_LOGIC; E : out STD_LOGIC_VECTOR ( 0 to 0 ); \r_cmd_pop_3__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 46 downto 0 ); \chosen_reg[4]\ : out STD_LOGIC; \chosen_reg[4]_0\ : out STD_LOGIC; \aresetn_d_reg[1]\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\ : out STD_LOGIC_VECTOR ( 13 downto 0 ); \aresetn_d_reg[1]_0\ : in STD_LOGIC; aclk : in STD_LOGIC; aresetn : in STD_LOGIC; m_axi_bvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); \aresetn_d_reg[1]_1\ : in STD_LOGIC; s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[3]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); ADDRESS_HIT_3 : in STD_LOGIC; \gen_master_slots[2].r_issuing_cnt_reg[16]\ : in STD_LOGIC; \r_cmd_pop_4__1\ : in STD_LOGIC; match : in STD_LOGIC; r_issuing_cnt : in STD_LOGIC_VECTOR ( 4 downto 0 ); p_39_in : in STD_LOGIC; p_82_out : in STD_LOGIC; p_88_out : in STD_LOGIC; m_axi_rid : in STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); D : in STD_LOGIC_VECTOR ( 13 downto 0 ); \chosen_reg[3]_0\ : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_3 : entity is "axi_register_slice_v2_1_13_axi_register_slice"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_3; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_3 is signal \^p_1_in\ : STD_LOGIC; begin p_1_in <= \^p_1_in\; b_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1_9\ port map ( D(13 downto 0) => D(13 downto 0), Q(0) => Q(0), aclk => aclk, aresetn => aresetn, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]\, \aresetn_d_reg[1]_0\ => \aresetn_d_reg[1]_0\, \aresetn_d_reg[1]_1\ => \aresetn_d_reg[1]_1\, \chosen_reg[4]\ => \chosen_reg[4]_0\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(13 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 0), m_axi_bready(0) => m_axi_bready(0), m_axi_bvalid(0) => m_axi_bvalid(0), \m_payload_i_reg[0]_0\ => p_68_out, p_1_in => \^p_1_in\, p_88_out => p_88_out, s_axi_bready(0) => s_axi_bready(0) ); r_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2_10\ port map ( ADDRESS_HIT_3 => ADDRESS_HIT_3, E(0) => E(0), aclk => aclk, \aresetn_d_reg[1]\ => \aresetn_d_reg[1]_0\, \chosen_reg[3]\(0) => \chosen_reg[3]\(0), \chosen_reg[3]_0\(0) => \chosen_reg[3]_0\(0), \chosen_reg[4]\ => \chosen_reg[4]\, \gen_master_slots[2].r_issuing_cnt_reg[16]\ => \gen_master_slots[2].r_issuing_cnt_reg[16]\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 0), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_no_arbiter.s_ready_i_reg[0]\, m_axi_rdata(31 downto 0) => m_axi_rdata(31 downto 0), m_axi_rid(11 downto 0) => m_axi_rid(11 downto 0), m_axi_rlast(0) => m_axi_rlast(0), \m_axi_rready[3]\ => \m_axi_rready[3]\, m_axi_rresp(1 downto 0) => m_axi_rresp(1 downto 0), m_axi_rvalid(0) => m_axi_rvalid(0), m_valid_i_reg_0 => p_62_out, match => match, p_1_in => \^p_1_in\, p_39_in => p_39_in, p_82_out => p_82_out, \r_cmd_pop_3__1\ => \r_cmd_pop_3__1\, \r_cmd_pop_4__1\ => \r_cmd_pop_4__1\, r_issuing_cnt(4 downto 0) => r_issuing_cnt(4 downto 0), s_axi_rready(0) => s_axi_rready(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_4 is port ( p_46_out : out STD_LOGIC; m_valid_i_reg : out STD_LOGIC; mi_bready_4 : out STD_LOGIC; p_40_out : out STD_LOGIC; mi_rready_4 : out STD_LOGIC; s_ready_i_reg : out STD_LOGIC; \r_cmd_pop_4__1\ : out STD_LOGIC; \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\ : out STD_LOGIC_VECTOR ( 12 downto 0 ); \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\ : out STD_LOGIC_VECTOR ( 11 downto 0 ); aclk : in STD_LOGIC; p_1_in : in STD_LOGIC; \aresetn_d_reg[0]\ : in STD_LOGIC; p_29_in : in STD_LOGIC; s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); Q : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); \chosen_reg[4]\ : in STD_LOGIC_VECTOR ( 0 to 0 ); p_23_in : in STD_LOGIC; \gen_axi.s_axi_rid_i_reg[11]\ : in STD_LOGIC_VECTOR ( 11 downto 0 ); p_25_in : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 11 downto 0 ); E : in STD_LOGIC_VECTOR ( 0 to 0 ) ); attribute ORIG_REF_NAME : string; attribute ORIG_REF_NAME of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_4 : entity is "axi_register_slice_v2_1_13_axi_register_slice"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_4; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_4 is signal \^m_valid_i_reg\ : STD_LOGIC; begin m_valid_i_reg <= \^m_valid_i_reg\; b_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized1\ port map ( D(11 downto 0) => D(11 downto 0), Q(0) => Q(0), aclk => aclk, \aresetn_d_reg[0]\ => \aresetn_d_reg[0]\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(11 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(11 downto 0), \m_payload_i_reg[2]_0\ => p_46_out, m_valid_i_reg_0 => \^m_valid_i_reg\, mi_bready_4 => mi_bready_4, p_1_in => p_1_in, p_29_in => p_29_in, s_axi_bready(0) => s_axi_bready(0), s_ready_i_reg_0 => s_ready_i_reg ); r_pipe: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axic_register_slice__parameterized2\ port map ( E(0) => E(0), aclk => aclk, \aresetn_d_reg[1]\ => \^m_valid_i_reg\, \chosen_reg[4]\(0) => \chosen_reg[4]\(0), \gen_axi.s_axi_rid_i_reg[11]\(11 downto 0) => \gen_axi.s_axi_rid_i_reg[11]\(11 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12 downto 0) => \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12 downto 0), m_valid_i_reg_0 => p_40_out, p_1_in => p_1_in, p_23_in => p_23_in, p_25_in => p_25_in, \r_cmd_pop_4__1\ => \r_cmd_pop_4__1\, s_axi_rready(0) => s_axi_rready(0), \skid_buffer_reg[34]_0\ => mi_rready_4 ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_wdata_router is port ( ss_wr_awready : out STD_LOGIC; m_axi_wvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_wready : out STD_LOGIC_VECTOR ( 0 to 0 ); \write_cs0__0\ : out STD_LOGIC; st_aa_awtarget_enc : in STD_LOGIC_VECTOR ( 1 downto 0 ); aclk : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 0 to 0 ); SR : in STD_LOGIC_VECTOR ( 0 to 0 ); match : in STD_LOGIC; m_ready_d : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_wready : in STD_LOGIC_VECTOR ( 3 downto 0 ); p_22_in : in STD_LOGIC; ss_wr_awvalid : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_wdata_router; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_wdata_router is begin wrouter_aw_fifo: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_data_fifo_v2_1_12_axic_reg_srl_fifo port map ( D(0) => D(0), SR(0) => SR(0), aclk => aclk, m_axi_wready(3 downto 0) => m_axi_wready(3 downto 0), m_axi_wvalid(3 downto 0) => m_axi_wvalid(3 downto 0), m_ready_d(0) => m_ready_d(0), match => match, p_22_in => p_22_in, s_axi_awvalid(0) => s_axi_awvalid(0), s_axi_wlast(0) => s_axi_wlast(0), s_axi_wready(0) => s_axi_wready(0), s_axi_wvalid(0) => s_axi_wvalid(0), ss_wr_awready => ss_wr_awready, ss_wr_awvalid => ss_wr_awvalid, st_aa_awtarget_enc(1 downto 0) => st_aa_awtarget_enc(1 downto 0), \write_cs0__0\ => \write_cs0__0\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_crossbar is port ( M_AXI_RREADY : out STD_LOGIC_VECTOR ( 3 downto 0 ); Q : out STD_LOGIC_VECTOR ( 68 downto 0 ); \m_axi_arqos[15]\ : out STD_LOGIC_VECTOR ( 68 downto 0 ); S_AXI_ARREADY : out STD_LOGIC_VECTOR ( 0 to 0 ); \s_axi_rid[0]\ : out STD_LOGIC; \s_axi_rid[1]\ : out STD_LOGIC; \s_axi_rid[2]\ : out STD_LOGIC; \s_axi_rid[3]\ : out STD_LOGIC; \s_axi_rid[4]\ : out STD_LOGIC; \s_axi_rid[5]\ : out STD_LOGIC; \s_axi_rid[6]\ : out STD_LOGIC; \s_axi_rid[7]\ : out STD_LOGIC; \s_axi_rid[8]\ : out STD_LOGIC; \s_axi_rid[9]\ : out STD_LOGIC; \s_axi_rid[10]\ : out STD_LOGIC; \s_axi_rid[11]\ : out STD_LOGIC; s_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_rlast : out STD_LOGIC_VECTOR ( 0 to 0 ); \s_axi_bid[0]\ : out STD_LOGIC; \s_axi_bid[1]\ : out STD_LOGIC; \s_axi_bid[2]\ : out STD_LOGIC; \s_axi_bid[3]\ : out STD_LOGIC; \s_axi_bid[4]\ : out STD_LOGIC; \s_axi_bid[5]\ : out STD_LOGIC; \s_axi_bid[6]\ : out STD_LOGIC; \s_axi_bid[7]\ : out STD_LOGIC; \s_axi_bid[8]\ : out STD_LOGIC; \s_axi_bid[9]\ : out STD_LOGIC; \s_axi_bid[10]\ : out STD_LOGIC; \s_axi_bid[11]\ : out STD_LOGIC; s_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); m_axi_bready : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); \s_axi_awready[0]\ : out STD_LOGIC; s_axi_bvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_wvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_wready : out STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_arvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_bvalid : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); aclk : in STD_LOGIC; D : in STD_LOGIC_VECTOR ( 68 downto 0 ); \s_axi_arqos[3]\ : in STD_LOGIC_VECTOR ( 68 downto 0 ); m_axi_bid : in STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_bresp : in STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_rid : in STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 127 downto 0 ); aresetn : in STD_LOGIC; m_axi_awready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arready : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_arvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wlast : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_wready : in STD_LOGIC_VECTOR ( 3 downto 0 ) ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_crossbar; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_crossbar is signal \^q\ : STD_LOGIC_VECTOR ( 68 downto 0 ); signal \^s_axi_arready\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal aa_mi_artarget_hot : STD_LOGIC_VECTOR ( 4 to 4 ); signal aa_mi_arvalid : STD_LOGIC; signal aa_mi_awtarget_hot : STD_LOGIC_VECTOR ( 4 downto 0 ); signal aa_sa_awvalid : STD_LOGIC; signal addr_arbiter_ar_n_103 : STD_LOGIC; signal addr_arbiter_ar_n_104 : STD_LOGIC; signal addr_arbiter_ar_n_105 : STD_LOGIC; signal addr_arbiter_ar_n_76 : STD_LOGIC; signal addr_arbiter_ar_n_81 : STD_LOGIC; signal addr_arbiter_ar_n_82 : STD_LOGIC; signal addr_arbiter_ar_n_83 : STD_LOGIC; signal addr_arbiter_ar_n_84 : STD_LOGIC; signal addr_arbiter_ar_n_85 : STD_LOGIC; signal addr_arbiter_ar_n_86 : STD_LOGIC; signal addr_arbiter_ar_n_87 : STD_LOGIC; signal addr_arbiter_ar_n_88 : STD_LOGIC; signal addr_arbiter_ar_n_89 : STD_LOGIC; signal addr_arbiter_ar_n_90 : STD_LOGIC; signal addr_arbiter_ar_n_91 : STD_LOGIC; signal addr_arbiter_ar_n_92 : STD_LOGIC; signal addr_arbiter_ar_n_93 : STD_LOGIC; signal addr_arbiter_ar_n_94 : STD_LOGIC; signal addr_arbiter_aw_n_20 : STD_LOGIC; signal addr_arbiter_aw_n_25 : STD_LOGIC; signal addr_arbiter_aw_n_26 : STD_LOGIC; signal addr_arbiter_aw_n_30 : STD_LOGIC; signal aresetn_d : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_0\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_0_5\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_1\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_1_0\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_3\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_3_1\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_2\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_2_2\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_4\ : STD_LOGIC; signal \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_4_3\ : STD_LOGIC; signal \gen_master_slots[0].r_issuing_cnt[0]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[0].reg_slice_mi_n_4\ : STD_LOGIC; signal \gen_master_slots[0].reg_slice_mi_n_54\ : STD_LOGIC; signal \gen_master_slots[0].reg_slice_mi_n_55\ : STD_LOGIC; signal \gen_master_slots[0].reg_slice_mi_n_6\ : STD_LOGIC; signal \gen_master_slots[0].w_issuing_cnt[0]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[1].r_issuing_cnt[8]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[1].reg_slice_mi_n_4\ : STD_LOGIC; signal \gen_master_slots[1].reg_slice_mi_n_5\ : STD_LOGIC; signal \gen_master_slots[1].w_issuing_cnt[8]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[2].r_issuing_cnt[16]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[2].reg_slice_mi_n_4\ : STD_LOGIC; signal \gen_master_slots[2].reg_slice_mi_n_6\ : STD_LOGIC; signal \gen_master_slots[2].w_issuing_cnt[16]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[3].r_issuing_cnt[24]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[3].reg_slice_mi_n_5\ : STD_LOGIC; signal \gen_master_slots[3].reg_slice_mi_n_55\ : STD_LOGIC; signal \gen_master_slots[3].reg_slice_mi_n_56\ : STD_LOGIC; signal \gen_master_slots[3].reg_slice_mi_n_57\ : STD_LOGIC; signal \gen_master_slots[3].reg_slice_mi_n_6\ : STD_LOGIC; signal \gen_master_slots[3].w_issuing_cnt[24]_i_1_n_0\ : STD_LOGIC; signal \gen_master_slots[4].reg_slice_mi_n_1\ : STD_LOGIC; signal \gen_master_slots[4].reg_slice_mi_n_5\ : STD_LOGIC; signal \gen_multi_thread.arbiter_resp_inst/chosen\ : STD_LOGIC_VECTOR ( 4 downto 0 ); signal \gen_multi_thread.arbiter_resp_inst/chosen_10\ : STD_LOGIC_VECTOR ( 4 downto 0 ); signal \gen_slave_slots[0].gen_si_read.si_transactor_ar_n_49\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_14\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_15\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_16\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_17\ : STD_LOGIC; signal \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_21\ : STD_LOGIC; signal \^m_axi_arqos[15]\ : STD_LOGIC_VECTOR ( 68 downto 0 ); signal m_ready_d : STD_LOGIC_VECTOR ( 1 downto 0 ); signal m_ready_d_13 : STD_LOGIC_VECTOR ( 1 downto 0 ); signal m_valid_i : STD_LOGIC; signal m_valid_i_11 : STD_LOGIC; signal match : STD_LOGIC; signal match_4 : STD_LOGIC; signal mi_arready_4 : STD_LOGIC; signal mi_awready_4 : STD_LOGIC; signal \mi_awready_mux__3\ : STD_LOGIC; signal mi_bready_4 : STD_LOGIC; signal mi_rready_4 : STD_LOGIC; signal p_101_in : STD_LOGIC; signal p_102_out : STD_LOGIC; signal p_104_out : STD_LOGIC; signal p_108_out : STD_LOGIC; signal p_122_out : STD_LOGIC; signal p_124_out : STD_LOGIC; signal p_128_out : STD_LOGIC; signal p_1_in : STD_LOGIC; signal p_22_in : STD_LOGIC; signal p_23_in : STD_LOGIC; signal p_25_in : STD_LOGIC; signal p_28_in : STD_LOGIC_VECTOR ( 11 downto 0 ); signal p_29_in : STD_LOGIC; signal p_32_in : STD_LOGIC_VECTOR ( 11 downto 0 ); signal p_39_in : STD_LOGIC; signal p_40_out : STD_LOGIC; signal p_42_out : STD_LOGIC; signal p_46_out : STD_LOGIC; signal p_48_in : STD_LOGIC; signal p_57_in : STD_LOGIC; signal p_62_out : STD_LOGIC; signal p_64_out : STD_LOGIC; signal p_66_in : STD_LOGIC; signal p_68_out : STD_LOGIC; signal p_75_in : STD_LOGIC; signal p_82_out : STD_LOGIC; signal p_84_in : STD_LOGIC; signal p_84_out : STD_LOGIC; signal p_88_out : STD_LOGIC; signal p_93_in : STD_LOGIC; signal \r_cmd_pop_0__1\ : STD_LOGIC; signal \r_cmd_pop_1__1\ : STD_LOGIC; signal \r_cmd_pop_2__1\ : STD_LOGIC; signal \r_cmd_pop_3__1\ : STD_LOGIC; signal \r_cmd_pop_4__1\ : STD_LOGIC; signal r_issuing_cnt : STD_LOGIC_VECTOR ( 32 downto 0 ); signal \r_pipe/p_1_in\ : STD_LOGIC; signal \r_pipe/p_1_in_6\ : STD_LOGIC; signal \r_pipe/p_1_in_7\ : STD_LOGIC; signal \r_pipe/p_1_in_8\ : STD_LOGIC; signal \r_pipe/p_1_in_9\ : STD_LOGIC; signal \read_cs__0\ : STD_LOGIC; signal reset : STD_LOGIC; signal \^s_axi_awready[0]\ : STD_LOGIC; signal s_axi_rlast_i0 : STD_LOGIC; signal s_axi_rvalid_i : STD_LOGIC; signal s_ready_i0 : STD_LOGIC; signal s_ready_i0_12 : STD_LOGIC; signal \s_ready_i0__1\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \sa_wm_awready_mux__3\ : STD_LOGIC; signal splitter_aw_mi_n_0 : STD_LOGIC; signal splitter_aw_mi_n_1 : STD_LOGIC; signal splitter_aw_mi_n_10 : STD_LOGIC; signal splitter_aw_mi_n_11 : STD_LOGIC; signal splitter_aw_mi_n_12 : STD_LOGIC; signal splitter_aw_mi_n_2 : STD_LOGIC; signal splitter_aw_mi_n_3 : STD_LOGIC; signal splitter_aw_mi_n_4 : STD_LOGIC; signal splitter_aw_mi_n_5 : STD_LOGIC; signal splitter_aw_mi_n_6 : STD_LOGIC; signal splitter_aw_mi_n_7 : STD_LOGIC; signal splitter_aw_mi_n_8 : STD_LOGIC; signal splitter_aw_mi_n_9 : STD_LOGIC; signal ss_aa_awready : STD_LOGIC; signal ss_wr_awready : STD_LOGIC; signal ss_wr_awvalid : STD_LOGIC; signal st_aa_awtarget_enc : STD_LOGIC_VECTOR ( 1 downto 0 ); signal st_mr_bid : STD_LOGIC_VECTOR ( 59 downto 0 ); signal st_mr_bmesg : STD_LOGIC_VECTOR ( 10 downto 0 ); signal st_mr_rid : STD_LOGIC_VECTOR ( 59 downto 0 ); signal st_mr_rmesg : STD_LOGIC_VECTOR ( 139 downto 0 ); signal w_issuing_cnt : STD_LOGIC_VECTOR ( 32 downto 0 ); signal write_cs01_out : STD_LOGIC; signal \write_cs0__0\ : STD_LOGIC; begin Q(68 downto 0) <= \^q\(68 downto 0); S_AXI_ARREADY(0) <= \^s_axi_arready\(0); \m_axi_arqos[15]\(68 downto 0) <= \^m_axi_arqos[15]\(68 downto 0); \s_axi_awready[0]\ <= \^s_axi_awready[0]\; addr_arbiter_ar: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter port map ( ADDRESS_HIT_0 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_0\, ADDRESS_HIT_1 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_1\, ADDRESS_HIT_3 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_3\, D(2) => addr_arbiter_ar_n_81, D(1) => addr_arbiter_ar_n_82, D(0) => addr_arbiter_ar_n_83, E(0) => s_ready_i0, Q(0) => aa_mi_artarget_hot(4), SR(0) => reset, S_AXI_ARREADY(0) => \^s_axi_arready\(0), aa_mi_arvalid => aa_mi_arvalid, aclk => aclk, \gen_axi.s_axi_rid_i_reg[11]\(0) => s_axi_rvalid_i, \gen_master_slots[1].r_issuing_cnt_reg[11]\(2) => addr_arbiter_ar_n_84, \gen_master_slots[1].r_issuing_cnt_reg[11]\(1) => addr_arbiter_ar_n_85, \gen_master_slots[1].r_issuing_cnt_reg[11]\(0) => addr_arbiter_ar_n_86, \gen_master_slots[2].r_issuing_cnt_reg[19]\(2) => addr_arbiter_ar_n_90, \gen_master_slots[2].r_issuing_cnt_reg[19]\(1) => addr_arbiter_ar_n_91, \gen_master_slots[2].r_issuing_cnt_reg[19]\(0) => addr_arbiter_ar_n_92, \gen_master_slots[3].r_issuing_cnt_reg[27]\(2) => addr_arbiter_ar_n_87, \gen_master_slots[3].r_issuing_cnt_reg[27]\(1) => addr_arbiter_ar_n_88, \gen_master_slots[3].r_issuing_cnt_reg[27]\(0) => addr_arbiter_ar_n_89, \gen_master_slots[4].r_issuing_cnt_reg[32]\ => addr_arbiter_ar_n_105, \gen_multi_thread.gen_thread_loop[7].active_target_reg[56]\ => addr_arbiter_ar_n_103, \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ => addr_arbiter_ar_n_76, \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]_0\ => addr_arbiter_ar_n_104, \gen_no_arbiter.s_ready_i_reg[0]_0\ => addr_arbiter_ar_n_93, \gen_no_arbiter.s_ready_i_reg[0]_1\ => addr_arbiter_ar_n_94, \m_axi_arqos[15]\(68 downto 0) => \^m_axi_arqos[15]\(68 downto 0), m_axi_arready(3 downto 0) => m_axi_arready(3 downto 0), m_axi_arvalid(3 downto 0) => m_axi_arvalid(3 downto 0), m_valid_i => m_valid_i, match => match, mi_arready_4 => mi_arready_4, p_23_in => p_23_in, p_39_in => p_39_in, p_57_in => p_57_in, p_75_in => p_75_in, p_93_in => p_93_in, \r_cmd_pop_0__1\ => \r_cmd_pop_0__1\, \r_cmd_pop_1__1\ => \r_cmd_pop_1__1\, \r_cmd_pop_2__1\ => \r_cmd_pop_2__1\, \r_cmd_pop_3__1\ => \r_cmd_pop_3__1\, \r_cmd_pop_4__1\ => \r_cmd_pop_4__1\, r_issuing_cnt(16) => r_issuing_cnt(32), r_issuing_cnt(15 downto 12) => r_issuing_cnt(27 downto 24), r_issuing_cnt(11 downto 8) => r_issuing_cnt(19 downto 16), r_issuing_cnt(7 downto 4) => r_issuing_cnt(11 downto 8), r_issuing_cnt(3 downto 0) => r_issuing_cnt(3 downto 0), \read_cs__0\ => \read_cs__0\, \s_axi_araddr[18]\(0) => \gen_slave_slots[0].gen_si_read.si_transactor_ar_n_49\, \s_axi_arqos[3]\(68 downto 0) => \s_axi_arqos[3]\(68 downto 0), s_axi_arvalid(0) => s_axi_arvalid(0), s_axi_rlast_i0 => s_axi_rlast_i0, sel_2 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_2\, sel_4 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_4\ ); addr_arbiter_aw: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_addr_arbiter_0 port map ( ADDRESS_HIT_0 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_0_5\, ADDRESS_HIT_1 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_1_0\, ADDRESS_HIT_3 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_3_1\, D(68 downto 0) => D(68 downto 0), E(0) => s_ready_i0_12, Q(4 downto 0) => aa_mi_awtarget_hot(4 downto 0), SR(0) => reset, aa_sa_awvalid => aa_sa_awvalid, aclk => aclk, \chosen_reg[4]\(0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(4), \gen_master_slots[4].w_issuing_cnt_reg[32]\ => addr_arbiter_aw_n_30, \gen_multi_thread.gen_thread_loop[7].active_target_reg[57]\ => addr_arbiter_aw_n_20, \gen_no_arbiter.s_ready_i_reg[0]_0\ => addr_arbiter_aw_n_25, \gen_no_arbiter.s_ready_i_reg[0]_1\ => addr_arbiter_aw_n_26, \m_axi_awqos[15]\(68 downto 0) => \^q\(68 downto 0), m_axi_awready(3 downto 0) => m_axi_awready(3 downto 0), m_axi_awvalid(3 downto 0) => m_axi_awvalid(3 downto 0), m_ready_d(1 downto 0) => m_ready_d_13(1 downto 0), m_ready_d_0(0) => m_ready_d(0), m_valid_i => m_valid_i_11, match => match_4, mi_awready_4 => mi_awready_4, \mi_awready_mux__3\ => \mi_awready_mux__3\, p_101_in => p_101_in, p_46_out => p_46_out, p_48_in => p_48_in, p_66_in => p_66_in, p_84_in => p_84_in, \s_axi_awaddr[18]\(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_21\, s_axi_awvalid(0) => s_axi_awvalid(0), s_axi_bready(0) => s_axi_bready(0), \s_ready_i0__1\(0) => \s_ready_i0__1\(0), \sa_wm_awready_mux__3\ => \sa_wm_awready_mux__3\, sel_2 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_2_2\, sel_4 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_4_3\, ss_aa_awready => ss_aa_awready, st_aa_awtarget_enc(1 downto 0) => st_aa_awtarget_enc(1 downto 0), w_issuing_cnt(3) => w_issuing_cnt(32), w_issuing_cnt(2 downto 0) => w_issuing_cnt(19 downto 17), write_cs01_out => write_cs01_out ); aresetn_d_reg: unisim.vcomponents.FDRE generic map( INIT => '0' ) port map ( C => aclk, CE => '1', D => aresetn, Q => aresetn_d, R => '0' ); \gen_decerr_slave.decerr_slave_inst\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_decerr_slave port map ( E(0) => s_axi_rvalid_i, Q(0) => aa_mi_awtarget_hot(4), SR(0) => reset, aa_mi_arvalid => aa_mi_arvalid, aa_sa_awvalid => aa_sa_awvalid, aclk => aclk, aresetn_d => aresetn_d, \gen_no_arbiter.m_mesg_i_reg[11]\(11 downto 0) => \^q\(11 downto 0), \gen_no_arbiter.m_mesg_i_reg[51]\(19 downto 12) => \^m_axi_arqos[15]\(51 downto 44), \gen_no_arbiter.m_mesg_i_reg[51]\(11 downto 0) => \^m_axi_arqos[15]\(11 downto 0), \gen_no_arbiter.m_target_hot_i_reg[4]\(0) => aa_mi_artarget_hot(4), \m_payload_i_reg[13]\(11 downto 0) => p_32_in(11 downto 0), m_ready_d(0) => m_ready_d_13(1), \m_ready_d_reg[1]\ => splitter_aw_mi_n_3, mi_arready_4 => mi_arready_4, mi_awready_4 => mi_awready_4, mi_bready_4 => mi_bready_4, mi_rready_4 => mi_rready_4, p_22_in => p_22_in, p_23_in => p_23_in, p_25_in => p_25_in, p_29_in => p_29_in, \read_cs__0\ => \read_cs__0\, s_axi_rlast_i0 => s_axi_rlast_i0, \skid_buffer_reg[46]\(11 downto 0) => p_28_in(11 downto 0), write_cs01_out => write_cs01_out, \write_cs0__0\ => \write_cs0__0\ ); \gen_master_slots[0].r_issuing_cnt[0]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => r_issuing_cnt(0), O => \gen_master_slots[0].r_issuing_cnt[0]_i_1_n_0\ ); \gen_master_slots[0].r_issuing_cnt_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[0].reg_slice_mi_n_4\, D => \gen_master_slots[0].r_issuing_cnt[0]_i_1_n_0\, Q => r_issuing_cnt(0), R => reset ); \gen_master_slots[0].r_issuing_cnt_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[0].reg_slice_mi_n_4\, D => addr_arbiter_ar_n_83, Q => r_issuing_cnt(1), R => reset ); \gen_master_slots[0].r_issuing_cnt_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[0].reg_slice_mi_n_4\, D => addr_arbiter_ar_n_82, Q => r_issuing_cnt(2), R => reset ); \gen_master_slots[0].r_issuing_cnt_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[0].reg_slice_mi_n_4\, D => addr_arbiter_ar_n_81, Q => r_issuing_cnt(3), R => reset ); \gen_master_slots[0].reg_slice_mi\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice port map ( D(13 downto 2) => m_axi_bid(11 downto 0), D(1 downto 0) => m_axi_bresp(1 downto 0), E(0) => \gen_master_slots[0].reg_slice_mi_n_4\, Q(0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(0), aclk => aclk, \aresetn_d_reg[1]\ => \gen_master_slots[4].reg_slice_mi_n_1\, \aresetn_d_reg[1]_0\ => \gen_master_slots[4].reg_slice_mi_n_5\, \chosen_reg[0]\(0) => \gen_multi_thread.arbiter_resp_inst/chosen\(0), \chosen_reg[0]_0\(0) => \r_pipe/p_1_in_9\, \chosen_reg[2]\ => \gen_master_slots[0].reg_slice_mi_n_54\, \chosen_reg[2]_0\ => \gen_master_slots[0].reg_slice_mi_n_55\, \gen_master_slots[0].r_issuing_cnt_reg[3]\(3 downto 0) => r_issuing_cnt(3 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 35) => st_mr_rid(11 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34) => p_124_out, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33 downto 32) => st_mr_rmesg(1 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31 downto 0) => st_mr_rmesg(34 downto 3), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 2) => st_mr_bid(11 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(1 downto 0) => st_mr_bmesg(1 downto 0), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_master_slots[0].reg_slice_mi_n_6\, m_axi_bready(0) => m_axi_bready(0), m_axi_bvalid(0) => m_axi_bvalid(0), m_axi_rdata(31 downto 0) => m_axi_rdata(31 downto 0), m_axi_rid(11 downto 0) => m_axi_rid(11 downto 0), m_axi_rlast(0) => m_axi_rlast(0), \m_axi_rready[0]\ => M_AXI_RREADY(0), m_axi_rresp(1 downto 0) => m_axi_rresp(1 downto 0), m_axi_rvalid(0) => m_axi_rvalid(0), p_102_out => p_102_out, p_108_out => p_108_out, p_122_out => p_122_out, p_128_out => p_128_out, p_1_in => p_1_in, p_93_in => p_93_in, \r_cmd_pop_0__1\ => \r_cmd_pop_0__1\, s_axi_bready(0) => s_axi_bready(0), s_axi_rready(0) => s_axi_rready(0) ); \gen_master_slots[0].w_issuing_cnt[0]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => w_issuing_cnt(0), O => \gen_master_slots[0].w_issuing_cnt[0]_i_1_n_0\ ); \gen_master_slots[0].w_issuing_cnt_reg[0]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_17\, D => \gen_master_slots[0].w_issuing_cnt[0]_i_1_n_0\, Q => w_issuing_cnt(0), R => reset ); \gen_master_slots[0].w_issuing_cnt_reg[1]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_17\, D => splitter_aw_mi_n_12, Q => w_issuing_cnt(1), R => reset ); \gen_master_slots[0].w_issuing_cnt_reg[2]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_17\, D => splitter_aw_mi_n_11, Q => w_issuing_cnt(2), R => reset ); \gen_master_slots[0].w_issuing_cnt_reg[3]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_17\, D => splitter_aw_mi_n_10, Q => w_issuing_cnt(3), R => reset ); \gen_master_slots[1].r_issuing_cnt[8]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => r_issuing_cnt(8), O => \gen_master_slots[1].r_issuing_cnt[8]_i_1_n_0\ ); \gen_master_slots[1].r_issuing_cnt_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[1].reg_slice_mi_n_5\, D => addr_arbiter_ar_n_85, Q => r_issuing_cnt(10), R => reset ); \gen_master_slots[1].r_issuing_cnt_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[1].reg_slice_mi_n_5\, D => addr_arbiter_ar_n_84, Q => r_issuing_cnt(11), R => reset ); \gen_master_slots[1].r_issuing_cnt_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[1].reg_slice_mi_n_5\, D => \gen_master_slots[1].r_issuing_cnt[8]_i_1_n_0\, Q => r_issuing_cnt(8), R => reset ); \gen_master_slots[1].r_issuing_cnt_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[1].reg_slice_mi_n_5\, D => addr_arbiter_ar_n_86, Q => r_issuing_cnt(9), R => reset ); \gen_master_slots[1].reg_slice_mi\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_1 port map ( ADDRESS_HIT_0 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_0\, ADDRESS_HIT_1 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_1\, D(13 downto 2) => m_axi_bid(23 downto 12), D(1 downto 0) => m_axi_bresp(3 downto 2), E(0) => \gen_master_slots[1].reg_slice_mi_n_5\, Q(0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(1), aclk => aclk, \aresetn_d_reg[1]\ => \gen_master_slots[4].reg_slice_mi_n_1\, \aresetn_d_reg[1]_0\ => \gen_master_slots[4].reg_slice_mi_n_5\, \chosen_reg[1]\(0) => \gen_multi_thread.arbiter_resp_inst/chosen\(1), \chosen_reg[1]_0\(0) => \r_pipe/p_1_in_8\, \gen_master_slots[0].r_issuing_cnt_reg[0]\ => \gen_master_slots[0].reg_slice_mi_n_6\, \gen_master_slots[1].r_issuing_cnt_reg[11]\(3 downto 0) => r_issuing_cnt(11 downto 8), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 35) => st_mr_rid(23 downto 12), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34) => p_104_out, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33 downto 32) => st_mr_rmesg(36 downto 35), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31 downto 0) => st_mr_rmesg(69 downto 38), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 2) => st_mr_bid(23 downto 12), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(1 downto 0) => st_mr_bmesg(4 downto 3), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_master_slots[1].reg_slice_mi_n_4\, m_axi_bready(0) => m_axi_bready(1), m_axi_bvalid(0) => m_axi_bvalid(1), m_axi_rdata(31 downto 0) => m_axi_rdata(63 downto 32), m_axi_rid(11 downto 0) => m_axi_rid(23 downto 12), m_axi_rlast(0) => m_axi_rlast(1), \m_axi_rready[1]\ => M_AXI_RREADY(1), m_axi_rresp(1 downto 0) => m_axi_rresp(3 downto 2), m_axi_rvalid(0) => m_axi_rvalid(1), match => match, p_102_out => p_102_out, p_108_out => p_108_out, p_1_in => p_1_in, p_75_in => p_75_in, \r_cmd_pop_1__1\ => \r_cmd_pop_1__1\, s_axi_bready(0) => s_axi_bready(0), s_axi_rready(0) => s_axi_rready(0) ); \gen_master_slots[1].w_issuing_cnt[8]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => w_issuing_cnt(8), O => \gen_master_slots[1].w_issuing_cnt[8]_i_1_n_0\ ); \gen_master_slots[1].w_issuing_cnt_reg[10]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_14\, D => splitter_aw_mi_n_1, Q => w_issuing_cnt(10), R => reset ); \gen_master_slots[1].w_issuing_cnt_reg[11]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_14\, D => splitter_aw_mi_n_0, Q => w_issuing_cnt(11), R => reset ); \gen_master_slots[1].w_issuing_cnt_reg[8]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_14\, D => \gen_master_slots[1].w_issuing_cnt[8]_i_1_n_0\, Q => w_issuing_cnt(8), R => reset ); \gen_master_slots[1].w_issuing_cnt_reg[9]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_14\, D => splitter_aw_mi_n_2, Q => w_issuing_cnt(9), R => reset ); \gen_master_slots[2].r_issuing_cnt[16]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => r_issuing_cnt(16), O => \gen_master_slots[2].r_issuing_cnt[16]_i_1_n_0\ ); \gen_master_slots[2].r_issuing_cnt_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[2].reg_slice_mi_n_6\, D => \gen_master_slots[2].r_issuing_cnt[16]_i_1_n_0\, Q => r_issuing_cnt(16), R => reset ); \gen_master_slots[2].r_issuing_cnt_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[2].reg_slice_mi_n_6\, D => addr_arbiter_ar_n_92, Q => r_issuing_cnt(17), R => reset ); \gen_master_slots[2].r_issuing_cnt_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[2].reg_slice_mi_n_6\, D => addr_arbiter_ar_n_91, Q => r_issuing_cnt(18), R => reset ); \gen_master_slots[2].r_issuing_cnt_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[2].reg_slice_mi_n_6\, D => addr_arbiter_ar_n_90, Q => r_issuing_cnt(19), R => reset ); \gen_master_slots[2].reg_slice_mi\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_2 port map ( D(13 downto 2) => m_axi_bid(35 downto 24), D(1 downto 0) => m_axi_bresp(5 downto 4), E(0) => \gen_master_slots[2].reg_slice_mi_n_6\, Q(0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(2), aclk => aclk, \aresetn_d_reg[1]\ => \gen_master_slots[4].reg_slice_mi_n_1\, \aresetn_d_reg[1]_0\ => \gen_master_slots[4].reg_slice_mi_n_5\, \chosen_reg[2]\(0) => \gen_multi_thread.arbiter_resp_inst/chosen\(2), \chosen_reg[2]_0\(0) => \r_pipe/p_1_in\, \gen_master_slots[2].r_issuing_cnt_reg[18]\ => addr_arbiter_ar_n_93, \gen_master_slots[2].r_issuing_cnt_reg[19]\(3 downto 0) => r_issuing_cnt(19 downto 16), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 35) => st_mr_rid(35 downto 24), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34) => p_84_out, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33 downto 32) => st_mr_rmesg(71 downto 70), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31 downto 0) => st_mr_rmesg(104 downto 73), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 2) => st_mr_bid(35 downto 24), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(1 downto 0) => st_mr_bmesg(7 downto 6), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_master_slots[2].reg_slice_mi_n_4\, m_axi_bready(0) => m_axi_bready(2), m_axi_bvalid(0) => m_axi_bvalid(2), m_axi_rdata(31 downto 0) => m_axi_rdata(95 downto 64), m_axi_rid(11 downto 0) => m_axi_rid(35 downto 24), m_axi_rlast(0) => m_axi_rlast(2), \m_axi_rready[2]\ => M_AXI_RREADY(2), m_axi_rresp(1 downto 0) => m_axi_rresp(5 downto 4), m_axi_rvalid(0) => m_axi_rvalid(2), p_1_in => p_1_in, p_57_in => p_57_in, p_82_out => p_82_out, p_88_out => p_88_out, \r_cmd_pop_2__1\ => \r_cmd_pop_2__1\, \s_axi_araddr[25]\ => addr_arbiter_ar_n_76, s_axi_bready(0) => s_axi_bready(0), s_axi_rready(0) => s_axi_rready(0), sel_2 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_2\, sel_4 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_4\ ); \gen_master_slots[2].w_issuing_cnt[16]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => w_issuing_cnt(16), O => \gen_master_slots[2].w_issuing_cnt[16]_i_1_n_0\ ); \gen_master_slots[2].w_issuing_cnt_reg[16]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_15\, D => \gen_master_slots[2].w_issuing_cnt[16]_i_1_n_0\, Q => w_issuing_cnt(16), R => reset ); \gen_master_slots[2].w_issuing_cnt_reg[17]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_15\, D => splitter_aw_mi_n_6, Q => w_issuing_cnt(17), R => reset ); \gen_master_slots[2].w_issuing_cnt_reg[18]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_15\, D => splitter_aw_mi_n_5, Q => w_issuing_cnt(18), R => reset ); \gen_master_slots[2].w_issuing_cnt_reg[19]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_15\, D => splitter_aw_mi_n_4, Q => w_issuing_cnt(19), R => reset ); \gen_master_slots[3].r_issuing_cnt[24]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => r_issuing_cnt(24), O => \gen_master_slots[3].r_issuing_cnt[24]_i_1_n_0\ ); \gen_master_slots[3].r_issuing_cnt_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[3].reg_slice_mi_n_6\, D => \gen_master_slots[3].r_issuing_cnt[24]_i_1_n_0\, Q => r_issuing_cnt(24), R => reset ); \gen_master_slots[3].r_issuing_cnt_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[3].reg_slice_mi_n_6\, D => addr_arbiter_ar_n_89, Q => r_issuing_cnt(25), R => reset ); \gen_master_slots[3].r_issuing_cnt_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[3].reg_slice_mi_n_6\, D => addr_arbiter_ar_n_88, Q => r_issuing_cnt(26), R => reset ); \gen_master_slots[3].r_issuing_cnt_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_master_slots[3].reg_slice_mi_n_6\, D => addr_arbiter_ar_n_87, Q => r_issuing_cnt(27), R => reset ); \gen_master_slots[3].reg_slice_mi\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_3 port map ( ADDRESS_HIT_3 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_3\, D(13 downto 2) => m_axi_bid(47 downto 36), D(1 downto 0) => m_axi_bresp(7 downto 6), E(0) => \gen_master_slots[3].reg_slice_mi_n_6\, Q(0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(3), aclk => aclk, aresetn => aresetn, \aresetn_d_reg[1]\ => \gen_master_slots[3].reg_slice_mi_n_57\, \aresetn_d_reg[1]_0\ => \gen_master_slots[4].reg_slice_mi_n_1\, \aresetn_d_reg[1]_1\ => \gen_master_slots[4].reg_slice_mi_n_5\, \chosen_reg[3]\(0) => \gen_multi_thread.arbiter_resp_inst/chosen\(3), \chosen_reg[3]_0\(0) => \r_pipe/p_1_in_6\, \chosen_reg[4]\ => \gen_master_slots[3].reg_slice_mi_n_55\, \chosen_reg[4]_0\ => \gen_master_slots[3].reg_slice_mi_n_56\, \gen_master_slots[2].r_issuing_cnt_reg[16]\ => \gen_master_slots[2].reg_slice_mi_n_4\, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(46 downto 35) => st_mr_rid(47 downto 36), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(34) => p_64_out, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(33 downto 32) => st_mr_rmesg(106 downto 105), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(31 downto 0) => st_mr_rmesg(139 downto 108), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(13 downto 2) => st_mr_bid(47 downto 36), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(1 downto 0) => st_mr_bmesg(10 downto 9), \gen_no_arbiter.s_ready_i_reg[0]\ => \gen_master_slots[3].reg_slice_mi_n_5\, m_axi_bready(0) => m_axi_bready(3), m_axi_bvalid(0) => m_axi_bvalid(3), m_axi_rdata(31 downto 0) => m_axi_rdata(127 downto 96), m_axi_rid(11 downto 0) => m_axi_rid(47 downto 36), m_axi_rlast(0) => m_axi_rlast(3), \m_axi_rready[3]\ => M_AXI_RREADY(3), m_axi_rresp(1 downto 0) => m_axi_rresp(7 downto 6), m_axi_rvalid(0) => m_axi_rvalid(3), match => match, p_1_in => p_1_in, p_39_in => p_39_in, p_62_out => p_62_out, p_68_out => p_68_out, p_82_out => p_82_out, p_88_out => p_88_out, \r_cmd_pop_3__1\ => \r_cmd_pop_3__1\, \r_cmd_pop_4__1\ => \r_cmd_pop_4__1\, r_issuing_cnt(4) => r_issuing_cnt(32), r_issuing_cnt(3 downto 0) => r_issuing_cnt(27 downto 24), s_axi_bready(0) => s_axi_bready(0), s_axi_rready(0) => s_axi_rready(0) ); \gen_master_slots[3].w_issuing_cnt[24]_i_1\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => w_issuing_cnt(24), O => \gen_master_slots[3].w_issuing_cnt[24]_i_1_n_0\ ); \gen_master_slots[3].w_issuing_cnt_reg[24]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_16\, D => \gen_master_slots[3].w_issuing_cnt[24]_i_1_n_0\, Q => w_issuing_cnt(24), R => reset ); \gen_master_slots[3].w_issuing_cnt_reg[25]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_16\, D => splitter_aw_mi_n_9, Q => w_issuing_cnt(25), R => reset ); \gen_master_slots[3].w_issuing_cnt_reg[26]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_16\, D => splitter_aw_mi_n_8, Q => w_issuing_cnt(26), R => reset ); \gen_master_slots[3].w_issuing_cnt_reg[27]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_16\, D => splitter_aw_mi_n_7, Q => w_issuing_cnt(27), R => reset ); \gen_master_slots[4].r_issuing_cnt_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => addr_arbiter_ar_n_105, Q => r_issuing_cnt(32), R => reset ); \gen_master_slots[4].reg_slice_mi\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_register_slice_v2_1_13_axi_register_slice_4 port map ( D(11 downto 0) => p_32_in(11 downto 0), E(0) => \r_pipe/p_1_in_7\, Q(0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(4), aclk => aclk, \aresetn_d_reg[0]\ => \gen_master_slots[3].reg_slice_mi_n_57\, \chosen_reg[4]\(0) => \gen_multi_thread.arbiter_resp_inst/chosen\(4), \gen_axi.s_axi_rid_i_reg[11]\(11 downto 0) => p_28_in(11 downto 0), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(12 downto 1) => st_mr_rid(59 downto 48), \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]\(0) => p_42_out, \gen_multi_thread.gen_thread_loop[7].active_cnt_reg[58]_0\(11 downto 0) => st_mr_bid(59 downto 48), m_valid_i_reg => \gen_master_slots[4].reg_slice_mi_n_1\, mi_bready_4 => mi_bready_4, mi_rready_4 => mi_rready_4, p_1_in => p_1_in, p_23_in => p_23_in, p_25_in => p_25_in, p_29_in => p_29_in, p_40_out => p_40_out, p_46_out => p_46_out, \r_cmd_pop_4__1\ => \r_cmd_pop_4__1\, s_axi_bready(0) => s_axi_bready(0), s_axi_rready(0) => s_axi_rready(0), s_ready_i_reg => \gen_master_slots[4].reg_slice_mi_n_5\ ); \gen_master_slots[4].w_issuing_cnt_reg[32]\: unisim.vcomponents.FDRE port map ( C => aclk, CE => '1', D => addr_arbiter_aw_n_30, Q => w_issuing_cnt(32), R => reset ); \gen_slave_slots[0].gen_si_read.si_transactor_ar\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor port map ( D(0) => \gen_slave_slots[0].gen_si_read.si_transactor_ar_n_49\, E(0) => s_ready_i0, Q(4 downto 0) => \gen_multi_thread.arbiter_resp_inst/chosen\(4 downto 0), SR(0) => reset, S_AXI_ARREADY(0) => \^s_axi_arready\(0), aa_mi_arvalid => aa_mi_arvalid, aclk => aclk, aresetn_d => aresetn_d, \gen_master_slots[1].r_issuing_cnt_reg[8]\ => \gen_master_slots[1].reg_slice_mi_n_4\, \gen_master_slots[4].r_issuing_cnt_reg[32]\ => \gen_master_slots[3].reg_slice_mi_n_5\, \gen_no_arbiter.s_ready_i_reg[0]\ => addr_arbiter_ar_n_94, \m_payload_i_reg[0]\(0) => \r_pipe/p_1_in_9\, \m_payload_i_reg[0]_0\(0) => \r_pipe/p_1_in_8\, \m_payload_i_reg[0]_1\(0) => \r_pipe/p_1_in_6\, \m_payload_i_reg[0]_2\(0) => \r_pipe/p_1_in\, \m_payload_i_reg[34]\(0) => \r_pipe/p_1_in_7\, \m_payload_i_reg[34]_0\(0) => p_42_out, \m_payload_i_reg[34]_1\(0) => p_64_out, \m_payload_i_reg[34]_2\(0) => p_124_out, \m_payload_i_reg[34]_3\(0) => p_84_out, \m_payload_i_reg[34]_4\(0) => p_104_out, m_valid_i => m_valid_i, m_valid_i_reg => \gen_master_slots[3].reg_slice_mi_n_55\, m_valid_i_reg_0 => \gen_master_slots[0].reg_slice_mi_n_54\, match => match, p_102_out => p_102_out, p_122_out => p_122_out, p_40_out => p_40_out, p_62_out => p_62_out, p_82_out => p_82_out, \s_axi_araddr[18]\ => addr_arbiter_ar_n_103, \s_axi_araddr[25]\ => addr_arbiter_ar_n_104, \s_axi_arid[11]\(11 downto 0) => \s_axi_arqos[3]\(11 downto 0), s_axi_rdata(31 downto 0) => s_axi_rdata(31 downto 0), \s_axi_rid[0]\ => \s_axi_rid[0]\, \s_axi_rid[10]\ => \s_axi_rid[10]\, \s_axi_rid[11]\ => \s_axi_rid[11]\, \s_axi_rid[1]\ => \s_axi_rid[1]\, \s_axi_rid[2]\ => \s_axi_rid[2]\, \s_axi_rid[3]\ => \s_axi_rid[3]\, \s_axi_rid[4]\ => \s_axi_rid[4]\, \s_axi_rid[5]\ => \s_axi_rid[5]\, \s_axi_rid[6]\ => \s_axi_rid[6]\, \s_axi_rid[7]\ => \s_axi_rid[7]\, \s_axi_rid[8]\ => \s_axi_rid[8]\, \s_axi_rid[9]\ => \s_axi_rid[9]\, s_axi_rlast(0) => s_axi_rlast(0), s_axi_rready(0) => s_axi_rready(0), s_axi_rresp(1 downto 0) => s_axi_rresp(1 downto 0), s_axi_rvalid(0) => s_axi_rvalid(0), st_mr_rid(59 downto 0) => st_mr_rid(59 downto 0), st_mr_rmesg(135 downto 104) => st_mr_rmesg(139 downto 108), st_mr_rmesg(103 downto 70) => st_mr_rmesg(106 downto 73), st_mr_rmesg(69 downto 36) => st_mr_rmesg(71 downto 38), st_mr_rmesg(35 downto 2) => st_mr_rmesg(36 downto 3), st_mr_rmesg(1 downto 0) => st_mr_rmesg(1 downto 0) ); \gen_slave_slots[0].gen_si_write.si_transactor_aw\: entity work.\decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_si_transactor__parameterized0\ port map ( ADDRESS_HIT_0 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_0_5\, ADDRESS_HIT_1 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_1_0\, ADDRESS_HIT_3 => \gen_addr_decoder.addr_decoder_inst/ADDRESS_HIT_3_1\, D(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_21\, E(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_14\, Q(4 downto 0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(4 downto 0), SR(0) => reset, aa_sa_awvalid => aa_sa_awvalid, aclk => aclk, aresetn_d => aresetn_d, \gen_master_slots[0].w_issuing_cnt_reg[0]\(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_17\, \gen_master_slots[2].w_issuing_cnt_reg[16]\(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_15\, \gen_master_slots[2].w_issuing_cnt_reg[18]\ => addr_arbiter_aw_n_25, \gen_master_slots[3].w_issuing_cnt_reg[24]\(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_16\, \gen_no_arbiter.s_ready_i_reg[0]\(0) => s_ready_i0_12, \gen_no_arbiter.s_ready_i_reg[0]_0\ => addr_arbiter_aw_n_26, \m_ready_d_reg[1]\ => \^s_axi_awready[0]\, m_valid_i => m_valid_i_11, m_valid_i_reg => \gen_master_slots[3].reg_slice_mi_n_56\, m_valid_i_reg_0 => \gen_master_slots[0].reg_slice_mi_n_55\, match => match_4, p_101_in => p_101_in, p_108_out => p_108_out, p_128_out => p_128_out, p_46_out => p_46_out, p_48_in => p_48_in, p_66_in => p_66_in, p_68_out => p_68_out, p_84_in => p_84_in, p_88_out => p_88_out, \s_axi_awaddr[25]\ => addr_arbiter_aw_n_20, \s_axi_awid[11]\(11 downto 0) => D(11 downto 0), \s_axi_bid[0]\ => \s_axi_bid[0]\, \s_axi_bid[10]\ => \s_axi_bid[10]\, \s_axi_bid[11]\ => \s_axi_bid[11]\, \s_axi_bid[1]\ => \s_axi_bid[1]\, \s_axi_bid[2]\ => \s_axi_bid[2]\, \s_axi_bid[3]\ => \s_axi_bid[3]\, \s_axi_bid[4]\ => \s_axi_bid[4]\, \s_axi_bid[5]\ => \s_axi_bid[5]\, \s_axi_bid[6]\ => \s_axi_bid[6]\, \s_axi_bid[7]\ => \s_axi_bid[7]\, \s_axi_bid[8]\ => \s_axi_bid[8]\, \s_axi_bid[9]\ => \s_axi_bid[9]\, s_axi_bready(0) => s_axi_bready(0), s_axi_bresp(1 downto 0) => s_axi_bresp(1 downto 0), s_axi_bvalid(0) => s_axi_bvalid(0), sel_2 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_2_2\, sel_4 => \gen_addr_decoder.addr_decoder_inst/gen_target[3].gen_region[0].gen_comparator_static.gen_addr_range.addr_decode_comparator/sel_4_3\, st_aa_awtarget_enc(1 downto 0) => st_aa_awtarget_enc(1 downto 0), st_mr_bid(59 downto 0) => st_mr_bid(59 downto 0), st_mr_bmesg(7 downto 6) => st_mr_bmesg(10 downto 9), st_mr_bmesg(5 downto 4) => st_mr_bmesg(7 downto 6), st_mr_bmesg(3 downto 2) => st_mr_bmesg(4 downto 3), st_mr_bmesg(1 downto 0) => st_mr_bmesg(1 downto 0), w_issuing_cnt(16) => w_issuing_cnt(32), w_issuing_cnt(15 downto 12) => w_issuing_cnt(27 downto 24), w_issuing_cnt(11 downto 8) => w_issuing_cnt(19 downto 16), w_issuing_cnt(7 downto 4) => w_issuing_cnt(11 downto 8), w_issuing_cnt(3 downto 0) => w_issuing_cnt(3 downto 0) ); \gen_slave_slots[0].gen_si_write.splitter_aw_si\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter port map ( aclk => aclk, aresetn_d => aresetn_d, m_ready_d(1 downto 0) => m_ready_d(1 downto 0), \s_axi_awready[0]\ => \^s_axi_awready[0]\, s_axi_awvalid(0) => s_axi_awvalid(0), ss_aa_awready => ss_aa_awready, ss_wr_awready => ss_wr_awready, ss_wr_awvalid => ss_wr_awvalid ); \gen_slave_slots[0].gen_si_write.wdata_router_w\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_wdata_router port map ( D(0) => \gen_slave_slots[0].gen_si_write.si_transactor_aw_n_21\, SR(0) => reset, aclk => aclk, m_axi_wready(3 downto 0) => m_axi_wready(3 downto 0), m_axi_wvalid(3 downto 0) => m_axi_wvalid(3 downto 0), m_ready_d(0) => m_ready_d(1), match => match_4, p_22_in => p_22_in, s_axi_awvalid(0) => s_axi_awvalid(0), s_axi_wlast(0) => s_axi_wlast(0), s_axi_wready(0) => s_axi_wready(0), s_axi_wvalid(0) => s_axi_wvalid(0), ss_wr_awready => ss_wr_awready, ss_wr_awvalid => ss_wr_awvalid, st_aa_awtarget_enc(1 downto 0) => st_aa_awtarget_enc(1 downto 0), \write_cs0__0\ => \write_cs0__0\ ); splitter_aw_mi: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_splitter_5 port map ( D(2) => splitter_aw_mi_n_0, D(1) => splitter_aw_mi_n_1, D(0) => splitter_aw_mi_n_2, Q(3 downto 0) => aa_mi_awtarget_hot(3 downto 0), aa_sa_awvalid => aa_sa_awvalid, aclk => aclk, aresetn_d => aresetn_d, \chosen_reg[3]\(3 downto 0) => \gen_multi_thread.arbiter_resp_inst/chosen_10\(3 downto 0), \gen_axi.s_axi_awready_i_reg\ => splitter_aw_mi_n_3, \gen_master_slots[0].w_issuing_cnt_reg[3]\(2) => splitter_aw_mi_n_10, \gen_master_slots[0].w_issuing_cnt_reg[3]\(1) => splitter_aw_mi_n_11, \gen_master_slots[0].w_issuing_cnt_reg[3]\(0) => splitter_aw_mi_n_12, \gen_master_slots[2].w_issuing_cnt_reg[19]\(2) => splitter_aw_mi_n_4, \gen_master_slots[2].w_issuing_cnt_reg[19]\(1) => splitter_aw_mi_n_5, \gen_master_slots[2].w_issuing_cnt_reg[19]\(0) => splitter_aw_mi_n_6, \gen_master_slots[3].w_issuing_cnt_reg[27]\(2) => splitter_aw_mi_n_7, \gen_master_slots[3].w_issuing_cnt_reg[27]\(1) => splitter_aw_mi_n_8, \gen_master_slots[3].w_issuing_cnt_reg[27]\(0) => splitter_aw_mi_n_9, m_axi_awready(3 downto 0) => m_axi_awready(3 downto 0), m_ready_d(1 downto 0) => m_ready_d_13(1 downto 0), \mi_awready_mux__3\ => \mi_awready_mux__3\, p_108_out => p_108_out, p_128_out => p_128_out, p_68_out => p_68_out, p_88_out => p_88_out, s_axi_bready(0) => s_axi_bready(0), \s_ready_i0__1\(0) => \s_ready_i0__1\(0), \sa_wm_awready_mux__3\ => \sa_wm_awready_mux__3\, w_issuing_cnt(15 downto 12) => w_issuing_cnt(27 downto 24), w_issuing_cnt(11 downto 8) => w_issuing_cnt(19 downto 16), w_issuing_cnt(7 downto 4) => w_issuing_cnt(11 downto 8), w_issuing_cnt(3 downto 0) => w_issuing_cnt(3 downto 0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar is port ( aclk : in STD_LOGIC; aresetn : in STD_LOGIC; s_axi_awid : in STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_awaddr : in STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_awlen : in STD_LOGIC_VECTOR ( 7 downto 0 ); s_axi_awsize : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_awburst : in STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_awlock : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awcache : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_awprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_awqos : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_awuser : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awready : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wid : in STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_wdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_wstrb : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_wlast : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wuser : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wready : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bid : out STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_buser : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arid : in STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_araddr : in STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_arlen : in STD_LOGIC_VECTOR ( 7 downto 0 ); s_axi_arsize : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_arburst : in STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_arlock : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arcache : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_arprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_arqos : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_aruser : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arready : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rid : out STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_rlast : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_ruser : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_awid : out STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_awaddr : out STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_awlen : out STD_LOGIC_VECTOR ( 31 downto 0 ); m_axi_awsize : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_awburst : out STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_awlock : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awcache : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_awprot : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_awregion : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_awqos : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_awuser : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wid : out STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_wdata : out STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_wstrb : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_wlast : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wuser : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_bid : in STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_bresp : in STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_buser : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_bvalid : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_bready : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arid : out STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_araddr : out STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_arlen : out STD_LOGIC_VECTOR ( 31 downto 0 ); m_axi_arsize : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_arburst : out STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_arlock : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arcache : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_arprot : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_arregion : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_arqos : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_aruser : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rid : in STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_ruser : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rready : out STD_LOGIC_VECTOR ( 3 downto 0 ) ); attribute C_AXI_ADDR_WIDTH : integer; attribute C_AXI_ADDR_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 32; attribute C_AXI_ARUSER_WIDTH : integer; attribute C_AXI_ARUSER_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_AXI_AWUSER_WIDTH : integer; attribute C_AXI_AWUSER_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_AXI_BUSER_WIDTH : integer; attribute C_AXI_BUSER_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_AXI_DATA_WIDTH : integer; attribute C_AXI_DATA_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 32; attribute C_AXI_ID_WIDTH : integer; attribute C_AXI_ID_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 12; attribute C_AXI_PROTOCOL : integer; attribute C_AXI_PROTOCOL of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute C_AXI_RUSER_WIDTH : integer; attribute C_AXI_RUSER_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_AXI_SUPPORTS_USER_SIGNALS : integer; attribute C_AXI_SUPPORTS_USER_SIGNALS of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute C_AXI_WUSER_WIDTH : integer; attribute C_AXI_WUSER_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_CONNECTIVITY_MODE : integer; attribute C_CONNECTIVITY_MODE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_DEBUG : integer; attribute C_DEBUG of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_FAMILY : string; attribute C_FAMILY of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "zynq"; attribute C_M_AXI_ADDR_WIDTH : string; attribute C_M_AXI_ADDR_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000000000000000000000000000000010000"; attribute C_M_AXI_BASE_ADDR : string; attribute C_M_AXI_BASE_ADDR of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "256'b0000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100001010000000000000000000000000000000000000000000000000000000010000010010000100000000000000000000000000000000000000000000000001000001001000000000000000000000"; attribute C_M_AXI_READ_CONNECTIVITY : string; attribute C_M_AXI_READ_CONNECTIVITY of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001"; attribute C_M_AXI_READ_ISSUING : string; attribute C_M_AXI_READ_ISSUING of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000"; attribute C_M_AXI_SECURE : string; attribute C_M_AXI_SECURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"; attribute C_M_AXI_WRITE_CONNECTIVITY : string; attribute C_M_AXI_WRITE_CONNECTIVITY of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001"; attribute C_M_AXI_WRITE_ISSUING : string; attribute C_M_AXI_WRITE_ISSUING of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000"; attribute C_NUM_ADDR_RANGES : integer; attribute C_NUM_ADDR_RANGES of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_NUM_MASTER_SLOTS : integer; attribute C_NUM_MASTER_SLOTS of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 4; attribute C_NUM_SLAVE_SLOTS : integer; attribute C_NUM_SLAVE_SLOTS of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute C_R_REGISTER : integer; attribute C_R_REGISTER of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute C_S_AXI_ARB_PRIORITY : integer; attribute C_S_AXI_ARB_PRIORITY of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute C_S_AXI_BASE_ID : integer; attribute C_S_AXI_BASE_ID of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute C_S_AXI_READ_ACCEPTANCE : integer; attribute C_S_AXI_READ_ACCEPTANCE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 8; attribute C_S_AXI_SINGLE_THREAD : integer; attribute C_S_AXI_SINGLE_THREAD of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute C_S_AXI_THREAD_ID_WIDTH : integer; attribute C_S_AXI_THREAD_ID_WIDTH of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 12; attribute C_S_AXI_WRITE_ACCEPTANCE : integer; attribute C_S_AXI_WRITE_ACCEPTANCE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 8; attribute DowngradeIPIdentifiedWarnings : string; attribute DowngradeIPIdentifiedWarnings of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "yes"; attribute P_ADDR_DECODE : integer; attribute P_ADDR_DECODE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute P_AXI3 : integer; attribute P_AXI3 of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute P_AXI4 : integer; attribute P_AXI4 of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 0; attribute P_AXILITE : integer; attribute P_AXILITE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 2; attribute P_AXILITE_SIZE : string; attribute P_AXILITE_SIZE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "3'b010"; attribute P_FAMILY : string; attribute P_FAMILY of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "zynq"; attribute P_INCR : string; attribute P_INCR of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "2'b01"; attribute P_LEN : integer; attribute P_LEN of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 8; attribute P_LOCK : integer; attribute P_LOCK of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute P_M_AXI_ERR_MODE : string; attribute P_M_AXI_ERR_MODE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "128'b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"; attribute P_M_AXI_SUPPORTS_READ : string; attribute P_M_AXI_SUPPORTS_READ of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "4'b1111"; attribute P_M_AXI_SUPPORTS_WRITE : string; attribute P_M_AXI_SUPPORTS_WRITE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "4'b1111"; attribute P_ONES : string; attribute P_ONES of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "65'b11111111111111111111111111111111111111111111111111111111111111111"; attribute P_RANGE_CHECK : integer; attribute P_RANGE_CHECK of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is 1; attribute P_S_AXI_BASE_ID : string; attribute P_S_AXI_BASE_ID of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "64'b0000000000000000000000000000000000000000000000000000000000000000"; attribute P_S_AXI_HIGH_ID : string; attribute P_S_AXI_HIGH_ID of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "64'b0000000000000000000000000000000000000000000000000000111111111111"; attribute P_S_AXI_SUPPORTS_READ : string; attribute P_S_AXI_SUPPORTS_READ of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "1'b1"; attribute P_S_AXI_SUPPORTS_WRITE : string; attribute P_S_AXI_SUPPORTS_WRITE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar : entity is "1'b1"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar is signal \<const0>\ : STD_LOGIC; signal \^m_axi_araddr\ : STD_LOGIC_VECTOR ( 127 downto 96 ); signal \^m_axi_arburst\ : STD_LOGIC_VECTOR ( 7 downto 6 ); signal \^m_axi_arcache\ : STD_LOGIC_VECTOR ( 15 downto 12 ); signal \^m_axi_arid\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \^m_axi_arlen\ : STD_LOGIC_VECTOR ( 7 downto 0 ); signal \^m_axi_arlock\ : STD_LOGIC_VECTOR ( 3 to 3 ); signal \^m_axi_arprot\ : STD_LOGIC_VECTOR ( 11 downto 9 ); signal \^m_axi_arqos\ : STD_LOGIC_VECTOR ( 15 downto 12 ); signal \^m_axi_arsize\ : STD_LOGIC_VECTOR ( 11 downto 9 ); signal \^m_axi_awaddr\ : STD_LOGIC_VECTOR ( 127 downto 96 ); signal \^m_axi_awburst\ : STD_LOGIC_VECTOR ( 7 downto 6 ); signal \^m_axi_awcache\ : STD_LOGIC_VECTOR ( 15 downto 12 ); signal \^m_axi_awid\ : STD_LOGIC_VECTOR ( 11 downto 0 ); signal \^m_axi_awlen\ : STD_LOGIC_VECTOR ( 31 downto 24 ); signal \^m_axi_awlock\ : STD_LOGIC_VECTOR ( 3 to 3 ); signal \^m_axi_awprot\ : STD_LOGIC_VECTOR ( 11 downto 9 ); signal \^m_axi_awqos\ : STD_LOGIC_VECTOR ( 15 downto 12 ); signal \^m_axi_awsize\ : STD_LOGIC_VECTOR ( 11 downto 9 ); signal \^s_axi_wdata\ : STD_LOGIC_VECTOR ( 31 downto 0 ); signal \^s_axi_wlast\ : STD_LOGIC_VECTOR ( 0 to 0 ); signal \^s_axi_wstrb\ : STD_LOGIC_VECTOR ( 3 downto 0 ); begin \^s_axi_wdata\(31 downto 0) <= s_axi_wdata(31 downto 0); \^s_axi_wlast\(0) <= s_axi_wlast(0); \^s_axi_wstrb\(3 downto 0) <= s_axi_wstrb(3 downto 0); m_axi_araddr(127 downto 96) <= \^m_axi_araddr\(127 downto 96); m_axi_araddr(95 downto 64) <= \^m_axi_araddr\(127 downto 96); m_axi_araddr(63 downto 32) <= \^m_axi_araddr\(127 downto 96); m_axi_araddr(31 downto 0) <= \^m_axi_araddr\(127 downto 96); m_axi_arburst(7 downto 6) <= \^m_axi_arburst\(7 downto 6); m_axi_arburst(5 downto 4) <= \^m_axi_arburst\(7 downto 6); m_axi_arburst(3 downto 2) <= \^m_axi_arburst\(7 downto 6); m_axi_arburst(1 downto 0) <= \^m_axi_arburst\(7 downto 6); m_axi_arcache(15 downto 12) <= \^m_axi_arcache\(15 downto 12); m_axi_arcache(11 downto 8) <= \^m_axi_arcache\(15 downto 12); m_axi_arcache(7 downto 4) <= \^m_axi_arcache\(15 downto 12); m_axi_arcache(3 downto 0) <= \^m_axi_arcache\(15 downto 12); m_axi_arid(47 downto 36) <= \^m_axi_arid\(11 downto 0); m_axi_arid(35 downto 24) <= \^m_axi_arid\(11 downto 0); m_axi_arid(23 downto 12) <= \^m_axi_arid\(11 downto 0); m_axi_arid(11 downto 0) <= \^m_axi_arid\(11 downto 0); m_axi_arlen(31 downto 24) <= \^m_axi_arlen\(7 downto 0); m_axi_arlen(23 downto 16) <= \^m_axi_arlen\(7 downto 0); m_axi_arlen(15 downto 8) <= \^m_axi_arlen\(7 downto 0); m_axi_arlen(7 downto 0) <= \^m_axi_arlen\(7 downto 0); m_axi_arlock(3) <= \^m_axi_arlock\(3); m_axi_arlock(2) <= \^m_axi_arlock\(3); m_axi_arlock(1) <= \^m_axi_arlock\(3); m_axi_arlock(0) <= \^m_axi_arlock\(3); m_axi_arprot(11 downto 9) <= \^m_axi_arprot\(11 downto 9); m_axi_arprot(8 downto 6) <= \^m_axi_arprot\(11 downto 9); m_axi_arprot(5 downto 3) <= \^m_axi_arprot\(11 downto 9); m_axi_arprot(2 downto 0) <= \^m_axi_arprot\(11 downto 9); m_axi_arqos(15 downto 12) <= \^m_axi_arqos\(15 downto 12); m_axi_arqos(11 downto 8) <= \^m_axi_arqos\(15 downto 12); m_axi_arqos(7 downto 4) <= \^m_axi_arqos\(15 downto 12); m_axi_arqos(3 downto 0) <= \^m_axi_arqos\(15 downto 12); m_axi_arregion(15) <= \<const0>\; m_axi_arregion(14) <= \<const0>\; m_axi_arregion(13) <= \<const0>\; m_axi_arregion(12) <= \<const0>\; m_axi_arregion(11) <= \<const0>\; m_axi_arregion(10) <= \<const0>\; m_axi_arregion(9) <= \<const0>\; m_axi_arregion(8) <= \<const0>\; m_axi_arregion(7) <= \<const0>\; m_axi_arregion(6) <= \<const0>\; m_axi_arregion(5) <= \<const0>\; m_axi_arregion(4) <= \<const0>\; m_axi_arregion(3) <= \<const0>\; m_axi_arregion(2) <= \<const0>\; m_axi_arregion(1) <= \<const0>\; m_axi_arregion(0) <= \<const0>\; m_axi_arsize(11 downto 9) <= \^m_axi_arsize\(11 downto 9); m_axi_arsize(8 downto 6) <= \^m_axi_arsize\(11 downto 9); m_axi_arsize(5 downto 3) <= \^m_axi_arsize\(11 downto 9); m_axi_arsize(2 downto 0) <= \^m_axi_arsize\(11 downto 9); m_axi_aruser(3) <= \<const0>\; m_axi_aruser(2) <= \<const0>\; m_axi_aruser(1) <= \<const0>\; m_axi_aruser(0) <= \<const0>\; m_axi_awaddr(127 downto 96) <= \^m_axi_awaddr\(127 downto 96); m_axi_awaddr(95 downto 64) <= \^m_axi_awaddr\(127 downto 96); m_axi_awaddr(63 downto 32) <= \^m_axi_awaddr\(127 downto 96); m_axi_awaddr(31 downto 0) <= \^m_axi_awaddr\(127 downto 96); m_axi_awburst(7 downto 6) <= \^m_axi_awburst\(7 downto 6); m_axi_awburst(5 downto 4) <= \^m_axi_awburst\(7 downto 6); m_axi_awburst(3 downto 2) <= \^m_axi_awburst\(7 downto 6); m_axi_awburst(1 downto 0) <= \^m_axi_awburst\(7 downto 6); m_axi_awcache(15 downto 12) <= \^m_axi_awcache\(15 downto 12); m_axi_awcache(11 downto 8) <= \^m_axi_awcache\(15 downto 12); m_axi_awcache(7 downto 4) <= \^m_axi_awcache\(15 downto 12); m_axi_awcache(3 downto 0) <= \^m_axi_awcache\(15 downto 12); m_axi_awid(47 downto 36) <= \^m_axi_awid\(11 downto 0); m_axi_awid(35 downto 24) <= \^m_axi_awid\(11 downto 0); m_axi_awid(23 downto 12) <= \^m_axi_awid\(11 downto 0); m_axi_awid(11 downto 0) <= \^m_axi_awid\(11 downto 0); m_axi_awlen(31 downto 24) <= \^m_axi_awlen\(31 downto 24); m_axi_awlen(23 downto 16) <= \^m_axi_awlen\(31 downto 24); m_axi_awlen(15 downto 8) <= \^m_axi_awlen\(31 downto 24); m_axi_awlen(7 downto 0) <= \^m_axi_awlen\(31 downto 24); m_axi_awlock(3) <= \^m_axi_awlock\(3); m_axi_awlock(2) <= \^m_axi_awlock\(3); m_axi_awlock(1) <= \^m_axi_awlock\(3); m_axi_awlock(0) <= \^m_axi_awlock\(3); m_axi_awprot(11 downto 9) <= \^m_axi_awprot\(11 downto 9); m_axi_awprot(8 downto 6) <= \^m_axi_awprot\(11 downto 9); m_axi_awprot(5 downto 3) <= \^m_axi_awprot\(11 downto 9); m_axi_awprot(2 downto 0) <= \^m_axi_awprot\(11 downto 9); m_axi_awqos(15 downto 12) <= \^m_axi_awqos\(15 downto 12); m_axi_awqos(11 downto 8) <= \^m_axi_awqos\(15 downto 12); m_axi_awqos(7 downto 4) <= \^m_axi_awqos\(15 downto 12); m_axi_awqos(3 downto 0) <= \^m_axi_awqos\(15 downto 12); m_axi_awregion(15) <= \<const0>\; m_axi_awregion(14) <= \<const0>\; m_axi_awregion(13) <= \<const0>\; m_axi_awregion(12) <= \<const0>\; m_axi_awregion(11) <= \<const0>\; m_axi_awregion(10) <= \<const0>\; m_axi_awregion(9) <= \<const0>\; m_axi_awregion(8) <= \<const0>\; m_axi_awregion(7) <= \<const0>\; m_axi_awregion(6) <= \<const0>\; m_axi_awregion(5) <= \<const0>\; m_axi_awregion(4) <= \<const0>\; m_axi_awregion(3) <= \<const0>\; m_axi_awregion(2) <= \<const0>\; m_axi_awregion(1) <= \<const0>\; m_axi_awregion(0) <= \<const0>\; m_axi_awsize(11 downto 9) <= \^m_axi_awsize\(11 downto 9); m_axi_awsize(8 downto 6) <= \^m_axi_awsize\(11 downto 9); m_axi_awsize(5 downto 3) <= \^m_axi_awsize\(11 downto 9); m_axi_awsize(2 downto 0) <= \^m_axi_awsize\(11 downto 9); m_axi_awuser(3) <= \<const0>\; m_axi_awuser(2) <= \<const0>\; m_axi_awuser(1) <= \<const0>\; m_axi_awuser(0) <= \<const0>\; m_axi_wdata(127 downto 96) <= \^s_axi_wdata\(31 downto 0); m_axi_wdata(95 downto 64) <= \^s_axi_wdata\(31 downto 0); m_axi_wdata(63 downto 32) <= \^s_axi_wdata\(31 downto 0); m_axi_wdata(31 downto 0) <= \^s_axi_wdata\(31 downto 0); m_axi_wid(47) <= \<const0>\; m_axi_wid(46) <= \<const0>\; m_axi_wid(45) <= \<const0>\; m_axi_wid(44) <= \<const0>\; m_axi_wid(43) <= \<const0>\; m_axi_wid(42) <= \<const0>\; m_axi_wid(41) <= \<const0>\; m_axi_wid(40) <= \<const0>\; m_axi_wid(39) <= \<const0>\; m_axi_wid(38) <= \<const0>\; m_axi_wid(37) <= \<const0>\; m_axi_wid(36) <= \<const0>\; m_axi_wid(35) <= \<const0>\; m_axi_wid(34) <= \<const0>\; m_axi_wid(33) <= \<const0>\; m_axi_wid(32) <= \<const0>\; m_axi_wid(31) <= \<const0>\; m_axi_wid(30) <= \<const0>\; m_axi_wid(29) <= \<const0>\; m_axi_wid(28) <= \<const0>\; m_axi_wid(27) <= \<const0>\; m_axi_wid(26) <= \<const0>\; m_axi_wid(25) <= \<const0>\; m_axi_wid(24) <= \<const0>\; m_axi_wid(23) <= \<const0>\; m_axi_wid(22) <= \<const0>\; m_axi_wid(21) <= \<const0>\; m_axi_wid(20) <= \<const0>\; m_axi_wid(19) <= \<const0>\; m_axi_wid(18) <= \<const0>\; m_axi_wid(17) <= \<const0>\; m_axi_wid(16) <= \<const0>\; m_axi_wid(15) <= \<const0>\; m_axi_wid(14) <= \<const0>\; m_axi_wid(13) <= \<const0>\; m_axi_wid(12) <= \<const0>\; m_axi_wid(11) <= \<const0>\; m_axi_wid(10) <= \<const0>\; m_axi_wid(9) <= \<const0>\; m_axi_wid(8) <= \<const0>\; m_axi_wid(7) <= \<const0>\; m_axi_wid(6) <= \<const0>\; m_axi_wid(5) <= \<const0>\; m_axi_wid(4) <= \<const0>\; m_axi_wid(3) <= \<const0>\; m_axi_wid(2) <= \<const0>\; m_axi_wid(1) <= \<const0>\; m_axi_wid(0) <= \<const0>\; m_axi_wlast(3) <= \^s_axi_wlast\(0); m_axi_wlast(2) <= \^s_axi_wlast\(0); m_axi_wlast(1) <= \^s_axi_wlast\(0); m_axi_wlast(0) <= \^s_axi_wlast\(0); m_axi_wstrb(15 downto 12) <= \^s_axi_wstrb\(3 downto 0); m_axi_wstrb(11 downto 8) <= \^s_axi_wstrb\(3 downto 0); m_axi_wstrb(7 downto 4) <= \^s_axi_wstrb\(3 downto 0); m_axi_wstrb(3 downto 0) <= \^s_axi_wstrb\(3 downto 0); m_axi_wuser(3) <= \<const0>\; m_axi_wuser(2) <= \<const0>\; m_axi_wuser(1) <= \<const0>\; m_axi_wuser(0) <= \<const0>\; s_axi_buser(0) <= \<const0>\; s_axi_ruser(0) <= \<const0>\; GND: unisim.vcomponents.GND port map ( G => \<const0>\ ); \gen_samd.crossbar_samd\: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_crossbar port map ( D(68 downto 65) => s_axi_awqos(3 downto 0), D(64 downto 61) => s_axi_awcache(3 downto 0), D(60 downto 59) => s_axi_awburst(1 downto 0), D(58 downto 56) => s_axi_awprot(2 downto 0), D(55) => s_axi_awlock(0), D(54 downto 52) => s_axi_awsize(2 downto 0), D(51 downto 44) => s_axi_awlen(7 downto 0), D(43 downto 12) => s_axi_awaddr(31 downto 0), D(11 downto 0) => s_axi_awid(11 downto 0), M_AXI_RREADY(3 downto 0) => m_axi_rready(3 downto 0), Q(68 downto 65) => \^m_axi_awqos\(15 downto 12), Q(64 downto 61) => \^m_axi_awcache\(15 downto 12), Q(60 downto 59) => \^m_axi_awburst\(7 downto 6), Q(58 downto 56) => \^m_axi_awprot\(11 downto 9), Q(55) => \^m_axi_awlock\(3), Q(54 downto 52) => \^m_axi_awsize\(11 downto 9), Q(51 downto 44) => \^m_axi_awlen\(31 downto 24), Q(43 downto 12) => \^m_axi_awaddr\(127 downto 96), Q(11 downto 0) => \^m_axi_awid\(11 downto 0), S_AXI_ARREADY(0) => s_axi_arready(0), aclk => aclk, aresetn => aresetn, \m_axi_arqos[15]\(68 downto 65) => \^m_axi_arqos\(15 downto 12), \m_axi_arqos[15]\(64 downto 61) => \^m_axi_arcache\(15 downto 12), \m_axi_arqos[15]\(60 downto 59) => \^m_axi_arburst\(7 downto 6), \m_axi_arqos[15]\(58 downto 56) => \^m_axi_arprot\(11 downto 9), \m_axi_arqos[15]\(55) => \^m_axi_arlock\(3), \m_axi_arqos[15]\(54 downto 52) => \^m_axi_arsize\(11 downto 9), \m_axi_arqos[15]\(51 downto 44) => \^m_axi_arlen\(7 downto 0), \m_axi_arqos[15]\(43 downto 12) => \^m_axi_araddr\(127 downto 96), \m_axi_arqos[15]\(11 downto 0) => \^m_axi_arid\(11 downto 0), m_axi_arready(3 downto 0) => m_axi_arready(3 downto 0), m_axi_arvalid(3 downto 0) => m_axi_arvalid(3 downto 0), m_axi_awready(3 downto 0) => m_axi_awready(3 downto 0), m_axi_awvalid(3 downto 0) => m_axi_awvalid(3 downto 0), m_axi_bid(47 downto 0) => m_axi_bid(47 downto 0), m_axi_bready(3 downto 0) => m_axi_bready(3 downto 0), m_axi_bresp(7 downto 0) => m_axi_bresp(7 downto 0), m_axi_bvalid(3 downto 0) => m_axi_bvalid(3 downto 0), m_axi_rdata(127 downto 0) => m_axi_rdata(127 downto 0), m_axi_rid(47 downto 0) => m_axi_rid(47 downto 0), m_axi_rlast(3 downto 0) => m_axi_rlast(3 downto 0), m_axi_rresp(7 downto 0) => m_axi_rresp(7 downto 0), m_axi_rvalid(3 downto 0) => m_axi_rvalid(3 downto 0), m_axi_wready(3 downto 0) => m_axi_wready(3 downto 0), m_axi_wvalid(3 downto 0) => m_axi_wvalid(3 downto 0), \s_axi_arqos[3]\(68 downto 65) => s_axi_arqos(3 downto 0), \s_axi_arqos[3]\(64 downto 61) => s_axi_arcache(3 downto 0), \s_axi_arqos[3]\(60 downto 59) => s_axi_arburst(1 downto 0), \s_axi_arqos[3]\(58 downto 56) => s_axi_arprot(2 downto 0), \s_axi_arqos[3]\(55) => s_axi_arlock(0), \s_axi_arqos[3]\(54 downto 52) => s_axi_arsize(2 downto 0), \s_axi_arqos[3]\(51 downto 44) => s_axi_arlen(7 downto 0), \s_axi_arqos[3]\(43 downto 12) => s_axi_araddr(31 downto 0), \s_axi_arqos[3]\(11 downto 0) => s_axi_arid(11 downto 0), s_axi_arvalid(0) => s_axi_arvalid(0), \s_axi_awready[0]\ => s_axi_awready(0), s_axi_awvalid(0) => s_axi_awvalid(0), \s_axi_bid[0]\ => s_axi_bid(0), \s_axi_bid[10]\ => s_axi_bid(10), \s_axi_bid[11]\ => s_axi_bid(11), \s_axi_bid[1]\ => s_axi_bid(1), \s_axi_bid[2]\ => s_axi_bid(2), \s_axi_bid[3]\ => s_axi_bid(3), \s_axi_bid[4]\ => s_axi_bid(4), \s_axi_bid[5]\ => s_axi_bid(5), \s_axi_bid[6]\ => s_axi_bid(6), \s_axi_bid[7]\ => s_axi_bid(7), \s_axi_bid[8]\ => s_axi_bid(8), \s_axi_bid[9]\ => s_axi_bid(9), s_axi_bready(0) => s_axi_bready(0), s_axi_bresp(1 downto 0) => s_axi_bresp(1 downto 0), s_axi_bvalid(0) => s_axi_bvalid(0), s_axi_rdata(31 downto 0) => s_axi_rdata(31 downto 0), \s_axi_rid[0]\ => s_axi_rid(0), \s_axi_rid[10]\ => s_axi_rid(10), \s_axi_rid[11]\ => s_axi_rid(11), \s_axi_rid[1]\ => s_axi_rid(1), \s_axi_rid[2]\ => s_axi_rid(2), \s_axi_rid[3]\ => s_axi_rid(3), \s_axi_rid[4]\ => s_axi_rid(4), \s_axi_rid[5]\ => s_axi_rid(5), \s_axi_rid[6]\ => s_axi_rid(6), \s_axi_rid[7]\ => s_axi_rid(7), \s_axi_rid[8]\ => s_axi_rid(8), \s_axi_rid[9]\ => s_axi_rid(9), s_axi_rlast(0) => s_axi_rlast(0), s_axi_rready(0) => s_axi_rready(0), s_axi_rresp(1 downto 0) => s_axi_rresp(1 downto 0), s_axi_rvalid(0) => s_axi_rvalid(0), s_axi_wlast(0) => \^s_axi_wlast\(0), s_axi_wready(0) => s_axi_wready(0), s_axi_wvalid(0) => s_axi_wvalid(0) ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix is port ( aclk : in STD_LOGIC; aresetn : in STD_LOGIC; s_axi_awid : in STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_awaddr : in STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_awlen : in STD_LOGIC_VECTOR ( 7 downto 0 ); s_axi_awsize : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_awburst : in STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_awlock : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awcache : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_awprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_awqos : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_awvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_awready : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_wstrb : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_wlast : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_wready : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bid : out STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_bvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_bready : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arid : in STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_araddr : in STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_arlen : in STD_LOGIC_VECTOR ( 7 downto 0 ); s_axi_arsize : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_arburst : in STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_arlock : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arcache : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_arprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s_axi_arqos : in STD_LOGIC_VECTOR ( 3 downto 0 ); s_axi_arvalid : in STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_arready : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rid : out STD_LOGIC_VECTOR ( 11 downto 0 ); s_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s_axi_rlast : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rvalid : out STD_LOGIC_VECTOR ( 0 to 0 ); s_axi_rready : in STD_LOGIC_VECTOR ( 0 to 0 ); m_axi_awid : out STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_awaddr : out STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_awlen : out STD_LOGIC_VECTOR ( 31 downto 0 ); m_axi_awsize : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_awburst : out STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_awlock : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awcache : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_awprot : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_awregion : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_awqos : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_awvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_awready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wdata : out STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_wstrb : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_wlast : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_wready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_bid : in STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_bresp : in STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_bvalid : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_bready : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arid : out STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_araddr : out STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_arlen : out STD_LOGIC_VECTOR ( 31 downto 0 ); m_axi_arsize : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_arburst : out STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_arlock : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arcache : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_arprot : out STD_LOGIC_VECTOR ( 11 downto 0 ); m_axi_arregion : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_arqos : out STD_LOGIC_VECTOR ( 15 downto 0 ); m_axi_arvalid : out STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_arready : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rid : in STD_LOGIC_VECTOR ( 47 downto 0 ); m_axi_rdata : in STD_LOGIC_VECTOR ( 127 downto 0 ); m_axi_rresp : in STD_LOGIC_VECTOR ( 7 downto 0 ); m_axi_rlast : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rvalid : in STD_LOGIC_VECTOR ( 3 downto 0 ); m_axi_rready : out STD_LOGIC_VECTOR ( 3 downto 0 ) ); attribute NotValidForBitStream : boolean; attribute NotValidForBitStream of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix : entity is true; attribute CHECK_LICENSE_TYPE : string; attribute CHECK_LICENSE_TYPE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix : entity is "zqynq_lab_1_design_xbar_0,axi_crossbar_v2_1_14_axi_crossbar,{}"; attribute DowngradeIPIdentifiedWarnings : string; attribute DowngradeIPIdentifiedWarnings of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix : entity is "yes"; attribute X_CORE_INFO : string; attribute X_CORE_INFO of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix : entity is "axi_crossbar_v2_1_14_axi_crossbar,Vivado 2017.2"; end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix; architecture STRUCTURE of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix is signal NLW_inst_m_axi_aruser_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_m_axi_awuser_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_m_axi_wid_UNCONNECTED : STD_LOGIC_VECTOR ( 47 downto 0 ); signal NLW_inst_m_axi_wuser_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_s_axi_buser_UNCONNECTED : STD_LOGIC_VECTOR ( 0 to 0 ); signal NLW_inst_s_axi_ruser_UNCONNECTED : STD_LOGIC_VECTOR ( 0 to 0 ); attribute C_AXI_ADDR_WIDTH : integer; attribute C_AXI_ADDR_WIDTH of inst : label is 32; attribute C_AXI_ARUSER_WIDTH : integer; attribute C_AXI_ARUSER_WIDTH of inst : label is 1; attribute C_AXI_AWUSER_WIDTH : integer; attribute C_AXI_AWUSER_WIDTH of inst : label is 1; attribute C_AXI_BUSER_WIDTH : integer; attribute C_AXI_BUSER_WIDTH of inst : label is 1; attribute C_AXI_DATA_WIDTH : integer; attribute C_AXI_DATA_WIDTH of inst : label is 32; attribute C_AXI_ID_WIDTH : integer; attribute C_AXI_ID_WIDTH of inst : label is 12; attribute C_AXI_PROTOCOL : integer; attribute C_AXI_PROTOCOL of inst : label is 0; attribute C_AXI_RUSER_WIDTH : integer; attribute C_AXI_RUSER_WIDTH of inst : label is 1; attribute C_AXI_SUPPORTS_USER_SIGNALS : integer; attribute C_AXI_SUPPORTS_USER_SIGNALS of inst : label is 0; attribute C_AXI_WUSER_WIDTH : integer; attribute C_AXI_WUSER_WIDTH of inst : label is 1; attribute C_CONNECTIVITY_MODE : integer; attribute C_CONNECTIVITY_MODE of inst : label is 1; attribute C_DEBUG : integer; attribute C_DEBUG of inst : label is 1; attribute C_FAMILY : string; attribute C_FAMILY of inst : label is "zynq"; attribute C_M_AXI_ADDR_WIDTH : string; attribute C_M_AXI_ADDR_WIDTH of inst : label is "128'b00000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000000000000000000000000000000010000"; attribute C_M_AXI_BASE_ADDR : string; attribute C_M_AXI_BASE_ADDR of inst : label is "256'b0000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100001010000000000000000000000000000000000000000000000000000000010000010010000100000000000000000000000000000000000000000000000001000001001000000000000000000000"; attribute C_M_AXI_READ_CONNECTIVITY : string; attribute C_M_AXI_READ_CONNECTIVITY of inst : label is "128'b00000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001"; attribute C_M_AXI_READ_ISSUING : string; attribute C_M_AXI_READ_ISSUING of inst : label is "128'b00000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000"; attribute C_M_AXI_SECURE : string; attribute C_M_AXI_SECURE of inst : label is "128'b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"; attribute C_M_AXI_WRITE_CONNECTIVITY : string; attribute C_M_AXI_WRITE_CONNECTIVITY of inst : label is "128'b00000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001"; attribute C_M_AXI_WRITE_ISSUING : string; attribute C_M_AXI_WRITE_ISSUING of inst : label is "128'b00000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000001000"; attribute C_NUM_ADDR_RANGES : integer; attribute C_NUM_ADDR_RANGES of inst : label is 1; attribute C_NUM_MASTER_SLOTS : integer; attribute C_NUM_MASTER_SLOTS of inst : label is 4; attribute C_NUM_SLAVE_SLOTS : integer; attribute C_NUM_SLAVE_SLOTS of inst : label is 1; attribute C_R_REGISTER : integer; attribute C_R_REGISTER of inst : label is 0; attribute C_S_AXI_ARB_PRIORITY : integer; attribute C_S_AXI_ARB_PRIORITY of inst : label is 0; attribute C_S_AXI_BASE_ID : integer; attribute C_S_AXI_BASE_ID of inst : label is 0; attribute C_S_AXI_READ_ACCEPTANCE : integer; attribute C_S_AXI_READ_ACCEPTANCE of inst : label is 8; attribute C_S_AXI_SINGLE_THREAD : integer; attribute C_S_AXI_SINGLE_THREAD of inst : label is 0; attribute C_S_AXI_THREAD_ID_WIDTH : integer; attribute C_S_AXI_THREAD_ID_WIDTH of inst : label is 12; attribute C_S_AXI_WRITE_ACCEPTANCE : integer; attribute C_S_AXI_WRITE_ACCEPTANCE of inst : label is 8; attribute DowngradeIPIdentifiedWarnings of inst : label is "yes"; attribute P_ADDR_DECODE : integer; attribute P_ADDR_DECODE of inst : label is 1; attribute P_AXI3 : integer; attribute P_AXI3 of inst : label is 1; attribute P_AXI4 : integer; attribute P_AXI4 of inst : label is 0; attribute P_AXILITE : integer; attribute P_AXILITE of inst : label is 2; attribute P_AXILITE_SIZE : string; attribute P_AXILITE_SIZE of inst : label is "3'b010"; attribute P_FAMILY : string; attribute P_FAMILY of inst : label is "zynq"; attribute P_INCR : string; attribute P_INCR of inst : label is "2'b01"; attribute P_LEN : integer; attribute P_LEN of inst : label is 8; attribute P_LOCK : integer; attribute P_LOCK of inst : label is 1; attribute P_M_AXI_ERR_MODE : string; attribute P_M_AXI_ERR_MODE of inst : label is "128'b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"; attribute P_M_AXI_SUPPORTS_READ : string; attribute P_M_AXI_SUPPORTS_READ of inst : label is "4'b1111"; attribute P_M_AXI_SUPPORTS_WRITE : string; attribute P_M_AXI_SUPPORTS_WRITE of inst : label is "4'b1111"; attribute P_ONES : string; attribute P_ONES of inst : label is "65'b11111111111111111111111111111111111111111111111111111111111111111"; attribute P_RANGE_CHECK : integer; attribute P_RANGE_CHECK of inst : label is 1; attribute P_S_AXI_BASE_ID : string; attribute P_S_AXI_BASE_ID of inst : label is "64'b0000000000000000000000000000000000000000000000000000000000000000"; attribute P_S_AXI_HIGH_ID : string; attribute P_S_AXI_HIGH_ID of inst : label is "64'b0000000000000000000000000000000000000000000000000000111111111111"; attribute P_S_AXI_SUPPORTS_READ : string; attribute P_S_AXI_SUPPORTS_READ of inst : label is "1'b1"; attribute P_S_AXI_SUPPORTS_WRITE : string; attribute P_S_AXI_SUPPORTS_WRITE of inst : label is "1'b1"; begin inst: entity work.decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_axi_crossbar_v2_1_14_axi_crossbar port map ( aclk => aclk, aresetn => aresetn, m_axi_araddr(127 downto 0) => m_axi_araddr(127 downto 0), m_axi_arburst(7 downto 0) => m_axi_arburst(7 downto 0), m_axi_arcache(15 downto 0) => m_axi_arcache(15 downto 0), m_axi_arid(47 downto 0) => m_axi_arid(47 downto 0), m_axi_arlen(31 downto 0) => m_axi_arlen(31 downto 0), m_axi_arlock(3 downto 0) => m_axi_arlock(3 downto 0), m_axi_arprot(11 downto 0) => m_axi_arprot(11 downto 0), m_axi_arqos(15 downto 0) => m_axi_arqos(15 downto 0), m_axi_arready(3 downto 0) => m_axi_arready(3 downto 0), m_axi_arregion(15 downto 0) => m_axi_arregion(15 downto 0), m_axi_arsize(11 downto 0) => m_axi_arsize(11 downto 0), m_axi_aruser(3 downto 0) => NLW_inst_m_axi_aruser_UNCONNECTED(3 downto 0), m_axi_arvalid(3 downto 0) => m_axi_arvalid(3 downto 0), m_axi_awaddr(127 downto 0) => m_axi_awaddr(127 downto 0), m_axi_awburst(7 downto 0) => m_axi_awburst(7 downto 0), m_axi_awcache(15 downto 0) => m_axi_awcache(15 downto 0), m_axi_awid(47 downto 0) => m_axi_awid(47 downto 0), m_axi_awlen(31 downto 0) => m_axi_awlen(31 downto 0), m_axi_awlock(3 downto 0) => m_axi_awlock(3 downto 0), m_axi_awprot(11 downto 0) => m_axi_awprot(11 downto 0), m_axi_awqos(15 downto 0) => m_axi_awqos(15 downto 0), m_axi_awready(3 downto 0) => m_axi_awready(3 downto 0), m_axi_awregion(15 downto 0) => m_axi_awregion(15 downto 0), m_axi_awsize(11 downto 0) => m_axi_awsize(11 downto 0), m_axi_awuser(3 downto 0) => NLW_inst_m_axi_awuser_UNCONNECTED(3 downto 0), m_axi_awvalid(3 downto 0) => m_axi_awvalid(3 downto 0), m_axi_bid(47 downto 0) => m_axi_bid(47 downto 0), m_axi_bready(3 downto 0) => m_axi_bready(3 downto 0), m_axi_bresp(7 downto 0) => m_axi_bresp(7 downto 0), m_axi_buser(3 downto 0) => B"0000", m_axi_bvalid(3 downto 0) => m_axi_bvalid(3 downto 0), m_axi_rdata(127 downto 0) => m_axi_rdata(127 downto 0), m_axi_rid(47 downto 0) => m_axi_rid(47 downto 0), m_axi_rlast(3 downto 0) => m_axi_rlast(3 downto 0), m_axi_rready(3 downto 0) => m_axi_rready(3 downto 0), m_axi_rresp(7 downto 0) => m_axi_rresp(7 downto 0), m_axi_ruser(3 downto 0) => B"0000", m_axi_rvalid(3 downto 0) => m_axi_rvalid(3 downto 0), m_axi_wdata(127 downto 0) => m_axi_wdata(127 downto 0), m_axi_wid(47 downto 0) => NLW_inst_m_axi_wid_UNCONNECTED(47 downto 0), m_axi_wlast(3 downto 0) => m_axi_wlast(3 downto 0), m_axi_wready(3 downto 0) => m_axi_wready(3 downto 0), m_axi_wstrb(15 downto 0) => m_axi_wstrb(15 downto 0), m_axi_wuser(3 downto 0) => NLW_inst_m_axi_wuser_UNCONNECTED(3 downto 0), m_axi_wvalid(3 downto 0) => m_axi_wvalid(3 downto 0), s_axi_araddr(31 downto 0) => s_axi_araddr(31 downto 0), s_axi_arburst(1 downto 0) => s_axi_arburst(1 downto 0), s_axi_arcache(3 downto 0) => s_axi_arcache(3 downto 0), s_axi_arid(11 downto 0) => s_axi_arid(11 downto 0), s_axi_arlen(7 downto 0) => s_axi_arlen(7 downto 0), s_axi_arlock(0) => s_axi_arlock(0), s_axi_arprot(2 downto 0) => s_axi_arprot(2 downto 0), s_axi_arqos(3 downto 0) => s_axi_arqos(3 downto 0), s_axi_arready(0) => s_axi_arready(0), s_axi_arsize(2 downto 0) => s_axi_arsize(2 downto 0), s_axi_aruser(0) => '0', s_axi_arvalid(0) => s_axi_arvalid(0), s_axi_awaddr(31 downto 0) => s_axi_awaddr(31 downto 0), s_axi_awburst(1 downto 0) => s_axi_awburst(1 downto 0), s_axi_awcache(3 downto 0) => s_axi_awcache(3 downto 0), s_axi_awid(11 downto 0) => s_axi_awid(11 downto 0), s_axi_awlen(7 downto 0) => s_axi_awlen(7 downto 0), s_axi_awlock(0) => s_axi_awlock(0), s_axi_awprot(2 downto 0) => s_axi_awprot(2 downto 0), s_axi_awqos(3 downto 0) => s_axi_awqos(3 downto 0), s_axi_awready(0) => s_axi_awready(0), s_axi_awsize(2 downto 0) => s_axi_awsize(2 downto 0), s_axi_awuser(0) => '0', s_axi_awvalid(0) => s_axi_awvalid(0), s_axi_bid(11 downto 0) => s_axi_bid(11 downto 0), s_axi_bready(0) => s_axi_bready(0), s_axi_bresp(1 downto 0) => s_axi_bresp(1 downto 0), s_axi_buser(0) => NLW_inst_s_axi_buser_UNCONNECTED(0), s_axi_bvalid(0) => s_axi_bvalid(0), s_axi_rdata(31 downto 0) => s_axi_rdata(31 downto 0), s_axi_rid(11 downto 0) => s_axi_rid(11 downto 0), s_axi_rlast(0) => s_axi_rlast(0), s_axi_rready(0) => s_axi_rready(0), s_axi_rresp(1 downto 0) => s_axi_rresp(1 downto 0), s_axi_ruser(0) => NLW_inst_s_axi_ruser_UNCONNECTED(0), s_axi_rvalid(0) => s_axi_rvalid(0), s_axi_wdata(31 downto 0) => s_axi_wdata(31 downto 0), s_axi_wid(11 downto 0) => B"000000000000", s_axi_wlast(0) => s_axi_wlast(0), s_axi_wready(0) => s_axi_wready(0), s_axi_wstrb(3 downto 0) => s_axi_wstrb(3 downto 0), s_axi_wuser(0) => '0', s_axi_wvalid(0) => s_axi_wvalid(0) ); end STRUCTURE;
-- Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2017.2 (win64) Build 1909853 Thu Jun 15 18:39:09 MDT 2017 -- Date : Wed Sep 20 21:29:07 2017 -- Host : EffulgentTome running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode funcsim -rename_top zqynq_lab_1_design_processing_system7_0_1 -prefix -- zqynq_lab_1_design_processing_system7_0_1_ zqynq_lab_1_design_processing_system7_0_0_sim_netlist.vhdl -- Design : zqynq_lab_1_design_processing_system7_0_0 -- Purpose : This VHDL netlist is a functional simulation representation of the design and should not be modified or -- synthesized. This netlist cannot be used for SDF annotated simulation. -- Device : xc7z020clg484-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 is port ( CAN0_PHY_TX : out STD_LOGIC; CAN0_PHY_RX : in STD_LOGIC; CAN1_PHY_TX : out STD_LOGIC; CAN1_PHY_RX : in STD_LOGIC; ENET0_GMII_TX_EN : out STD_LOGIC; ENET0_GMII_TX_ER : out STD_LOGIC; ENET0_MDIO_MDC : out STD_LOGIC; ENET0_MDIO_O : out STD_LOGIC; ENET0_MDIO_T : out STD_LOGIC; ENET0_PTP_DELAY_REQ_RX : out STD_LOGIC; ENET0_PTP_DELAY_REQ_TX : out STD_LOGIC; ENET0_PTP_PDELAY_REQ_RX : out STD_LOGIC; ENET0_PTP_PDELAY_REQ_TX : out STD_LOGIC; ENET0_PTP_PDELAY_RESP_RX : out STD_LOGIC; ENET0_PTP_PDELAY_RESP_TX : out STD_LOGIC; ENET0_PTP_SYNC_FRAME_RX : out STD_LOGIC; ENET0_PTP_SYNC_FRAME_TX : out STD_LOGIC; ENET0_SOF_RX : out STD_LOGIC; ENET0_SOF_TX : out STD_LOGIC; ENET0_GMII_TXD : out STD_LOGIC_VECTOR ( 7 downto 0 ); ENET0_GMII_COL : in STD_LOGIC; ENET0_GMII_CRS : in STD_LOGIC; ENET0_GMII_RX_CLK : in STD_LOGIC; ENET0_GMII_RX_DV : in STD_LOGIC; ENET0_GMII_RX_ER : in STD_LOGIC; ENET0_GMII_TX_CLK : in STD_LOGIC; ENET0_MDIO_I : in STD_LOGIC; ENET0_EXT_INTIN : in STD_LOGIC; ENET0_GMII_RXD : in STD_LOGIC_VECTOR ( 7 downto 0 ); ENET1_GMII_TX_EN : out STD_LOGIC; ENET1_GMII_TX_ER : out STD_LOGIC; ENET1_MDIO_MDC : out STD_LOGIC; ENET1_MDIO_O : out STD_LOGIC; ENET1_MDIO_T : out STD_LOGIC; ENET1_PTP_DELAY_REQ_RX : out STD_LOGIC; ENET1_PTP_DELAY_REQ_TX : out STD_LOGIC; ENET1_PTP_PDELAY_REQ_RX : out STD_LOGIC; ENET1_PTP_PDELAY_REQ_TX : out STD_LOGIC; ENET1_PTP_PDELAY_RESP_RX : out STD_LOGIC; ENET1_PTP_PDELAY_RESP_TX : out STD_LOGIC; ENET1_PTP_SYNC_FRAME_RX : out STD_LOGIC; ENET1_PTP_SYNC_FRAME_TX : out STD_LOGIC; ENET1_SOF_RX : out STD_LOGIC; ENET1_SOF_TX : out STD_LOGIC; ENET1_GMII_TXD : out STD_LOGIC_VECTOR ( 7 downto 0 ); ENET1_GMII_COL : in STD_LOGIC; ENET1_GMII_CRS : in STD_LOGIC; ENET1_GMII_RX_CLK : in STD_LOGIC; ENET1_GMII_RX_DV : in STD_LOGIC; ENET1_GMII_RX_ER : in STD_LOGIC; ENET1_GMII_TX_CLK : in STD_LOGIC; ENET1_MDIO_I : in STD_LOGIC; ENET1_EXT_INTIN : in STD_LOGIC; ENET1_GMII_RXD : in STD_LOGIC_VECTOR ( 7 downto 0 ); GPIO_I : in STD_LOGIC_VECTOR ( 63 downto 0 ); GPIO_O : out STD_LOGIC_VECTOR ( 63 downto 0 ); GPIO_T : out STD_LOGIC_VECTOR ( 63 downto 0 ); I2C0_SDA_I : in STD_LOGIC; I2C0_SDA_O : out STD_LOGIC; I2C0_SDA_T : out STD_LOGIC; I2C0_SCL_I : in STD_LOGIC; I2C0_SCL_O : out STD_LOGIC; I2C0_SCL_T : out STD_LOGIC; I2C1_SDA_I : in STD_LOGIC; I2C1_SDA_O : out STD_LOGIC; I2C1_SDA_T : out STD_LOGIC; I2C1_SCL_I : in STD_LOGIC; I2C1_SCL_O : out STD_LOGIC; I2C1_SCL_T : out STD_LOGIC; PJTAG_TCK : in STD_LOGIC; PJTAG_TMS : in STD_LOGIC; PJTAG_TDI : in STD_LOGIC; PJTAG_TDO : out STD_LOGIC; SDIO0_CLK : out STD_LOGIC; SDIO0_CLK_FB : in STD_LOGIC; SDIO0_CMD_O : out STD_LOGIC; SDIO0_CMD_I : in STD_LOGIC; SDIO0_CMD_T : out STD_LOGIC; SDIO0_DATA_I : in STD_LOGIC_VECTOR ( 3 downto 0 ); SDIO0_DATA_O : out STD_LOGIC_VECTOR ( 3 downto 0 ); SDIO0_DATA_T : out STD_LOGIC_VECTOR ( 3 downto 0 ); SDIO0_LED : out STD_LOGIC; SDIO0_CDN : in STD_LOGIC; SDIO0_WP : in STD_LOGIC; SDIO0_BUSPOW : out STD_LOGIC; SDIO0_BUSVOLT : out STD_LOGIC_VECTOR ( 2 downto 0 ); SDIO1_CLK : out STD_LOGIC; SDIO1_CLK_FB : in STD_LOGIC; SDIO1_CMD_O : out STD_LOGIC; SDIO1_CMD_I : in STD_LOGIC; SDIO1_CMD_T : out STD_LOGIC; SDIO1_DATA_I : in STD_LOGIC_VECTOR ( 3 downto 0 ); SDIO1_DATA_O : out STD_LOGIC_VECTOR ( 3 downto 0 ); SDIO1_DATA_T : out STD_LOGIC_VECTOR ( 3 downto 0 ); SDIO1_LED : out STD_LOGIC; SDIO1_CDN : in STD_LOGIC; SDIO1_WP : in STD_LOGIC; SDIO1_BUSPOW : out STD_LOGIC; SDIO1_BUSVOLT : out STD_LOGIC_VECTOR ( 2 downto 0 ); SPI0_SCLK_I : in STD_LOGIC; SPI0_SCLK_O : out STD_LOGIC; SPI0_SCLK_T : out STD_LOGIC; SPI0_MOSI_I : in STD_LOGIC; SPI0_MOSI_O : out STD_LOGIC; SPI0_MOSI_T : out STD_LOGIC; SPI0_MISO_I : in STD_LOGIC; SPI0_MISO_O : out STD_LOGIC; SPI0_MISO_T : out STD_LOGIC; SPI0_SS_I : in STD_LOGIC; SPI0_SS_O : out STD_LOGIC; SPI0_SS1_O : out STD_LOGIC; SPI0_SS2_O : out STD_LOGIC; SPI0_SS_T : out STD_LOGIC; SPI1_SCLK_I : in STD_LOGIC; SPI1_SCLK_O : out STD_LOGIC; SPI1_SCLK_T : out STD_LOGIC; SPI1_MOSI_I : in STD_LOGIC; SPI1_MOSI_O : out STD_LOGIC; SPI1_MOSI_T : out STD_LOGIC; SPI1_MISO_I : in STD_LOGIC; SPI1_MISO_O : out STD_LOGIC; SPI1_MISO_T : out STD_LOGIC; SPI1_SS_I : in STD_LOGIC; SPI1_SS_O : out STD_LOGIC; SPI1_SS1_O : out STD_LOGIC; SPI1_SS2_O : out STD_LOGIC; SPI1_SS_T : out STD_LOGIC; UART0_DTRN : out STD_LOGIC; UART0_RTSN : out STD_LOGIC; UART0_TX : out STD_LOGIC; UART0_CTSN : in STD_LOGIC; UART0_DCDN : in STD_LOGIC; UART0_DSRN : in STD_LOGIC; UART0_RIN : in STD_LOGIC; UART0_RX : in STD_LOGIC; UART1_DTRN : out STD_LOGIC; UART1_RTSN : out STD_LOGIC; UART1_TX : out STD_LOGIC; UART1_CTSN : in STD_LOGIC; UART1_DCDN : in STD_LOGIC; UART1_DSRN : in STD_LOGIC; UART1_RIN : in STD_LOGIC; UART1_RX : in STD_LOGIC; TTC0_WAVE0_OUT : out STD_LOGIC; TTC0_WAVE1_OUT : out STD_LOGIC; TTC0_WAVE2_OUT : out STD_LOGIC; TTC0_CLK0_IN : in STD_LOGIC; TTC0_CLK1_IN : in STD_LOGIC; TTC0_CLK2_IN : in STD_LOGIC; TTC1_WAVE0_OUT : out STD_LOGIC; TTC1_WAVE1_OUT : out STD_LOGIC; TTC1_WAVE2_OUT : out STD_LOGIC; TTC1_CLK0_IN : in STD_LOGIC; TTC1_CLK1_IN : in STD_LOGIC; TTC1_CLK2_IN : in STD_LOGIC; WDT_CLK_IN : in STD_LOGIC; WDT_RST_OUT : out STD_LOGIC; TRACE_CLK : in STD_LOGIC; TRACE_CTL : out STD_LOGIC; TRACE_DATA : out STD_LOGIC_VECTOR ( 1 downto 0 ); TRACE_CLK_OUT : out STD_LOGIC; USB0_PORT_INDCTL : out STD_LOGIC_VECTOR ( 1 downto 0 ); USB0_VBUS_PWRSELECT : out STD_LOGIC; USB0_VBUS_PWRFAULT : in STD_LOGIC; USB1_PORT_INDCTL : out STD_LOGIC_VECTOR ( 1 downto 0 ); USB1_VBUS_PWRSELECT : out STD_LOGIC; USB1_VBUS_PWRFAULT : in STD_LOGIC; SRAM_INTIN : in STD_LOGIC; M_AXI_GP0_ARESETN : out STD_LOGIC; M_AXI_GP0_ARVALID : out STD_LOGIC; M_AXI_GP0_AWVALID : out STD_LOGIC; M_AXI_GP0_BREADY : out STD_LOGIC; M_AXI_GP0_RREADY : out STD_LOGIC; M_AXI_GP0_WLAST : out STD_LOGIC; M_AXI_GP0_WVALID : out STD_LOGIC; M_AXI_GP0_ARID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_AWID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_WID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_ARBURST : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_ARLOCK : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_ARSIZE : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_AWBURST : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_AWLOCK : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_AWSIZE : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_ARPROT : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_AWPROT : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_ARADDR : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP0_AWADDR : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP0_WDATA : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP0_ARCACHE : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_ARLEN : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_ARQOS : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_AWCACHE : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_AWLEN : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_AWQOS : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_WSTRB : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_ACLK : in STD_LOGIC; M_AXI_GP0_ARREADY : in STD_LOGIC; M_AXI_GP0_AWREADY : in STD_LOGIC; M_AXI_GP0_BVALID : in STD_LOGIC; M_AXI_GP0_RLAST : in STD_LOGIC; M_AXI_GP0_RVALID : in STD_LOGIC; M_AXI_GP0_WREADY : in STD_LOGIC; M_AXI_GP0_BID : in STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_RID : in STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_BRESP : in STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_RRESP : in STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_RDATA : in STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP1_ARESETN : out STD_LOGIC; M_AXI_GP1_ARVALID : out STD_LOGIC; M_AXI_GP1_AWVALID : out STD_LOGIC; M_AXI_GP1_BREADY : out STD_LOGIC; M_AXI_GP1_RREADY : out STD_LOGIC; M_AXI_GP1_WLAST : out STD_LOGIC; M_AXI_GP1_WVALID : out STD_LOGIC; M_AXI_GP1_ARID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP1_AWID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP1_WID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP1_ARBURST : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP1_ARLOCK : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP1_ARSIZE : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP1_AWBURST : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP1_AWLOCK : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP1_AWSIZE : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP1_ARPROT : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP1_AWPROT : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP1_ARADDR : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP1_AWADDR : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP1_WDATA : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP1_ARCACHE : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_ARLEN : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_ARQOS : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_AWCACHE : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_AWLEN : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_AWQOS : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_WSTRB : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP1_ACLK : in STD_LOGIC; M_AXI_GP1_ARREADY : in STD_LOGIC; M_AXI_GP1_AWREADY : in STD_LOGIC; M_AXI_GP1_BVALID : in STD_LOGIC; M_AXI_GP1_RLAST : in STD_LOGIC; M_AXI_GP1_RVALID : in STD_LOGIC; M_AXI_GP1_WREADY : in STD_LOGIC; M_AXI_GP1_BID : in STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP1_RID : in STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP1_BRESP : in STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP1_RRESP : in STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP1_RDATA : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP0_ARESETN : out STD_LOGIC; S_AXI_GP0_ARREADY : out STD_LOGIC; S_AXI_GP0_AWREADY : out STD_LOGIC; S_AXI_GP0_BVALID : out STD_LOGIC; S_AXI_GP0_RLAST : out STD_LOGIC; S_AXI_GP0_RVALID : out STD_LOGIC; S_AXI_GP0_WREADY : out STD_LOGIC; S_AXI_GP0_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP0_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP0_RDATA : out STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP0_BID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP0_RID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP0_ACLK : in STD_LOGIC; S_AXI_GP0_ARVALID : in STD_LOGIC; S_AXI_GP0_AWVALID : in STD_LOGIC; S_AXI_GP0_BREADY : in STD_LOGIC; S_AXI_GP0_RREADY : in STD_LOGIC; S_AXI_GP0_WLAST : in STD_LOGIC; S_AXI_GP0_WVALID : in STD_LOGIC; S_AXI_GP0_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP0_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP0_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP0_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP0_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP0_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP0_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP0_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP0_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP0_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP0_WDATA : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP0_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_WSTRB : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP0_ARID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP0_AWID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP0_WID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP1_ARESETN : out STD_LOGIC; S_AXI_GP1_ARREADY : out STD_LOGIC; S_AXI_GP1_AWREADY : out STD_LOGIC; S_AXI_GP1_BVALID : out STD_LOGIC; S_AXI_GP1_RLAST : out STD_LOGIC; S_AXI_GP1_RVALID : out STD_LOGIC; S_AXI_GP1_WREADY : out STD_LOGIC; S_AXI_GP1_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP1_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP1_RDATA : out STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP1_BID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP1_RID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP1_ACLK : in STD_LOGIC; S_AXI_GP1_ARVALID : in STD_LOGIC; S_AXI_GP1_AWVALID : in STD_LOGIC; S_AXI_GP1_BREADY : in STD_LOGIC; S_AXI_GP1_RREADY : in STD_LOGIC; S_AXI_GP1_WLAST : in STD_LOGIC; S_AXI_GP1_WVALID : in STD_LOGIC; S_AXI_GP1_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP1_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP1_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP1_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP1_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_GP1_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP1_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP1_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_GP1_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP1_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP1_WDATA : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_GP1_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_WSTRB : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_GP1_ARID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP1_AWID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_GP1_WID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_ACP_ARESETN : out STD_LOGIC; S_AXI_ACP_ARREADY : out STD_LOGIC; S_AXI_ACP_AWREADY : out STD_LOGIC; S_AXI_ACP_BVALID : out STD_LOGIC; S_AXI_ACP_RLAST : out STD_LOGIC; S_AXI_ACP_RVALID : out STD_LOGIC; S_AXI_ACP_WREADY : out STD_LOGIC; S_AXI_ACP_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_ACP_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_ACP_BID : out STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_RID : out STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_RDATA : out STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_ACP_ACLK : in STD_LOGIC; S_AXI_ACP_ARVALID : in STD_LOGIC; S_AXI_ACP_AWVALID : in STD_LOGIC; S_AXI_ACP_BREADY : in STD_LOGIC; S_AXI_ACP_RREADY : in STD_LOGIC; S_AXI_ACP_WLAST : in STD_LOGIC; S_AXI_ACP_WVALID : in STD_LOGIC; S_AXI_ACP_ARID : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_AWID : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_WID : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_ACP_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_ACP_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_ACP_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_ACP_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_ACP_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_ACP_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_ACP_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_ACP_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_ACP_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_ACP_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_ACP_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_ACP_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_ACP_ARUSER : in STD_LOGIC_VECTOR ( 4 downto 0 ); S_AXI_ACP_AWUSER : in STD_LOGIC_VECTOR ( 4 downto 0 ); S_AXI_ACP_WDATA : in STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_ACP_WSTRB : in STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP0_ARESETN : out STD_LOGIC; S_AXI_HP0_ARREADY : out STD_LOGIC; S_AXI_HP0_AWREADY : out STD_LOGIC; S_AXI_HP0_BVALID : out STD_LOGIC; S_AXI_HP0_RLAST : out STD_LOGIC; S_AXI_HP0_RVALID : out STD_LOGIC; S_AXI_HP0_WREADY : out STD_LOGIC; S_AXI_HP0_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP0_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP0_BID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP0_RID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP0_RDATA : out STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP0_RCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP0_WCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP0_RACOUNT : out STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP0_WACOUNT : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP0_ACLK : in STD_LOGIC; S_AXI_HP0_ARVALID : in STD_LOGIC; S_AXI_HP0_AWVALID : in STD_LOGIC; S_AXI_HP0_BREADY : in STD_LOGIC; S_AXI_HP0_RDISSUECAP1_EN : in STD_LOGIC; S_AXI_HP0_RREADY : in STD_LOGIC; S_AXI_HP0_WLAST : in STD_LOGIC; S_AXI_HP0_WRISSUECAP1_EN : in STD_LOGIC; S_AXI_HP0_WVALID : in STD_LOGIC; S_AXI_HP0_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP0_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP0_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP0_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP0_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP0_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP0_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP0_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP0_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP0_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP0_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP0_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP0_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP0_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP0_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP0_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP0_ARID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP0_AWID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP0_WID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP0_WDATA : in STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP0_WSTRB : in STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP1_ARESETN : out STD_LOGIC; S_AXI_HP1_ARREADY : out STD_LOGIC; S_AXI_HP1_AWREADY : out STD_LOGIC; S_AXI_HP1_BVALID : out STD_LOGIC; S_AXI_HP1_RLAST : out STD_LOGIC; S_AXI_HP1_RVALID : out STD_LOGIC; S_AXI_HP1_WREADY : out STD_LOGIC; S_AXI_HP1_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP1_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP1_BID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP1_RID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP1_RDATA : out STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP1_RCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP1_WCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP1_RACOUNT : out STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP1_WACOUNT : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP1_ACLK : in STD_LOGIC; S_AXI_HP1_ARVALID : in STD_LOGIC; S_AXI_HP1_AWVALID : in STD_LOGIC; S_AXI_HP1_BREADY : in STD_LOGIC; S_AXI_HP1_RDISSUECAP1_EN : in STD_LOGIC; S_AXI_HP1_RREADY : in STD_LOGIC; S_AXI_HP1_WLAST : in STD_LOGIC; S_AXI_HP1_WRISSUECAP1_EN : in STD_LOGIC; S_AXI_HP1_WVALID : in STD_LOGIC; S_AXI_HP1_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP1_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP1_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP1_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP1_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP1_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP1_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP1_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP1_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP1_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP1_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP1_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP1_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP1_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP1_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP1_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP1_ARID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP1_AWID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP1_WID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP1_WDATA : in STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP1_WSTRB : in STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP2_ARESETN : out STD_LOGIC; S_AXI_HP2_ARREADY : out STD_LOGIC; S_AXI_HP2_AWREADY : out STD_LOGIC; S_AXI_HP2_BVALID : out STD_LOGIC; S_AXI_HP2_RLAST : out STD_LOGIC; S_AXI_HP2_RVALID : out STD_LOGIC; S_AXI_HP2_WREADY : out STD_LOGIC; S_AXI_HP2_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP2_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP2_BID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP2_RID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP2_RDATA : out STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP2_RCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP2_WCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP2_RACOUNT : out STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP2_WACOUNT : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP2_ACLK : in STD_LOGIC; S_AXI_HP2_ARVALID : in STD_LOGIC; S_AXI_HP2_AWVALID : in STD_LOGIC; S_AXI_HP2_BREADY : in STD_LOGIC; S_AXI_HP2_RDISSUECAP1_EN : in STD_LOGIC; S_AXI_HP2_RREADY : in STD_LOGIC; S_AXI_HP2_WLAST : in STD_LOGIC; S_AXI_HP2_WRISSUECAP1_EN : in STD_LOGIC; S_AXI_HP2_WVALID : in STD_LOGIC; S_AXI_HP2_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP2_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP2_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP2_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP2_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP2_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP2_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP2_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP2_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP2_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP2_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP2_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP2_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP2_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP2_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP2_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP2_ARID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP2_AWID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP2_WID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP2_WDATA : in STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP2_WSTRB : in STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP3_ARESETN : out STD_LOGIC; S_AXI_HP3_ARREADY : out STD_LOGIC; S_AXI_HP3_AWREADY : out STD_LOGIC; S_AXI_HP3_BVALID : out STD_LOGIC; S_AXI_HP3_RLAST : out STD_LOGIC; S_AXI_HP3_RVALID : out STD_LOGIC; S_AXI_HP3_WREADY : out STD_LOGIC; S_AXI_HP3_BRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP3_RRESP : out STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP3_BID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP3_RID : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP3_RDATA : out STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP3_RCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP3_WCOUNT : out STD_LOGIC_VECTOR ( 7 downto 0 ); S_AXI_HP3_RACOUNT : out STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP3_WACOUNT : out STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP3_ACLK : in STD_LOGIC; S_AXI_HP3_ARVALID : in STD_LOGIC; S_AXI_HP3_AWVALID : in STD_LOGIC; S_AXI_HP3_BREADY : in STD_LOGIC; S_AXI_HP3_RDISSUECAP1_EN : in STD_LOGIC; S_AXI_HP3_RREADY : in STD_LOGIC; S_AXI_HP3_WLAST : in STD_LOGIC; S_AXI_HP3_WRISSUECAP1_EN : in STD_LOGIC; S_AXI_HP3_WVALID : in STD_LOGIC; S_AXI_HP3_ARBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP3_ARLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP3_ARSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP3_AWBURST : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP3_AWLOCK : in STD_LOGIC_VECTOR ( 1 downto 0 ); S_AXI_HP3_AWSIZE : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP3_ARPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP3_AWPROT : in STD_LOGIC_VECTOR ( 2 downto 0 ); S_AXI_HP3_ARADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP3_AWADDR : in STD_LOGIC_VECTOR ( 31 downto 0 ); S_AXI_HP3_ARCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP3_ARLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP3_ARQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP3_AWCACHE : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP3_AWLEN : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP3_AWQOS : in STD_LOGIC_VECTOR ( 3 downto 0 ); S_AXI_HP3_ARID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP3_AWID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP3_WID : in STD_LOGIC_VECTOR ( 5 downto 0 ); S_AXI_HP3_WDATA : in STD_LOGIC_VECTOR ( 63 downto 0 ); S_AXI_HP3_WSTRB : in STD_LOGIC_VECTOR ( 7 downto 0 ); IRQ_P2F_DMAC_ABORT : out STD_LOGIC; IRQ_P2F_DMAC0 : out STD_LOGIC; IRQ_P2F_DMAC1 : out STD_LOGIC; IRQ_P2F_DMAC2 : out STD_LOGIC; IRQ_P2F_DMAC3 : out STD_LOGIC; IRQ_P2F_DMAC4 : out STD_LOGIC; IRQ_P2F_DMAC5 : out STD_LOGIC; IRQ_P2F_DMAC6 : out STD_LOGIC; IRQ_P2F_DMAC7 : out STD_LOGIC; IRQ_P2F_SMC : out STD_LOGIC; IRQ_P2F_QSPI : out STD_LOGIC; IRQ_P2F_CTI : out STD_LOGIC; IRQ_P2F_GPIO : out STD_LOGIC; IRQ_P2F_USB0 : out STD_LOGIC; IRQ_P2F_ENET0 : out STD_LOGIC; IRQ_P2F_ENET_WAKE0 : out STD_LOGIC; IRQ_P2F_SDIO0 : out STD_LOGIC; IRQ_P2F_I2C0 : out STD_LOGIC; IRQ_P2F_SPI0 : out STD_LOGIC; IRQ_P2F_UART0 : out STD_LOGIC; IRQ_P2F_CAN0 : out STD_LOGIC; IRQ_P2F_USB1 : out STD_LOGIC; IRQ_P2F_ENET1 : out STD_LOGIC; IRQ_P2F_ENET_WAKE1 : out STD_LOGIC; IRQ_P2F_SDIO1 : out STD_LOGIC; IRQ_P2F_I2C1 : out STD_LOGIC; IRQ_P2F_SPI1 : out STD_LOGIC; IRQ_P2F_UART1 : out STD_LOGIC; IRQ_P2F_CAN1 : out STD_LOGIC; IRQ_F2P : in STD_LOGIC_VECTOR ( 1 downto 0 ); Core0_nFIQ : in STD_LOGIC; Core0_nIRQ : in STD_LOGIC; Core1_nFIQ : in STD_LOGIC; Core1_nIRQ : in STD_LOGIC; DMA0_DATYPE : out STD_LOGIC_VECTOR ( 1 downto 0 ); DMA0_DAVALID : out STD_LOGIC; DMA0_DRREADY : out STD_LOGIC; DMA0_RSTN : out STD_LOGIC; DMA1_DATYPE : out STD_LOGIC_VECTOR ( 1 downto 0 ); DMA1_DAVALID : out STD_LOGIC; DMA1_DRREADY : out STD_LOGIC; DMA1_RSTN : out STD_LOGIC; DMA2_DATYPE : out STD_LOGIC_VECTOR ( 1 downto 0 ); DMA2_DAVALID : out STD_LOGIC; DMA2_DRREADY : out STD_LOGIC; DMA2_RSTN : out STD_LOGIC; DMA3_DATYPE : out STD_LOGIC_VECTOR ( 1 downto 0 ); DMA3_DAVALID : out STD_LOGIC; DMA3_DRREADY : out STD_LOGIC; DMA3_RSTN : out STD_LOGIC; DMA0_ACLK : in STD_LOGIC; DMA0_DAREADY : in STD_LOGIC; DMA0_DRLAST : in STD_LOGIC; DMA0_DRVALID : in STD_LOGIC; DMA1_ACLK : in STD_LOGIC; DMA1_DAREADY : in STD_LOGIC; DMA1_DRLAST : in STD_LOGIC; DMA1_DRVALID : in STD_LOGIC; DMA2_ACLK : in STD_LOGIC; DMA2_DAREADY : in STD_LOGIC; DMA2_DRLAST : in STD_LOGIC; DMA2_DRVALID : in STD_LOGIC; DMA3_ACLK : in STD_LOGIC; DMA3_DAREADY : in STD_LOGIC; DMA3_DRLAST : in STD_LOGIC; DMA3_DRVALID : in STD_LOGIC; DMA0_DRTYPE : in STD_LOGIC_VECTOR ( 1 downto 0 ); DMA1_DRTYPE : in STD_LOGIC_VECTOR ( 1 downto 0 ); DMA2_DRTYPE : in STD_LOGIC_VECTOR ( 1 downto 0 ); DMA3_DRTYPE : in STD_LOGIC_VECTOR ( 1 downto 0 ); FCLK_CLK3 : out STD_LOGIC; FCLK_CLK2 : out STD_LOGIC; FCLK_CLK1 : out STD_LOGIC; FCLK_CLK0 : out STD_LOGIC; FCLK_CLKTRIG3_N : in STD_LOGIC; FCLK_CLKTRIG2_N : in STD_LOGIC; FCLK_CLKTRIG1_N : in STD_LOGIC; FCLK_CLKTRIG0_N : in STD_LOGIC; FCLK_RESET3_N : out STD_LOGIC; FCLK_RESET2_N : out STD_LOGIC; FCLK_RESET1_N : out STD_LOGIC; FCLK_RESET0_N : out STD_LOGIC; FTMD_TRACEIN_DATA : in STD_LOGIC_VECTOR ( 31 downto 0 ); FTMD_TRACEIN_VALID : in STD_LOGIC; FTMD_TRACEIN_CLK : in STD_LOGIC; FTMD_TRACEIN_ATID : in STD_LOGIC_VECTOR ( 3 downto 0 ); FTMT_F2P_TRIG_0 : in STD_LOGIC; FTMT_F2P_TRIGACK_0 : out STD_LOGIC; FTMT_F2P_TRIG_1 : in STD_LOGIC; FTMT_F2P_TRIGACK_1 : out STD_LOGIC; FTMT_F2P_TRIG_2 : in STD_LOGIC; FTMT_F2P_TRIGACK_2 : out STD_LOGIC; FTMT_F2P_TRIG_3 : in STD_LOGIC; FTMT_F2P_TRIGACK_3 : out STD_LOGIC; FTMT_F2P_DEBUG : in STD_LOGIC_VECTOR ( 31 downto 0 ); FTMT_P2F_TRIGACK_0 : in STD_LOGIC; FTMT_P2F_TRIG_0 : out STD_LOGIC; FTMT_P2F_TRIGACK_1 : in STD_LOGIC; FTMT_P2F_TRIG_1 : out STD_LOGIC; FTMT_P2F_TRIGACK_2 : in STD_LOGIC; FTMT_P2F_TRIG_2 : out STD_LOGIC; FTMT_P2F_TRIGACK_3 : in STD_LOGIC; FTMT_P2F_TRIG_3 : out STD_LOGIC; FTMT_P2F_DEBUG : out STD_LOGIC_VECTOR ( 31 downto 0 ); FPGA_IDLE_N : in STD_LOGIC; EVENT_EVENTO : out STD_LOGIC; EVENT_STANDBYWFE : out STD_LOGIC_VECTOR ( 1 downto 0 ); EVENT_STANDBYWFI : out STD_LOGIC_VECTOR ( 1 downto 0 ); EVENT_EVENTI : in STD_LOGIC; DDR_ARB : in STD_LOGIC_VECTOR ( 3 downto 0 ); MIO : inout STD_LOGIC_VECTOR ( 53 downto 0 ); DDR_CAS_n : inout STD_LOGIC; DDR_CKE : inout STD_LOGIC; DDR_Clk_n : inout STD_LOGIC; DDR_Clk : inout STD_LOGIC; DDR_CS_n : inout STD_LOGIC; DDR_DRSTB : inout STD_LOGIC; DDR_ODT : inout STD_LOGIC; DDR_RAS_n : inout STD_LOGIC; DDR_WEB : inout STD_LOGIC; DDR_BankAddr : inout STD_LOGIC_VECTOR ( 2 downto 0 ); DDR_Addr : inout STD_LOGIC_VECTOR ( 14 downto 0 ); DDR_VRN : inout STD_LOGIC; DDR_VRP : inout STD_LOGIC; DDR_DM : inout STD_LOGIC_VECTOR ( 3 downto 0 ); DDR_DQ : inout STD_LOGIC_VECTOR ( 31 downto 0 ); DDR_DQS_n : inout STD_LOGIC_VECTOR ( 3 downto 0 ); DDR_DQS : inout STD_LOGIC_VECTOR ( 3 downto 0 ); PS_SRSTB : inout STD_LOGIC; PS_CLK : inout STD_LOGIC; PS_PORB : inout STD_LOGIC ); attribute C_DM_WIDTH : integer; attribute C_DM_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 4; attribute C_DQS_WIDTH : integer; attribute C_DQS_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 4; attribute C_DQ_WIDTH : integer; attribute C_DQ_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 32; attribute C_EMIO_GPIO_WIDTH : integer; attribute C_EMIO_GPIO_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 64; attribute C_EN_EMIO_ENET0 : integer; attribute C_EN_EMIO_ENET0 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_EN_EMIO_ENET1 : integer; attribute C_EN_EMIO_ENET1 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_EN_EMIO_PJTAG : integer; attribute C_EN_EMIO_PJTAG of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_EN_EMIO_TRACE : integer; attribute C_EN_EMIO_TRACE of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_FCLK_CLK0_BUF : string; attribute C_FCLK_CLK0_BUF of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "TRUE"; attribute C_FCLK_CLK1_BUF : string; attribute C_FCLK_CLK1_BUF of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "FALSE"; attribute C_FCLK_CLK2_BUF : string; attribute C_FCLK_CLK2_BUF of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "FALSE"; attribute C_FCLK_CLK3_BUF : string; attribute C_FCLK_CLK3_BUF of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "FALSE"; attribute C_GP0_EN_MODIFIABLE_TXN : integer; attribute C_GP0_EN_MODIFIABLE_TXN of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 1; attribute C_GP1_EN_MODIFIABLE_TXN : integer; attribute C_GP1_EN_MODIFIABLE_TXN of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 1; attribute C_INCLUDE_ACP_TRANS_CHECK : integer; attribute C_INCLUDE_ACP_TRANS_CHECK of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_INCLUDE_TRACE_BUFFER : integer; attribute C_INCLUDE_TRACE_BUFFER of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_IRQ_F2P_MODE : string; attribute C_IRQ_F2P_MODE of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "DIRECT"; attribute C_MIO_PRIMITIVE : integer; attribute C_MIO_PRIMITIVE of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 54; attribute C_M_AXI_GP0_ENABLE_STATIC_REMAP : integer; attribute C_M_AXI_GP0_ENABLE_STATIC_REMAP of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_M_AXI_GP0_ID_WIDTH : integer; attribute C_M_AXI_GP0_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 12; attribute C_M_AXI_GP0_THREAD_ID_WIDTH : integer; attribute C_M_AXI_GP0_THREAD_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 12; attribute C_M_AXI_GP1_ENABLE_STATIC_REMAP : integer; attribute C_M_AXI_GP1_ENABLE_STATIC_REMAP of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_M_AXI_GP1_ID_WIDTH : integer; attribute C_M_AXI_GP1_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 12; attribute C_M_AXI_GP1_THREAD_ID_WIDTH : integer; attribute C_M_AXI_GP1_THREAD_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 12; attribute C_NUM_F2P_INTR_INPUTS : integer; attribute C_NUM_F2P_INTR_INPUTS of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 2; attribute C_PACKAGE_NAME : string; attribute C_PACKAGE_NAME of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "clg484"; attribute C_PS7_SI_REV : string; attribute C_PS7_SI_REV of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "PRODUCTION"; attribute C_S_AXI_ACP_ARUSER_VAL : integer; attribute C_S_AXI_ACP_ARUSER_VAL of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 31; attribute C_S_AXI_ACP_AWUSER_VAL : integer; attribute C_S_AXI_ACP_AWUSER_VAL of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 31; attribute C_S_AXI_ACP_ID_WIDTH : integer; attribute C_S_AXI_ACP_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 3; attribute C_S_AXI_GP0_ID_WIDTH : integer; attribute C_S_AXI_GP0_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 6; attribute C_S_AXI_GP1_ID_WIDTH : integer; attribute C_S_AXI_GP1_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 6; attribute C_S_AXI_HP0_DATA_WIDTH : integer; attribute C_S_AXI_HP0_DATA_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 64; attribute C_S_AXI_HP0_ID_WIDTH : integer; attribute C_S_AXI_HP0_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 6; attribute C_S_AXI_HP1_DATA_WIDTH : integer; attribute C_S_AXI_HP1_DATA_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 64; attribute C_S_AXI_HP1_ID_WIDTH : integer; attribute C_S_AXI_HP1_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 6; attribute C_S_AXI_HP2_DATA_WIDTH : integer; attribute C_S_AXI_HP2_DATA_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 64; attribute C_S_AXI_HP2_ID_WIDTH : integer; attribute C_S_AXI_HP2_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 6; attribute C_S_AXI_HP3_DATA_WIDTH : integer; attribute C_S_AXI_HP3_DATA_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 64; attribute C_S_AXI_HP3_ID_WIDTH : integer; attribute C_S_AXI_HP3_ID_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 6; attribute C_TRACE_BUFFER_CLOCK_DELAY : integer; attribute C_TRACE_BUFFER_CLOCK_DELAY of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 12; attribute C_TRACE_BUFFER_FIFO_SIZE : integer; attribute C_TRACE_BUFFER_FIFO_SIZE of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 128; attribute C_TRACE_INTERNAL_WIDTH : integer; attribute C_TRACE_INTERNAL_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 2; attribute C_TRACE_PIPELINE_WIDTH : integer; attribute C_TRACE_PIPELINE_WIDTH of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 8; attribute C_USE_AXI_NONSECURE : integer; attribute C_USE_AXI_NONSECURE of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_DEFAULT_ACP_USER_VAL : integer; attribute C_USE_DEFAULT_ACP_USER_VAL of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_M_AXI_GP0 : integer; attribute C_USE_M_AXI_GP0 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 1; attribute C_USE_M_AXI_GP1 : integer; attribute C_USE_M_AXI_GP1 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_ACP : integer; attribute C_USE_S_AXI_ACP of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_GP0 : integer; attribute C_USE_S_AXI_GP0 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_GP1 : integer; attribute C_USE_S_AXI_GP1 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_HP0 : integer; attribute C_USE_S_AXI_HP0 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_HP1 : integer; attribute C_USE_S_AXI_HP1 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_HP2 : integer; attribute C_USE_S_AXI_HP2 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute C_USE_S_AXI_HP3 : integer; attribute C_USE_S_AXI_HP3 of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; attribute HW_HANDOFF : string; attribute HW_HANDOFF of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "zqynq_lab_1_design_processing_system7_0_0.hwdef"; attribute POWER : string; attribute POWER of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is "<PROCESSOR name={system} numA9Cores={2} clockFreq={666.666667} load={0.5} /><MEMORY name={code} memType={DDR3} dataWidth={32} clockFreq={533.333313} readRate={0.5} writeRate={0.5} /><IO interface={GPIO_Bank_1} ioStandard={LVCMOS18} bidis={2} ioBank={Vcco_p1} clockFreq={1} usageRate={0.5} /><IO interface={GPIO_Bank_0} ioStandard={LVCMOS33} bidis={10} ioBank={Vcco_p0} clockFreq={1} usageRate={0.5} /><IO interface={Timer} ioStandard={} bidis={0} ioBank={} clockFreq={111.111115} usageRate={0.5} /><IO interface={UART} ioStandard={LVCMOS18} bidis={2} ioBank={Vcco_p1} clockFreq={50.000000} usageRate={0.5} /><IO interface={SD} ioStandard={LVCMOS18} bidis={8} ioBank={Vcco_p1} clockFreq={50.000000} usageRate={0.5} /><IO interface={USB} ioStandard={LVCMOS18} bidis={12} ioBank={Vcco_p1} clockFreq={60} usageRate={0.5} /><IO interface={GigE} ioStandard={LVCMOS18} bidis={14} ioBank={Vcco_p1} clockFreq={125.000000} usageRate={0.5} /><IO interface={QSPI} ioStandard={LVCMOS33} bidis={6} ioBank={Vcco_p0} clockFreq={200.000000} usageRate={0.5} /><PLL domain={Processor} vco={1333.333} /><PLL domain={Memory} vco={1066.667} /><PLL domain={IO} vco={1000.000} /><AXI interface={M_AXI_GP0} dataWidth={32} clockFreq={100} usageRate={0.5} />/>"; attribute USE_TRACE_DATA_EDGE_DETECTOR : integer; attribute USE_TRACE_DATA_EDGE_DETECTOR of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 : entity is 0; end zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7; architecture STRUCTURE of zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 is signal \<const0>\ : STD_LOGIC; signal \<const1>\ : STD_LOGIC; signal ENET0_MDIO_T_n : STD_LOGIC; signal ENET1_MDIO_T_n : STD_LOGIC; signal FCLK_CLK_unbuffered : STD_LOGIC_VECTOR ( 0 to 0 ); signal I2C0_SCL_T_n : STD_LOGIC; signal I2C0_SDA_T_n : STD_LOGIC; signal I2C1_SCL_T_n : STD_LOGIC; signal I2C1_SDA_T_n : STD_LOGIC; signal \^m_axi_gp0_arcache\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \^m_axi_gp0_arsize\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \^m_axi_gp0_awcache\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \^m_axi_gp0_awsize\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \^m_axi_gp1_arcache\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \^m_axi_gp1_arsize\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal \^m_axi_gp1_awcache\ : STD_LOGIC_VECTOR ( 3 downto 0 ); signal \^m_axi_gp1_awsize\ : STD_LOGIC_VECTOR ( 1 downto 0 ); signal SDIO0_CMD_T_n : STD_LOGIC; signal SDIO0_DATA_T_n : STD_LOGIC_VECTOR ( 3 downto 0 ); signal SDIO1_CMD_T_n : STD_LOGIC; signal SDIO1_DATA_T_n : STD_LOGIC_VECTOR ( 3 downto 0 ); signal SPI0_MISO_T_n : STD_LOGIC; signal SPI0_MOSI_T_n : STD_LOGIC; signal SPI0_SCLK_T_n : STD_LOGIC; signal SPI0_SS_T_n : STD_LOGIC; signal SPI1_MISO_T_n : STD_LOGIC; signal SPI1_MOSI_T_n : STD_LOGIC; signal SPI1_SCLK_T_n : STD_LOGIC; signal SPI1_SS_T_n : STD_LOGIC; signal \TRACE_CTL_PIPE[0]\ : STD_LOGIC; attribute RTL_KEEP : string; attribute RTL_KEEP of \TRACE_CTL_PIPE[0]\ : signal is "true"; signal \TRACE_CTL_PIPE[1]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[1]\ : signal is "true"; signal \TRACE_CTL_PIPE[2]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[2]\ : signal is "true"; signal \TRACE_CTL_PIPE[3]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[3]\ : signal is "true"; signal \TRACE_CTL_PIPE[4]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[4]\ : signal is "true"; signal \TRACE_CTL_PIPE[5]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[5]\ : signal is "true"; signal \TRACE_CTL_PIPE[6]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[6]\ : signal is "true"; signal \TRACE_CTL_PIPE[7]\ : STD_LOGIC; attribute RTL_KEEP of \TRACE_CTL_PIPE[7]\ : signal is "true"; signal \TRACE_DATA_PIPE[0]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[0]\ : signal is "true"; signal \TRACE_DATA_PIPE[1]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[1]\ : signal is "true"; signal \TRACE_DATA_PIPE[2]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[2]\ : signal is "true"; signal \TRACE_DATA_PIPE[3]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[3]\ : signal is "true"; signal \TRACE_DATA_PIPE[4]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[4]\ : signal is "true"; signal \TRACE_DATA_PIPE[5]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[5]\ : signal is "true"; signal \TRACE_DATA_PIPE[6]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[6]\ : signal is "true"; signal \TRACE_DATA_PIPE[7]\ : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute RTL_KEEP of \TRACE_DATA_PIPE[7]\ : signal is "true"; signal buffered_DDR_Addr : STD_LOGIC_VECTOR ( 14 downto 0 ); signal buffered_DDR_BankAddr : STD_LOGIC_VECTOR ( 2 downto 0 ); signal buffered_DDR_CAS_n : STD_LOGIC; signal buffered_DDR_CKE : STD_LOGIC; signal buffered_DDR_CS_n : STD_LOGIC; signal buffered_DDR_Clk : STD_LOGIC; signal buffered_DDR_Clk_n : STD_LOGIC; signal buffered_DDR_DM : STD_LOGIC_VECTOR ( 3 downto 0 ); signal buffered_DDR_DQ : STD_LOGIC_VECTOR ( 31 downto 0 ); signal buffered_DDR_DQS : STD_LOGIC_VECTOR ( 3 downto 0 ); signal buffered_DDR_DQS_n : STD_LOGIC_VECTOR ( 3 downto 0 ); signal buffered_DDR_DRSTB : STD_LOGIC; signal buffered_DDR_ODT : STD_LOGIC; signal buffered_DDR_RAS_n : STD_LOGIC; signal buffered_DDR_VRN : STD_LOGIC; signal buffered_DDR_VRP : STD_LOGIC; signal buffered_DDR_WEB : STD_LOGIC; signal buffered_MIO : STD_LOGIC_VECTOR ( 53 downto 0 ); signal buffered_PS_CLK : STD_LOGIC; signal buffered_PS_PORB : STD_LOGIC; signal buffered_PS_SRSTB : STD_LOGIC; signal gpio_out_t_n : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_PS7_i_EMIOENET0GMIITXEN_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOENET0GMIITXER_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOENET1GMIITXEN_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOENET1GMIITXER_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOPJTAGTDO_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOPJTAGTDTN_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOTRACECTL_UNCONNECTED : STD_LOGIC; signal NLW_PS7_i_EMIOENET0GMIITXD_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_PS7_i_EMIOENET1GMIITXD_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_PS7_i_EMIOTRACEDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_PS7_i_MAXIGP0ARCACHE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 to 1 ); signal NLW_PS7_i_MAXIGP0AWCACHE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 to 1 ); signal NLW_PS7_i_MAXIGP1ARCACHE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 to 1 ); signal NLW_PS7_i_MAXIGP1AWCACHE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 to 1 ); attribute BOX_TYPE : string; attribute BOX_TYPE of DDR_CAS_n_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_CKE_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_CS_n_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_Clk_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_Clk_n_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_DRSTB_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_ODT_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_RAS_n_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_VRN_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_VRP_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of DDR_WEB_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of PS7_i : label is "PRIMITIVE"; attribute BOX_TYPE of PS_CLK_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of PS_PORB_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of PS_SRSTB_BIBUF : label is "PRIMITIVE"; attribute BOX_TYPE of \buffer_fclk_clk_0.FCLK_CLK_0_BUFG\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[0].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[10].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[11].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[12].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[13].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[14].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[15].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[16].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[17].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[18].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[19].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[1].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[20].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[21].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[22].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[23].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[24].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[25].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[26].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[27].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[28].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[29].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[2].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[30].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[31].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[32].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[33].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[34].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[35].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[36].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[37].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[38].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[39].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[3].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[40].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[41].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[42].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[43].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[44].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[45].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[46].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[47].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[48].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[49].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[4].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[50].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[51].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[52].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[53].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[5].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[6].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[7].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[8].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk13[9].MIO_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk14[0].DDR_BankAddr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk14[1].DDR_BankAddr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk14[2].DDR_BankAddr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[0].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[10].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[11].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[12].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[13].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[14].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[1].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[2].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[3].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[4].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[5].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[6].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[7].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[8].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk15[9].DDR_Addr_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk16[0].DDR_DM_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk16[1].DDR_DM_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk16[2].DDR_DM_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk16[3].DDR_DM_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[0].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[10].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[11].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[12].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[13].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[14].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[15].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[16].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[17].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[18].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[19].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[1].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[20].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[21].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[22].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[23].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[24].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[25].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[26].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[27].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[28].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[29].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[2].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[30].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[31].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[3].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[4].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[5].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[6].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[7].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[8].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk17[9].DDR_DQ_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk18[0].DDR_DQS_n_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk18[1].DDR_DQS_n_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk18[2].DDR_DQS_n_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk18[3].DDR_DQS_n_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk19[0].DDR_DQS_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk19[1].DDR_DQS_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk19[2].DDR_DQS_BIBUF\ : label is "PRIMITIVE"; attribute BOX_TYPE of \genblk19[3].DDR_DQS_BIBUF\ : label is "PRIMITIVE"; begin ENET0_GMII_TXD(7) <= \<const0>\; ENET0_GMII_TXD(6) <= \<const0>\; ENET0_GMII_TXD(5) <= \<const0>\; ENET0_GMII_TXD(4) <= \<const0>\; ENET0_GMII_TXD(3) <= \<const0>\; ENET0_GMII_TXD(2) <= \<const0>\; ENET0_GMII_TXD(1) <= \<const0>\; ENET0_GMII_TXD(0) <= \<const0>\; ENET0_GMII_TX_EN <= \<const0>\; ENET0_GMII_TX_ER <= \<const0>\; ENET1_GMII_TXD(7) <= \<const0>\; ENET1_GMII_TXD(6) <= \<const0>\; ENET1_GMII_TXD(5) <= \<const0>\; ENET1_GMII_TXD(4) <= \<const0>\; ENET1_GMII_TXD(3) <= \<const0>\; ENET1_GMII_TXD(2) <= \<const0>\; ENET1_GMII_TXD(1) <= \<const0>\; ENET1_GMII_TXD(0) <= \<const0>\; ENET1_GMII_TX_EN <= \<const0>\; ENET1_GMII_TX_ER <= \<const0>\; M_AXI_GP0_ARCACHE(3 downto 2) <= \^m_axi_gp0_arcache\(3 downto 2); M_AXI_GP0_ARCACHE(1) <= \<const1>\; M_AXI_GP0_ARCACHE(0) <= \^m_axi_gp0_arcache\(0); M_AXI_GP0_ARSIZE(2) <= \<const0>\; M_AXI_GP0_ARSIZE(1 downto 0) <= \^m_axi_gp0_arsize\(1 downto 0); M_AXI_GP0_AWCACHE(3 downto 2) <= \^m_axi_gp0_awcache\(3 downto 2); M_AXI_GP0_AWCACHE(1) <= \<const1>\; M_AXI_GP0_AWCACHE(0) <= \^m_axi_gp0_awcache\(0); M_AXI_GP0_AWSIZE(2) <= \<const0>\; M_AXI_GP0_AWSIZE(1 downto 0) <= \^m_axi_gp0_awsize\(1 downto 0); M_AXI_GP1_ARCACHE(3 downto 2) <= \^m_axi_gp1_arcache\(3 downto 2); M_AXI_GP1_ARCACHE(1) <= \<const1>\; M_AXI_GP1_ARCACHE(0) <= \^m_axi_gp1_arcache\(0); M_AXI_GP1_ARSIZE(2) <= \<const0>\; M_AXI_GP1_ARSIZE(1 downto 0) <= \^m_axi_gp1_arsize\(1 downto 0); M_AXI_GP1_AWCACHE(3 downto 2) <= \^m_axi_gp1_awcache\(3 downto 2); M_AXI_GP1_AWCACHE(1) <= \<const1>\; M_AXI_GP1_AWCACHE(0) <= \^m_axi_gp1_awcache\(0); M_AXI_GP1_AWSIZE(2) <= \<const0>\; M_AXI_GP1_AWSIZE(1 downto 0) <= \^m_axi_gp1_awsize\(1 downto 0); PJTAG_TDO <= \<const0>\; TRACE_CLK_OUT <= \<const0>\; TRACE_CTL <= \TRACE_CTL_PIPE[0]\; TRACE_DATA(1 downto 0) <= \TRACE_DATA_PIPE[0]\(1 downto 0); DDR_CAS_n_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_CAS_n, PAD => DDR_CAS_n ); DDR_CKE_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_CKE, PAD => DDR_CKE ); DDR_CS_n_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_CS_n, PAD => DDR_CS_n ); DDR_Clk_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Clk, PAD => DDR_Clk ); DDR_Clk_n_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Clk_n, PAD => DDR_Clk_n ); DDR_DRSTB_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DRSTB, PAD => DDR_DRSTB ); DDR_ODT_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_ODT, PAD => DDR_ODT ); DDR_RAS_n_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_RAS_n, PAD => DDR_RAS_n ); DDR_VRN_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_VRN, PAD => DDR_VRN ); DDR_VRP_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_VRP, PAD => DDR_VRP ); DDR_WEB_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_WEB, PAD => DDR_WEB ); ENET0_MDIO_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => ENET0_MDIO_T_n, O => ENET0_MDIO_T ); ENET1_MDIO_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => ENET1_MDIO_T_n, O => ENET1_MDIO_T ); GND: unisim.vcomponents.GND port map ( G => \<const0>\ ); \GPIO_T[0]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(0), O => GPIO_T(0) ); \GPIO_T[10]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(10), O => GPIO_T(10) ); \GPIO_T[11]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(11), O => GPIO_T(11) ); \GPIO_T[12]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(12), O => GPIO_T(12) ); \GPIO_T[13]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(13), O => GPIO_T(13) ); \GPIO_T[14]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(14), O => GPIO_T(14) ); \GPIO_T[15]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(15), O => GPIO_T(15) ); \GPIO_T[16]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(16), O => GPIO_T(16) ); \GPIO_T[17]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(17), O => GPIO_T(17) ); \GPIO_T[18]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(18), O => GPIO_T(18) ); \GPIO_T[19]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(19), O => GPIO_T(19) ); \GPIO_T[1]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(1), O => GPIO_T(1) ); \GPIO_T[20]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(20), O => GPIO_T(20) ); \GPIO_T[21]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(21), O => GPIO_T(21) ); \GPIO_T[22]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(22), O => GPIO_T(22) ); \GPIO_T[23]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(23), O => GPIO_T(23) ); \GPIO_T[24]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(24), O => GPIO_T(24) ); \GPIO_T[25]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(25), O => GPIO_T(25) ); \GPIO_T[26]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(26), O => GPIO_T(26) ); \GPIO_T[27]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(27), O => GPIO_T(27) ); \GPIO_T[28]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(28), O => GPIO_T(28) ); \GPIO_T[29]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(29), O => GPIO_T(29) ); \GPIO_T[2]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(2), O => GPIO_T(2) ); \GPIO_T[30]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(30), O => GPIO_T(30) ); \GPIO_T[31]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(31), O => GPIO_T(31) ); \GPIO_T[32]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(32), O => GPIO_T(32) ); \GPIO_T[33]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(33), O => GPIO_T(33) ); \GPIO_T[34]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(34), O => GPIO_T(34) ); \GPIO_T[35]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(35), O => GPIO_T(35) ); \GPIO_T[36]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(36), O => GPIO_T(36) ); \GPIO_T[37]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(37), O => GPIO_T(37) ); \GPIO_T[38]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(38), O => GPIO_T(38) ); \GPIO_T[39]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(39), O => GPIO_T(39) ); \GPIO_T[3]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(3), O => GPIO_T(3) ); \GPIO_T[40]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(40), O => GPIO_T(40) ); \GPIO_T[41]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(41), O => GPIO_T(41) ); \GPIO_T[42]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(42), O => GPIO_T(42) ); \GPIO_T[43]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(43), O => GPIO_T(43) ); \GPIO_T[44]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(44), O => GPIO_T(44) ); \GPIO_T[45]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(45), O => GPIO_T(45) ); \GPIO_T[46]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(46), O => GPIO_T(46) ); \GPIO_T[47]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(47), O => GPIO_T(47) ); \GPIO_T[48]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(48), O => GPIO_T(48) ); \GPIO_T[49]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(49), O => GPIO_T(49) ); \GPIO_T[4]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(4), O => GPIO_T(4) ); \GPIO_T[50]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(50), O => GPIO_T(50) ); \GPIO_T[51]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(51), O => GPIO_T(51) ); \GPIO_T[52]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(52), O => GPIO_T(52) ); \GPIO_T[53]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(53), O => GPIO_T(53) ); \GPIO_T[54]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(54), O => GPIO_T(54) ); \GPIO_T[55]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(55), O => GPIO_T(55) ); \GPIO_T[56]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(56), O => GPIO_T(56) ); \GPIO_T[57]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(57), O => GPIO_T(57) ); \GPIO_T[58]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(58), O => GPIO_T(58) ); \GPIO_T[59]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(59), O => GPIO_T(59) ); \GPIO_T[5]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(5), O => GPIO_T(5) ); \GPIO_T[60]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(60), O => GPIO_T(60) ); \GPIO_T[61]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(61), O => GPIO_T(61) ); \GPIO_T[62]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(62), O => GPIO_T(62) ); \GPIO_T[63]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(63), O => GPIO_T(63) ); \GPIO_T[6]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(6), O => GPIO_T(6) ); \GPIO_T[7]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(7), O => GPIO_T(7) ); \GPIO_T[8]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(8), O => GPIO_T(8) ); \GPIO_T[9]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => gpio_out_t_n(9), O => GPIO_T(9) ); I2C0_SCL_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => I2C0_SCL_T_n, O => I2C0_SCL_T ); I2C0_SDA_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => I2C0_SDA_T_n, O => I2C0_SDA_T ); I2C1_SCL_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => I2C1_SCL_T_n, O => I2C1_SCL_T ); I2C1_SDA_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => I2C1_SDA_T_n, O => I2C1_SDA_T ); PS7_i: unisim.vcomponents.PS7 port map ( DDRA(14 downto 0) => buffered_DDR_Addr(14 downto 0), DDRARB(3 downto 0) => DDR_ARB(3 downto 0), DDRBA(2 downto 0) => buffered_DDR_BankAddr(2 downto 0), DDRCASB => buffered_DDR_CAS_n, DDRCKE => buffered_DDR_CKE, DDRCKN => buffered_DDR_Clk_n, DDRCKP => buffered_DDR_Clk, DDRCSB => buffered_DDR_CS_n, DDRDM(3 downto 0) => buffered_DDR_DM(3 downto 0), DDRDQ(31 downto 0) => buffered_DDR_DQ(31 downto 0), DDRDQSN(3 downto 0) => buffered_DDR_DQS_n(3 downto 0), DDRDQSP(3 downto 0) => buffered_DDR_DQS(3 downto 0), DDRDRSTB => buffered_DDR_DRSTB, DDRODT => buffered_DDR_ODT, DDRRASB => buffered_DDR_RAS_n, DDRVRN => buffered_DDR_VRN, DDRVRP => buffered_DDR_VRP, DDRWEB => buffered_DDR_WEB, DMA0ACLK => DMA0_ACLK, DMA0DAREADY => DMA0_DAREADY, DMA0DATYPE(1 downto 0) => DMA0_DATYPE(1 downto 0), DMA0DAVALID => DMA0_DAVALID, DMA0DRLAST => DMA0_DRLAST, DMA0DRREADY => DMA0_DRREADY, DMA0DRTYPE(1 downto 0) => DMA0_DRTYPE(1 downto 0), DMA0DRVALID => DMA0_DRVALID, DMA0RSTN => DMA0_RSTN, DMA1ACLK => DMA1_ACLK, DMA1DAREADY => DMA1_DAREADY, DMA1DATYPE(1 downto 0) => DMA1_DATYPE(1 downto 0), DMA1DAVALID => DMA1_DAVALID, DMA1DRLAST => DMA1_DRLAST, DMA1DRREADY => DMA1_DRREADY, DMA1DRTYPE(1 downto 0) => DMA1_DRTYPE(1 downto 0), DMA1DRVALID => DMA1_DRVALID, DMA1RSTN => DMA1_RSTN, DMA2ACLK => DMA2_ACLK, DMA2DAREADY => DMA2_DAREADY, DMA2DATYPE(1 downto 0) => DMA2_DATYPE(1 downto 0), DMA2DAVALID => DMA2_DAVALID, DMA2DRLAST => DMA2_DRLAST, DMA2DRREADY => DMA2_DRREADY, DMA2DRTYPE(1 downto 0) => DMA2_DRTYPE(1 downto 0), DMA2DRVALID => DMA2_DRVALID, DMA2RSTN => DMA2_RSTN, DMA3ACLK => DMA3_ACLK, DMA3DAREADY => DMA3_DAREADY, DMA3DATYPE(1 downto 0) => DMA3_DATYPE(1 downto 0), DMA3DAVALID => DMA3_DAVALID, DMA3DRLAST => DMA3_DRLAST, DMA3DRREADY => DMA3_DRREADY, DMA3DRTYPE(1 downto 0) => DMA3_DRTYPE(1 downto 0), DMA3DRVALID => DMA3_DRVALID, DMA3RSTN => DMA3_RSTN, EMIOCAN0PHYRX => CAN0_PHY_RX, EMIOCAN0PHYTX => CAN0_PHY_TX, EMIOCAN1PHYRX => CAN1_PHY_RX, EMIOCAN1PHYTX => CAN1_PHY_TX, EMIOENET0EXTINTIN => ENET0_EXT_INTIN, EMIOENET0GMIICOL => '0', EMIOENET0GMIICRS => '0', EMIOENET0GMIIRXCLK => ENET0_GMII_RX_CLK, EMIOENET0GMIIRXD(7 downto 0) => B"00000000", EMIOENET0GMIIRXDV => '0', EMIOENET0GMIIRXER => '0', EMIOENET0GMIITXCLK => ENET0_GMII_TX_CLK, EMIOENET0GMIITXD(7 downto 0) => NLW_PS7_i_EMIOENET0GMIITXD_UNCONNECTED(7 downto 0), EMIOENET0GMIITXEN => NLW_PS7_i_EMIOENET0GMIITXEN_UNCONNECTED, EMIOENET0GMIITXER => NLW_PS7_i_EMIOENET0GMIITXER_UNCONNECTED, EMIOENET0MDIOI => ENET0_MDIO_I, EMIOENET0MDIOMDC => ENET0_MDIO_MDC, EMIOENET0MDIOO => ENET0_MDIO_O, EMIOENET0MDIOTN => ENET0_MDIO_T_n, EMIOENET0PTPDELAYREQRX => ENET0_PTP_DELAY_REQ_RX, EMIOENET0PTPDELAYREQTX => ENET0_PTP_DELAY_REQ_TX, EMIOENET0PTPPDELAYREQRX => ENET0_PTP_PDELAY_REQ_RX, EMIOENET0PTPPDELAYREQTX => ENET0_PTP_PDELAY_REQ_TX, EMIOENET0PTPPDELAYRESPRX => ENET0_PTP_PDELAY_RESP_RX, EMIOENET0PTPPDELAYRESPTX => ENET0_PTP_PDELAY_RESP_TX, EMIOENET0PTPSYNCFRAMERX => ENET0_PTP_SYNC_FRAME_RX, EMIOENET0PTPSYNCFRAMETX => ENET0_PTP_SYNC_FRAME_TX, EMIOENET0SOFRX => ENET0_SOF_RX, EMIOENET0SOFTX => ENET0_SOF_TX, EMIOENET1EXTINTIN => ENET1_EXT_INTIN, EMIOENET1GMIICOL => '0', EMIOENET1GMIICRS => '0', EMIOENET1GMIIRXCLK => ENET1_GMII_RX_CLK, EMIOENET1GMIIRXD(7 downto 0) => B"00000000", EMIOENET1GMIIRXDV => '0', EMIOENET1GMIIRXER => '0', EMIOENET1GMIITXCLK => ENET1_GMII_TX_CLK, EMIOENET1GMIITXD(7 downto 0) => NLW_PS7_i_EMIOENET1GMIITXD_UNCONNECTED(7 downto 0), EMIOENET1GMIITXEN => NLW_PS7_i_EMIOENET1GMIITXEN_UNCONNECTED, EMIOENET1GMIITXER => NLW_PS7_i_EMIOENET1GMIITXER_UNCONNECTED, EMIOENET1MDIOI => ENET1_MDIO_I, EMIOENET1MDIOMDC => ENET1_MDIO_MDC, EMIOENET1MDIOO => ENET1_MDIO_O, EMIOENET1MDIOTN => ENET1_MDIO_T_n, EMIOENET1PTPDELAYREQRX => ENET1_PTP_DELAY_REQ_RX, EMIOENET1PTPDELAYREQTX => ENET1_PTP_DELAY_REQ_TX, EMIOENET1PTPPDELAYREQRX => ENET1_PTP_PDELAY_REQ_RX, EMIOENET1PTPPDELAYREQTX => ENET1_PTP_PDELAY_REQ_TX, EMIOENET1PTPPDELAYRESPRX => ENET1_PTP_PDELAY_RESP_RX, EMIOENET1PTPPDELAYRESPTX => ENET1_PTP_PDELAY_RESP_TX, EMIOENET1PTPSYNCFRAMERX => ENET1_PTP_SYNC_FRAME_RX, EMIOENET1PTPSYNCFRAMETX => ENET1_PTP_SYNC_FRAME_TX, EMIOENET1SOFRX => ENET1_SOF_RX, EMIOENET1SOFTX => ENET1_SOF_TX, EMIOGPIOI(63 downto 0) => GPIO_I(63 downto 0), EMIOGPIOO(63 downto 0) => GPIO_O(63 downto 0), EMIOGPIOTN(63 downto 0) => gpio_out_t_n(63 downto 0), EMIOI2C0SCLI => I2C0_SCL_I, EMIOI2C0SCLO => I2C0_SCL_O, EMIOI2C0SCLTN => I2C0_SCL_T_n, EMIOI2C0SDAI => I2C0_SDA_I, EMIOI2C0SDAO => I2C0_SDA_O, EMIOI2C0SDATN => I2C0_SDA_T_n, EMIOI2C1SCLI => I2C1_SCL_I, EMIOI2C1SCLO => I2C1_SCL_O, EMIOI2C1SCLTN => I2C1_SCL_T_n, EMIOI2C1SDAI => I2C1_SDA_I, EMIOI2C1SDAO => I2C1_SDA_O, EMIOI2C1SDATN => I2C1_SDA_T_n, EMIOPJTAGTCK => PJTAG_TCK, EMIOPJTAGTDI => PJTAG_TDI, EMIOPJTAGTDO => NLW_PS7_i_EMIOPJTAGTDO_UNCONNECTED, EMIOPJTAGTDTN => NLW_PS7_i_EMIOPJTAGTDTN_UNCONNECTED, EMIOPJTAGTMS => PJTAG_TMS, EMIOSDIO0BUSPOW => SDIO0_BUSPOW, EMIOSDIO0BUSVOLT(2 downto 0) => SDIO0_BUSVOLT(2 downto 0), EMIOSDIO0CDN => SDIO0_CDN, EMIOSDIO0CLK => SDIO0_CLK, EMIOSDIO0CLKFB => SDIO0_CLK_FB, EMIOSDIO0CMDI => SDIO0_CMD_I, EMIOSDIO0CMDO => SDIO0_CMD_O, EMIOSDIO0CMDTN => SDIO0_CMD_T_n, EMIOSDIO0DATAI(3 downto 0) => SDIO0_DATA_I(3 downto 0), EMIOSDIO0DATAO(3 downto 0) => SDIO0_DATA_O(3 downto 0), EMIOSDIO0DATATN(3 downto 0) => SDIO0_DATA_T_n(3 downto 0), EMIOSDIO0LED => SDIO0_LED, EMIOSDIO0WP => SDIO0_WP, EMIOSDIO1BUSPOW => SDIO1_BUSPOW, EMIOSDIO1BUSVOLT(2 downto 0) => SDIO1_BUSVOLT(2 downto 0), EMIOSDIO1CDN => SDIO1_CDN, EMIOSDIO1CLK => SDIO1_CLK, EMIOSDIO1CLKFB => SDIO1_CLK_FB, EMIOSDIO1CMDI => SDIO1_CMD_I, EMIOSDIO1CMDO => SDIO1_CMD_O, EMIOSDIO1CMDTN => SDIO1_CMD_T_n, EMIOSDIO1DATAI(3 downto 0) => SDIO1_DATA_I(3 downto 0), EMIOSDIO1DATAO(3 downto 0) => SDIO1_DATA_O(3 downto 0), EMIOSDIO1DATATN(3 downto 0) => SDIO1_DATA_T_n(3 downto 0), EMIOSDIO1LED => SDIO1_LED, EMIOSDIO1WP => SDIO1_WP, EMIOSPI0MI => SPI0_MISO_I, EMIOSPI0MO => SPI0_MOSI_O, EMIOSPI0MOTN => SPI0_MOSI_T_n, EMIOSPI0SCLKI => SPI0_SCLK_I, EMIOSPI0SCLKO => SPI0_SCLK_O, EMIOSPI0SCLKTN => SPI0_SCLK_T_n, EMIOSPI0SI => SPI0_MOSI_I, EMIOSPI0SO => SPI0_MISO_O, EMIOSPI0SSIN => SPI0_SS_I, EMIOSPI0SSNTN => SPI0_SS_T_n, EMIOSPI0SSON(2) => SPI0_SS2_O, EMIOSPI0SSON(1) => SPI0_SS1_O, EMIOSPI0SSON(0) => SPI0_SS_O, EMIOSPI0STN => SPI0_MISO_T_n, EMIOSPI1MI => SPI1_MISO_I, EMIOSPI1MO => SPI1_MOSI_O, EMIOSPI1MOTN => SPI1_MOSI_T_n, EMIOSPI1SCLKI => SPI1_SCLK_I, EMIOSPI1SCLKO => SPI1_SCLK_O, EMIOSPI1SCLKTN => SPI1_SCLK_T_n, EMIOSPI1SI => SPI1_MOSI_I, EMIOSPI1SO => SPI1_MISO_O, EMIOSPI1SSIN => SPI1_SS_I, EMIOSPI1SSNTN => SPI1_SS_T_n, EMIOSPI1SSON(2) => SPI1_SS2_O, EMIOSPI1SSON(1) => SPI1_SS1_O, EMIOSPI1SSON(0) => SPI1_SS_O, EMIOSPI1STN => SPI1_MISO_T_n, EMIOSRAMINTIN => SRAM_INTIN, EMIOTRACECLK => TRACE_CLK, EMIOTRACECTL => NLW_PS7_i_EMIOTRACECTL_UNCONNECTED, EMIOTRACEDATA(31 downto 0) => NLW_PS7_i_EMIOTRACEDATA_UNCONNECTED(31 downto 0), EMIOTTC0CLKI(2) => TTC0_CLK2_IN, EMIOTTC0CLKI(1) => TTC0_CLK1_IN, EMIOTTC0CLKI(0) => TTC0_CLK0_IN, EMIOTTC0WAVEO(2) => TTC0_WAVE2_OUT, EMIOTTC0WAVEO(1) => TTC0_WAVE1_OUT, EMIOTTC0WAVEO(0) => TTC0_WAVE0_OUT, EMIOTTC1CLKI(2) => TTC1_CLK2_IN, EMIOTTC1CLKI(1) => TTC1_CLK1_IN, EMIOTTC1CLKI(0) => TTC1_CLK0_IN, EMIOTTC1WAVEO(2) => TTC1_WAVE2_OUT, EMIOTTC1WAVEO(1) => TTC1_WAVE1_OUT, EMIOTTC1WAVEO(0) => TTC1_WAVE0_OUT, EMIOUART0CTSN => UART0_CTSN, EMIOUART0DCDN => UART0_DCDN, EMIOUART0DSRN => UART0_DSRN, EMIOUART0DTRN => UART0_DTRN, EMIOUART0RIN => UART0_RIN, EMIOUART0RTSN => UART0_RTSN, EMIOUART0RX => UART0_RX, EMIOUART0TX => UART0_TX, EMIOUART1CTSN => UART1_CTSN, EMIOUART1DCDN => UART1_DCDN, EMIOUART1DSRN => UART1_DSRN, EMIOUART1DTRN => UART1_DTRN, EMIOUART1RIN => UART1_RIN, EMIOUART1RTSN => UART1_RTSN, EMIOUART1RX => UART1_RX, EMIOUART1TX => UART1_TX, EMIOUSB0PORTINDCTL(1 downto 0) => USB0_PORT_INDCTL(1 downto 0), EMIOUSB0VBUSPWRFAULT => USB0_VBUS_PWRFAULT, EMIOUSB0VBUSPWRSELECT => USB0_VBUS_PWRSELECT, EMIOUSB1PORTINDCTL(1 downto 0) => USB1_PORT_INDCTL(1 downto 0), EMIOUSB1VBUSPWRFAULT => USB1_VBUS_PWRFAULT, EMIOUSB1VBUSPWRSELECT => USB1_VBUS_PWRSELECT, EMIOWDTCLKI => WDT_CLK_IN, EMIOWDTRSTO => WDT_RST_OUT, EVENTEVENTI => EVENT_EVENTI, EVENTEVENTO => EVENT_EVENTO, EVENTSTANDBYWFE(1 downto 0) => EVENT_STANDBYWFE(1 downto 0), EVENTSTANDBYWFI(1 downto 0) => EVENT_STANDBYWFI(1 downto 0), FCLKCLK(3) => FCLK_CLK3, FCLKCLK(2) => FCLK_CLK2, FCLKCLK(1) => FCLK_CLK1, FCLKCLK(0) => FCLK_CLK_unbuffered(0), FCLKCLKTRIGN(3 downto 0) => B"0000", FCLKRESETN(3) => FCLK_RESET3_N, FCLKRESETN(2) => FCLK_RESET2_N, FCLKRESETN(1) => FCLK_RESET1_N, FCLKRESETN(0) => FCLK_RESET0_N, FPGAIDLEN => FPGA_IDLE_N, FTMDTRACEINATID(3 downto 0) => B"0000", FTMDTRACEINCLOCK => FTMD_TRACEIN_CLK, FTMDTRACEINDATA(31 downto 0) => B"00000000000000000000000000000000", FTMDTRACEINVALID => '0', FTMTF2PDEBUG(31 downto 0) => FTMT_F2P_DEBUG(31 downto 0), FTMTF2PTRIG(3) => FTMT_F2P_TRIG_3, FTMTF2PTRIG(2) => FTMT_F2P_TRIG_2, FTMTF2PTRIG(1) => FTMT_F2P_TRIG_1, FTMTF2PTRIG(0) => FTMT_F2P_TRIG_0, FTMTF2PTRIGACK(3) => FTMT_F2P_TRIGACK_3, FTMTF2PTRIGACK(2) => FTMT_F2P_TRIGACK_2, FTMTF2PTRIGACK(1) => FTMT_F2P_TRIGACK_1, FTMTF2PTRIGACK(0) => FTMT_F2P_TRIGACK_0, FTMTP2FDEBUG(31 downto 0) => FTMT_P2F_DEBUG(31 downto 0), FTMTP2FTRIG(3) => FTMT_P2F_TRIG_3, FTMTP2FTRIG(2) => FTMT_P2F_TRIG_2, FTMTP2FTRIG(1) => FTMT_P2F_TRIG_1, FTMTP2FTRIG(0) => FTMT_P2F_TRIG_0, FTMTP2FTRIGACK(3) => FTMT_P2F_TRIGACK_3, FTMTP2FTRIGACK(2) => FTMT_P2F_TRIGACK_2, FTMTP2FTRIGACK(1) => FTMT_P2F_TRIGACK_1, FTMTP2FTRIGACK(0) => FTMT_P2F_TRIGACK_0, IRQF2P(19) => Core1_nFIQ, IRQF2P(18) => Core0_nFIQ, IRQF2P(17) => Core1_nIRQ, IRQF2P(16) => Core0_nIRQ, IRQF2P(15 downto 2) => B"00000000000000", IRQF2P(1 downto 0) => IRQ_F2P(1 downto 0), IRQP2F(28) => IRQ_P2F_DMAC_ABORT, IRQP2F(27) => IRQ_P2F_DMAC7, IRQP2F(26) => IRQ_P2F_DMAC6, IRQP2F(25) => IRQ_P2F_DMAC5, IRQP2F(24) => IRQ_P2F_DMAC4, IRQP2F(23) => IRQ_P2F_DMAC3, IRQP2F(22) => IRQ_P2F_DMAC2, IRQP2F(21) => IRQ_P2F_DMAC1, IRQP2F(20) => IRQ_P2F_DMAC0, IRQP2F(19) => IRQ_P2F_SMC, IRQP2F(18) => IRQ_P2F_QSPI, IRQP2F(17) => IRQ_P2F_CTI, IRQP2F(16) => IRQ_P2F_GPIO, IRQP2F(15) => IRQ_P2F_USB0, IRQP2F(14) => IRQ_P2F_ENET0, IRQP2F(13) => IRQ_P2F_ENET_WAKE0, IRQP2F(12) => IRQ_P2F_SDIO0, IRQP2F(11) => IRQ_P2F_I2C0, IRQP2F(10) => IRQ_P2F_SPI0, IRQP2F(9) => IRQ_P2F_UART0, IRQP2F(8) => IRQ_P2F_CAN0, IRQP2F(7) => IRQ_P2F_USB1, IRQP2F(6) => IRQ_P2F_ENET1, IRQP2F(5) => IRQ_P2F_ENET_WAKE1, IRQP2F(4) => IRQ_P2F_SDIO1, IRQP2F(3) => IRQ_P2F_I2C1, IRQP2F(2) => IRQ_P2F_SPI1, IRQP2F(1) => IRQ_P2F_UART1, IRQP2F(0) => IRQ_P2F_CAN1, MAXIGP0ACLK => M_AXI_GP0_ACLK, MAXIGP0ARADDR(31 downto 0) => M_AXI_GP0_ARADDR(31 downto 0), MAXIGP0ARBURST(1 downto 0) => M_AXI_GP0_ARBURST(1 downto 0), MAXIGP0ARCACHE(3 downto 2) => \^m_axi_gp0_arcache\(3 downto 2), MAXIGP0ARCACHE(1) => NLW_PS7_i_MAXIGP0ARCACHE_UNCONNECTED(1), MAXIGP0ARCACHE(0) => \^m_axi_gp0_arcache\(0), MAXIGP0ARESETN => M_AXI_GP0_ARESETN, MAXIGP0ARID(11 downto 0) => M_AXI_GP0_ARID(11 downto 0), MAXIGP0ARLEN(3 downto 0) => M_AXI_GP0_ARLEN(3 downto 0), MAXIGP0ARLOCK(1 downto 0) => M_AXI_GP0_ARLOCK(1 downto 0), MAXIGP0ARPROT(2 downto 0) => M_AXI_GP0_ARPROT(2 downto 0), MAXIGP0ARQOS(3 downto 0) => M_AXI_GP0_ARQOS(3 downto 0), MAXIGP0ARREADY => M_AXI_GP0_ARREADY, MAXIGP0ARSIZE(1 downto 0) => \^m_axi_gp0_arsize\(1 downto 0), MAXIGP0ARVALID => M_AXI_GP0_ARVALID, MAXIGP0AWADDR(31 downto 0) => M_AXI_GP0_AWADDR(31 downto 0), MAXIGP0AWBURST(1 downto 0) => M_AXI_GP0_AWBURST(1 downto 0), MAXIGP0AWCACHE(3 downto 2) => \^m_axi_gp0_awcache\(3 downto 2), MAXIGP0AWCACHE(1) => NLW_PS7_i_MAXIGP0AWCACHE_UNCONNECTED(1), MAXIGP0AWCACHE(0) => \^m_axi_gp0_awcache\(0), MAXIGP0AWID(11 downto 0) => M_AXI_GP0_AWID(11 downto 0), MAXIGP0AWLEN(3 downto 0) => M_AXI_GP0_AWLEN(3 downto 0), MAXIGP0AWLOCK(1 downto 0) => M_AXI_GP0_AWLOCK(1 downto 0), MAXIGP0AWPROT(2 downto 0) => M_AXI_GP0_AWPROT(2 downto 0), MAXIGP0AWQOS(3 downto 0) => M_AXI_GP0_AWQOS(3 downto 0), MAXIGP0AWREADY => M_AXI_GP0_AWREADY, MAXIGP0AWSIZE(1 downto 0) => \^m_axi_gp0_awsize\(1 downto 0), MAXIGP0AWVALID => M_AXI_GP0_AWVALID, MAXIGP0BID(11 downto 0) => M_AXI_GP0_BID(11 downto 0), MAXIGP0BREADY => M_AXI_GP0_BREADY, MAXIGP0BRESP(1 downto 0) => M_AXI_GP0_BRESP(1 downto 0), MAXIGP0BVALID => M_AXI_GP0_BVALID, MAXIGP0RDATA(31 downto 0) => M_AXI_GP0_RDATA(31 downto 0), MAXIGP0RID(11 downto 0) => M_AXI_GP0_RID(11 downto 0), MAXIGP0RLAST => M_AXI_GP0_RLAST, MAXIGP0RREADY => M_AXI_GP0_RREADY, MAXIGP0RRESP(1 downto 0) => M_AXI_GP0_RRESP(1 downto 0), MAXIGP0RVALID => M_AXI_GP0_RVALID, MAXIGP0WDATA(31 downto 0) => M_AXI_GP0_WDATA(31 downto 0), MAXIGP0WID(11 downto 0) => M_AXI_GP0_WID(11 downto 0), MAXIGP0WLAST => M_AXI_GP0_WLAST, MAXIGP0WREADY => M_AXI_GP0_WREADY, MAXIGP0WSTRB(3 downto 0) => M_AXI_GP0_WSTRB(3 downto 0), MAXIGP0WVALID => M_AXI_GP0_WVALID, MAXIGP1ACLK => M_AXI_GP1_ACLK, MAXIGP1ARADDR(31 downto 0) => M_AXI_GP1_ARADDR(31 downto 0), MAXIGP1ARBURST(1 downto 0) => M_AXI_GP1_ARBURST(1 downto 0), MAXIGP1ARCACHE(3 downto 2) => \^m_axi_gp1_arcache\(3 downto 2), MAXIGP1ARCACHE(1) => NLW_PS7_i_MAXIGP1ARCACHE_UNCONNECTED(1), MAXIGP1ARCACHE(0) => \^m_axi_gp1_arcache\(0), MAXIGP1ARESETN => M_AXI_GP1_ARESETN, MAXIGP1ARID(11 downto 0) => M_AXI_GP1_ARID(11 downto 0), MAXIGP1ARLEN(3 downto 0) => M_AXI_GP1_ARLEN(3 downto 0), MAXIGP1ARLOCK(1 downto 0) => M_AXI_GP1_ARLOCK(1 downto 0), MAXIGP1ARPROT(2 downto 0) => M_AXI_GP1_ARPROT(2 downto 0), MAXIGP1ARQOS(3 downto 0) => M_AXI_GP1_ARQOS(3 downto 0), MAXIGP1ARREADY => M_AXI_GP1_ARREADY, MAXIGP1ARSIZE(1 downto 0) => \^m_axi_gp1_arsize\(1 downto 0), MAXIGP1ARVALID => M_AXI_GP1_ARVALID, MAXIGP1AWADDR(31 downto 0) => M_AXI_GP1_AWADDR(31 downto 0), MAXIGP1AWBURST(1 downto 0) => M_AXI_GP1_AWBURST(1 downto 0), MAXIGP1AWCACHE(3 downto 2) => \^m_axi_gp1_awcache\(3 downto 2), MAXIGP1AWCACHE(1) => NLW_PS7_i_MAXIGP1AWCACHE_UNCONNECTED(1), MAXIGP1AWCACHE(0) => \^m_axi_gp1_awcache\(0), MAXIGP1AWID(11 downto 0) => M_AXI_GP1_AWID(11 downto 0), MAXIGP1AWLEN(3 downto 0) => M_AXI_GP1_AWLEN(3 downto 0), MAXIGP1AWLOCK(1 downto 0) => M_AXI_GP1_AWLOCK(1 downto 0), MAXIGP1AWPROT(2 downto 0) => M_AXI_GP1_AWPROT(2 downto 0), MAXIGP1AWQOS(3 downto 0) => M_AXI_GP1_AWQOS(3 downto 0), MAXIGP1AWREADY => M_AXI_GP1_AWREADY, MAXIGP1AWSIZE(1 downto 0) => \^m_axi_gp1_awsize\(1 downto 0), MAXIGP1AWVALID => M_AXI_GP1_AWVALID, MAXIGP1BID(11 downto 0) => M_AXI_GP1_BID(11 downto 0), MAXIGP1BREADY => M_AXI_GP1_BREADY, MAXIGP1BRESP(1 downto 0) => M_AXI_GP1_BRESP(1 downto 0), MAXIGP1BVALID => M_AXI_GP1_BVALID, MAXIGP1RDATA(31 downto 0) => M_AXI_GP1_RDATA(31 downto 0), MAXIGP1RID(11 downto 0) => M_AXI_GP1_RID(11 downto 0), MAXIGP1RLAST => M_AXI_GP1_RLAST, MAXIGP1RREADY => M_AXI_GP1_RREADY, MAXIGP1RRESP(1 downto 0) => M_AXI_GP1_RRESP(1 downto 0), MAXIGP1RVALID => M_AXI_GP1_RVALID, MAXIGP1WDATA(31 downto 0) => M_AXI_GP1_WDATA(31 downto 0), MAXIGP1WID(11 downto 0) => M_AXI_GP1_WID(11 downto 0), MAXIGP1WLAST => M_AXI_GP1_WLAST, MAXIGP1WREADY => M_AXI_GP1_WREADY, MAXIGP1WSTRB(3 downto 0) => M_AXI_GP1_WSTRB(3 downto 0), MAXIGP1WVALID => M_AXI_GP1_WVALID, MIO(53 downto 0) => buffered_MIO(53 downto 0), PSCLK => buffered_PS_CLK, PSPORB => buffered_PS_PORB, PSSRSTB => buffered_PS_SRSTB, SAXIACPACLK => S_AXI_ACP_ACLK, SAXIACPARADDR(31 downto 0) => S_AXI_ACP_ARADDR(31 downto 0), SAXIACPARBURST(1 downto 0) => S_AXI_ACP_ARBURST(1 downto 0), SAXIACPARCACHE(3 downto 0) => S_AXI_ACP_ARCACHE(3 downto 0), SAXIACPARESETN => S_AXI_ACP_ARESETN, SAXIACPARID(2 downto 0) => S_AXI_ACP_ARID(2 downto 0), SAXIACPARLEN(3 downto 0) => S_AXI_ACP_ARLEN(3 downto 0), SAXIACPARLOCK(1 downto 0) => S_AXI_ACP_ARLOCK(1 downto 0), SAXIACPARPROT(2 downto 0) => S_AXI_ACP_ARPROT(2 downto 0), SAXIACPARQOS(3 downto 0) => S_AXI_ACP_ARQOS(3 downto 0), SAXIACPARREADY => S_AXI_ACP_ARREADY, SAXIACPARSIZE(1 downto 0) => S_AXI_ACP_ARSIZE(1 downto 0), SAXIACPARUSER(4 downto 0) => S_AXI_ACP_ARUSER(4 downto 0), SAXIACPARVALID => S_AXI_ACP_ARVALID, SAXIACPAWADDR(31 downto 0) => S_AXI_ACP_AWADDR(31 downto 0), SAXIACPAWBURST(1 downto 0) => S_AXI_ACP_AWBURST(1 downto 0), SAXIACPAWCACHE(3 downto 0) => S_AXI_ACP_AWCACHE(3 downto 0), SAXIACPAWID(2 downto 0) => S_AXI_ACP_AWID(2 downto 0), SAXIACPAWLEN(3 downto 0) => S_AXI_ACP_AWLEN(3 downto 0), SAXIACPAWLOCK(1 downto 0) => S_AXI_ACP_AWLOCK(1 downto 0), SAXIACPAWPROT(2 downto 0) => S_AXI_ACP_AWPROT(2 downto 0), SAXIACPAWQOS(3 downto 0) => S_AXI_ACP_AWQOS(3 downto 0), SAXIACPAWREADY => S_AXI_ACP_AWREADY, SAXIACPAWSIZE(1 downto 0) => S_AXI_ACP_AWSIZE(1 downto 0), SAXIACPAWUSER(4 downto 0) => S_AXI_ACP_AWUSER(4 downto 0), SAXIACPAWVALID => S_AXI_ACP_AWVALID, SAXIACPBID(2 downto 0) => S_AXI_ACP_BID(2 downto 0), SAXIACPBREADY => S_AXI_ACP_BREADY, SAXIACPBRESP(1 downto 0) => S_AXI_ACP_BRESP(1 downto 0), SAXIACPBVALID => S_AXI_ACP_BVALID, SAXIACPRDATA(63 downto 0) => S_AXI_ACP_RDATA(63 downto 0), SAXIACPRID(2 downto 0) => S_AXI_ACP_RID(2 downto 0), SAXIACPRLAST => S_AXI_ACP_RLAST, SAXIACPRREADY => S_AXI_ACP_RREADY, SAXIACPRRESP(1 downto 0) => S_AXI_ACP_RRESP(1 downto 0), SAXIACPRVALID => S_AXI_ACP_RVALID, SAXIACPWDATA(63 downto 0) => S_AXI_ACP_WDATA(63 downto 0), SAXIACPWID(2 downto 0) => S_AXI_ACP_WID(2 downto 0), SAXIACPWLAST => S_AXI_ACP_WLAST, SAXIACPWREADY => S_AXI_ACP_WREADY, SAXIACPWSTRB(7 downto 0) => S_AXI_ACP_WSTRB(7 downto 0), SAXIACPWVALID => S_AXI_ACP_WVALID, SAXIGP0ACLK => S_AXI_GP0_ACLK, SAXIGP0ARADDR(31 downto 0) => S_AXI_GP0_ARADDR(31 downto 0), SAXIGP0ARBURST(1 downto 0) => S_AXI_GP0_ARBURST(1 downto 0), SAXIGP0ARCACHE(3 downto 0) => S_AXI_GP0_ARCACHE(3 downto 0), SAXIGP0ARESETN => S_AXI_GP0_ARESETN, SAXIGP0ARID(5 downto 0) => S_AXI_GP0_ARID(5 downto 0), SAXIGP0ARLEN(3 downto 0) => S_AXI_GP0_ARLEN(3 downto 0), SAXIGP0ARLOCK(1 downto 0) => S_AXI_GP0_ARLOCK(1 downto 0), SAXIGP0ARPROT(2 downto 0) => S_AXI_GP0_ARPROT(2 downto 0), SAXIGP0ARQOS(3 downto 0) => S_AXI_GP0_ARQOS(3 downto 0), SAXIGP0ARREADY => S_AXI_GP0_ARREADY, SAXIGP0ARSIZE(1 downto 0) => S_AXI_GP0_ARSIZE(1 downto 0), SAXIGP0ARVALID => S_AXI_GP0_ARVALID, SAXIGP0AWADDR(31 downto 0) => S_AXI_GP0_AWADDR(31 downto 0), SAXIGP0AWBURST(1 downto 0) => S_AXI_GP0_AWBURST(1 downto 0), SAXIGP0AWCACHE(3 downto 0) => S_AXI_GP0_AWCACHE(3 downto 0), SAXIGP0AWID(5 downto 0) => S_AXI_GP0_AWID(5 downto 0), SAXIGP0AWLEN(3 downto 0) => S_AXI_GP0_AWLEN(3 downto 0), SAXIGP0AWLOCK(1 downto 0) => S_AXI_GP0_AWLOCK(1 downto 0), SAXIGP0AWPROT(2 downto 0) => S_AXI_GP0_AWPROT(2 downto 0), SAXIGP0AWQOS(3 downto 0) => S_AXI_GP0_AWQOS(3 downto 0), SAXIGP0AWREADY => S_AXI_GP0_AWREADY, SAXIGP0AWSIZE(1 downto 0) => S_AXI_GP0_AWSIZE(1 downto 0), SAXIGP0AWVALID => S_AXI_GP0_AWVALID, SAXIGP0BID(5 downto 0) => S_AXI_GP0_BID(5 downto 0), SAXIGP0BREADY => S_AXI_GP0_BREADY, SAXIGP0BRESP(1 downto 0) => S_AXI_GP0_BRESP(1 downto 0), SAXIGP0BVALID => S_AXI_GP0_BVALID, SAXIGP0RDATA(31 downto 0) => S_AXI_GP0_RDATA(31 downto 0), SAXIGP0RID(5 downto 0) => S_AXI_GP0_RID(5 downto 0), SAXIGP0RLAST => S_AXI_GP0_RLAST, SAXIGP0RREADY => S_AXI_GP0_RREADY, SAXIGP0RRESP(1 downto 0) => S_AXI_GP0_RRESP(1 downto 0), SAXIGP0RVALID => S_AXI_GP0_RVALID, SAXIGP0WDATA(31 downto 0) => S_AXI_GP0_WDATA(31 downto 0), SAXIGP0WID(5 downto 0) => S_AXI_GP0_WID(5 downto 0), SAXIGP0WLAST => S_AXI_GP0_WLAST, SAXIGP0WREADY => S_AXI_GP0_WREADY, SAXIGP0WSTRB(3 downto 0) => S_AXI_GP0_WSTRB(3 downto 0), SAXIGP0WVALID => S_AXI_GP0_WVALID, SAXIGP1ACLK => S_AXI_GP1_ACLK, SAXIGP1ARADDR(31 downto 0) => S_AXI_GP1_ARADDR(31 downto 0), SAXIGP1ARBURST(1 downto 0) => S_AXI_GP1_ARBURST(1 downto 0), SAXIGP1ARCACHE(3 downto 0) => S_AXI_GP1_ARCACHE(3 downto 0), SAXIGP1ARESETN => S_AXI_GP1_ARESETN, SAXIGP1ARID(5 downto 0) => S_AXI_GP1_ARID(5 downto 0), SAXIGP1ARLEN(3 downto 0) => S_AXI_GP1_ARLEN(3 downto 0), SAXIGP1ARLOCK(1 downto 0) => S_AXI_GP1_ARLOCK(1 downto 0), SAXIGP1ARPROT(2 downto 0) => S_AXI_GP1_ARPROT(2 downto 0), SAXIGP1ARQOS(3 downto 0) => S_AXI_GP1_ARQOS(3 downto 0), SAXIGP1ARREADY => S_AXI_GP1_ARREADY, SAXIGP1ARSIZE(1 downto 0) => S_AXI_GP1_ARSIZE(1 downto 0), SAXIGP1ARVALID => S_AXI_GP1_ARVALID, SAXIGP1AWADDR(31 downto 0) => S_AXI_GP1_AWADDR(31 downto 0), SAXIGP1AWBURST(1 downto 0) => S_AXI_GP1_AWBURST(1 downto 0), SAXIGP1AWCACHE(3 downto 0) => S_AXI_GP1_AWCACHE(3 downto 0), SAXIGP1AWID(5 downto 0) => S_AXI_GP1_AWID(5 downto 0), SAXIGP1AWLEN(3 downto 0) => S_AXI_GP1_AWLEN(3 downto 0), SAXIGP1AWLOCK(1 downto 0) => S_AXI_GP1_AWLOCK(1 downto 0), SAXIGP1AWPROT(2 downto 0) => S_AXI_GP1_AWPROT(2 downto 0), SAXIGP1AWQOS(3 downto 0) => S_AXI_GP1_AWQOS(3 downto 0), SAXIGP1AWREADY => S_AXI_GP1_AWREADY, SAXIGP1AWSIZE(1 downto 0) => S_AXI_GP1_AWSIZE(1 downto 0), SAXIGP1AWVALID => S_AXI_GP1_AWVALID, SAXIGP1BID(5 downto 0) => S_AXI_GP1_BID(5 downto 0), SAXIGP1BREADY => S_AXI_GP1_BREADY, SAXIGP1BRESP(1 downto 0) => S_AXI_GP1_BRESP(1 downto 0), SAXIGP1BVALID => S_AXI_GP1_BVALID, SAXIGP1RDATA(31 downto 0) => S_AXI_GP1_RDATA(31 downto 0), SAXIGP1RID(5 downto 0) => S_AXI_GP1_RID(5 downto 0), SAXIGP1RLAST => S_AXI_GP1_RLAST, SAXIGP1RREADY => S_AXI_GP1_RREADY, SAXIGP1RRESP(1 downto 0) => S_AXI_GP1_RRESP(1 downto 0), SAXIGP1RVALID => S_AXI_GP1_RVALID, SAXIGP1WDATA(31 downto 0) => S_AXI_GP1_WDATA(31 downto 0), SAXIGP1WID(5 downto 0) => S_AXI_GP1_WID(5 downto 0), SAXIGP1WLAST => S_AXI_GP1_WLAST, SAXIGP1WREADY => S_AXI_GP1_WREADY, SAXIGP1WSTRB(3 downto 0) => S_AXI_GP1_WSTRB(3 downto 0), SAXIGP1WVALID => S_AXI_GP1_WVALID, SAXIHP0ACLK => S_AXI_HP0_ACLK, SAXIHP0ARADDR(31 downto 0) => S_AXI_HP0_ARADDR(31 downto 0), SAXIHP0ARBURST(1 downto 0) => S_AXI_HP0_ARBURST(1 downto 0), SAXIHP0ARCACHE(3 downto 0) => S_AXI_HP0_ARCACHE(3 downto 0), SAXIHP0ARESETN => S_AXI_HP0_ARESETN, SAXIHP0ARID(5 downto 0) => S_AXI_HP0_ARID(5 downto 0), SAXIHP0ARLEN(3 downto 0) => S_AXI_HP0_ARLEN(3 downto 0), SAXIHP0ARLOCK(1 downto 0) => S_AXI_HP0_ARLOCK(1 downto 0), SAXIHP0ARPROT(2 downto 0) => S_AXI_HP0_ARPROT(2 downto 0), SAXIHP0ARQOS(3 downto 0) => S_AXI_HP0_ARQOS(3 downto 0), SAXIHP0ARREADY => S_AXI_HP0_ARREADY, SAXIHP0ARSIZE(1 downto 0) => S_AXI_HP0_ARSIZE(1 downto 0), SAXIHP0ARVALID => S_AXI_HP0_ARVALID, SAXIHP0AWADDR(31 downto 0) => S_AXI_HP0_AWADDR(31 downto 0), SAXIHP0AWBURST(1 downto 0) => S_AXI_HP0_AWBURST(1 downto 0), SAXIHP0AWCACHE(3 downto 0) => S_AXI_HP0_AWCACHE(3 downto 0), SAXIHP0AWID(5 downto 0) => S_AXI_HP0_AWID(5 downto 0), SAXIHP0AWLEN(3 downto 0) => S_AXI_HP0_AWLEN(3 downto 0), SAXIHP0AWLOCK(1 downto 0) => S_AXI_HP0_AWLOCK(1 downto 0), SAXIHP0AWPROT(2 downto 0) => S_AXI_HP0_AWPROT(2 downto 0), SAXIHP0AWQOS(3 downto 0) => S_AXI_HP0_AWQOS(3 downto 0), SAXIHP0AWREADY => S_AXI_HP0_AWREADY, SAXIHP0AWSIZE(1 downto 0) => S_AXI_HP0_AWSIZE(1 downto 0), SAXIHP0AWVALID => S_AXI_HP0_AWVALID, SAXIHP0BID(5 downto 0) => S_AXI_HP0_BID(5 downto 0), SAXIHP0BREADY => S_AXI_HP0_BREADY, SAXIHP0BRESP(1 downto 0) => S_AXI_HP0_BRESP(1 downto 0), SAXIHP0BVALID => S_AXI_HP0_BVALID, SAXIHP0RACOUNT(2 downto 0) => S_AXI_HP0_RACOUNT(2 downto 0), SAXIHP0RCOUNT(7 downto 0) => S_AXI_HP0_RCOUNT(7 downto 0), SAXIHP0RDATA(63 downto 0) => S_AXI_HP0_RDATA(63 downto 0), SAXIHP0RDISSUECAP1EN => S_AXI_HP0_RDISSUECAP1_EN, SAXIHP0RID(5 downto 0) => S_AXI_HP0_RID(5 downto 0), SAXIHP0RLAST => S_AXI_HP0_RLAST, SAXIHP0RREADY => S_AXI_HP0_RREADY, SAXIHP0RRESP(1 downto 0) => S_AXI_HP0_RRESP(1 downto 0), SAXIHP0RVALID => S_AXI_HP0_RVALID, SAXIHP0WACOUNT(5 downto 0) => S_AXI_HP0_WACOUNT(5 downto 0), SAXIHP0WCOUNT(7 downto 0) => S_AXI_HP0_WCOUNT(7 downto 0), SAXIHP0WDATA(63 downto 0) => S_AXI_HP0_WDATA(63 downto 0), SAXIHP0WID(5 downto 0) => S_AXI_HP0_WID(5 downto 0), SAXIHP0WLAST => S_AXI_HP0_WLAST, SAXIHP0WREADY => S_AXI_HP0_WREADY, SAXIHP0WRISSUECAP1EN => S_AXI_HP0_WRISSUECAP1_EN, SAXIHP0WSTRB(7 downto 0) => S_AXI_HP0_WSTRB(7 downto 0), SAXIHP0WVALID => S_AXI_HP0_WVALID, SAXIHP1ACLK => S_AXI_HP1_ACLK, SAXIHP1ARADDR(31 downto 0) => S_AXI_HP1_ARADDR(31 downto 0), SAXIHP1ARBURST(1 downto 0) => S_AXI_HP1_ARBURST(1 downto 0), SAXIHP1ARCACHE(3 downto 0) => S_AXI_HP1_ARCACHE(3 downto 0), SAXIHP1ARESETN => S_AXI_HP1_ARESETN, SAXIHP1ARID(5 downto 0) => S_AXI_HP1_ARID(5 downto 0), SAXIHP1ARLEN(3 downto 0) => S_AXI_HP1_ARLEN(3 downto 0), SAXIHP1ARLOCK(1 downto 0) => S_AXI_HP1_ARLOCK(1 downto 0), SAXIHP1ARPROT(2 downto 0) => S_AXI_HP1_ARPROT(2 downto 0), SAXIHP1ARQOS(3 downto 0) => S_AXI_HP1_ARQOS(3 downto 0), SAXIHP1ARREADY => S_AXI_HP1_ARREADY, SAXIHP1ARSIZE(1 downto 0) => S_AXI_HP1_ARSIZE(1 downto 0), SAXIHP1ARVALID => S_AXI_HP1_ARVALID, SAXIHP1AWADDR(31 downto 0) => S_AXI_HP1_AWADDR(31 downto 0), SAXIHP1AWBURST(1 downto 0) => S_AXI_HP1_AWBURST(1 downto 0), SAXIHP1AWCACHE(3 downto 0) => S_AXI_HP1_AWCACHE(3 downto 0), SAXIHP1AWID(5 downto 0) => S_AXI_HP1_AWID(5 downto 0), SAXIHP1AWLEN(3 downto 0) => S_AXI_HP1_AWLEN(3 downto 0), SAXIHP1AWLOCK(1 downto 0) => S_AXI_HP1_AWLOCK(1 downto 0), SAXIHP1AWPROT(2 downto 0) => S_AXI_HP1_AWPROT(2 downto 0), SAXIHP1AWQOS(3 downto 0) => S_AXI_HP1_AWQOS(3 downto 0), SAXIHP1AWREADY => S_AXI_HP1_AWREADY, SAXIHP1AWSIZE(1 downto 0) => S_AXI_HP1_AWSIZE(1 downto 0), SAXIHP1AWVALID => S_AXI_HP1_AWVALID, SAXIHP1BID(5 downto 0) => S_AXI_HP1_BID(5 downto 0), SAXIHP1BREADY => S_AXI_HP1_BREADY, SAXIHP1BRESP(1 downto 0) => S_AXI_HP1_BRESP(1 downto 0), SAXIHP1BVALID => S_AXI_HP1_BVALID, SAXIHP1RACOUNT(2 downto 0) => S_AXI_HP1_RACOUNT(2 downto 0), SAXIHP1RCOUNT(7 downto 0) => S_AXI_HP1_RCOUNT(7 downto 0), SAXIHP1RDATA(63 downto 0) => S_AXI_HP1_RDATA(63 downto 0), SAXIHP1RDISSUECAP1EN => S_AXI_HP1_RDISSUECAP1_EN, SAXIHP1RID(5 downto 0) => S_AXI_HP1_RID(5 downto 0), SAXIHP1RLAST => S_AXI_HP1_RLAST, SAXIHP1RREADY => S_AXI_HP1_RREADY, SAXIHP1RRESP(1 downto 0) => S_AXI_HP1_RRESP(1 downto 0), SAXIHP1RVALID => S_AXI_HP1_RVALID, SAXIHP1WACOUNT(5 downto 0) => S_AXI_HP1_WACOUNT(5 downto 0), SAXIHP1WCOUNT(7 downto 0) => S_AXI_HP1_WCOUNT(7 downto 0), SAXIHP1WDATA(63 downto 0) => S_AXI_HP1_WDATA(63 downto 0), SAXIHP1WID(5 downto 0) => S_AXI_HP1_WID(5 downto 0), SAXIHP1WLAST => S_AXI_HP1_WLAST, SAXIHP1WREADY => S_AXI_HP1_WREADY, SAXIHP1WRISSUECAP1EN => S_AXI_HP1_WRISSUECAP1_EN, SAXIHP1WSTRB(7 downto 0) => S_AXI_HP1_WSTRB(7 downto 0), SAXIHP1WVALID => S_AXI_HP1_WVALID, SAXIHP2ACLK => S_AXI_HP2_ACLK, SAXIHP2ARADDR(31 downto 0) => S_AXI_HP2_ARADDR(31 downto 0), SAXIHP2ARBURST(1 downto 0) => S_AXI_HP2_ARBURST(1 downto 0), SAXIHP2ARCACHE(3 downto 0) => S_AXI_HP2_ARCACHE(3 downto 0), SAXIHP2ARESETN => S_AXI_HP2_ARESETN, SAXIHP2ARID(5 downto 0) => S_AXI_HP2_ARID(5 downto 0), SAXIHP2ARLEN(3 downto 0) => S_AXI_HP2_ARLEN(3 downto 0), SAXIHP2ARLOCK(1 downto 0) => S_AXI_HP2_ARLOCK(1 downto 0), SAXIHP2ARPROT(2 downto 0) => S_AXI_HP2_ARPROT(2 downto 0), SAXIHP2ARQOS(3 downto 0) => S_AXI_HP2_ARQOS(3 downto 0), SAXIHP2ARREADY => S_AXI_HP2_ARREADY, SAXIHP2ARSIZE(1 downto 0) => S_AXI_HP2_ARSIZE(1 downto 0), SAXIHP2ARVALID => S_AXI_HP2_ARVALID, SAXIHP2AWADDR(31 downto 0) => S_AXI_HP2_AWADDR(31 downto 0), SAXIHP2AWBURST(1 downto 0) => S_AXI_HP2_AWBURST(1 downto 0), SAXIHP2AWCACHE(3 downto 0) => S_AXI_HP2_AWCACHE(3 downto 0), SAXIHP2AWID(5 downto 0) => S_AXI_HP2_AWID(5 downto 0), SAXIHP2AWLEN(3 downto 0) => S_AXI_HP2_AWLEN(3 downto 0), SAXIHP2AWLOCK(1 downto 0) => S_AXI_HP2_AWLOCK(1 downto 0), SAXIHP2AWPROT(2 downto 0) => S_AXI_HP2_AWPROT(2 downto 0), SAXIHP2AWQOS(3 downto 0) => S_AXI_HP2_AWQOS(3 downto 0), SAXIHP2AWREADY => S_AXI_HP2_AWREADY, SAXIHP2AWSIZE(1 downto 0) => S_AXI_HP2_AWSIZE(1 downto 0), SAXIHP2AWVALID => S_AXI_HP2_AWVALID, SAXIHP2BID(5 downto 0) => S_AXI_HP2_BID(5 downto 0), SAXIHP2BREADY => S_AXI_HP2_BREADY, SAXIHP2BRESP(1 downto 0) => S_AXI_HP2_BRESP(1 downto 0), SAXIHP2BVALID => S_AXI_HP2_BVALID, SAXIHP2RACOUNT(2 downto 0) => S_AXI_HP2_RACOUNT(2 downto 0), SAXIHP2RCOUNT(7 downto 0) => S_AXI_HP2_RCOUNT(7 downto 0), SAXIHP2RDATA(63 downto 0) => S_AXI_HP2_RDATA(63 downto 0), SAXIHP2RDISSUECAP1EN => S_AXI_HP2_RDISSUECAP1_EN, SAXIHP2RID(5 downto 0) => S_AXI_HP2_RID(5 downto 0), SAXIHP2RLAST => S_AXI_HP2_RLAST, SAXIHP2RREADY => S_AXI_HP2_RREADY, SAXIHP2RRESP(1 downto 0) => S_AXI_HP2_RRESP(1 downto 0), SAXIHP2RVALID => S_AXI_HP2_RVALID, SAXIHP2WACOUNT(5 downto 0) => S_AXI_HP2_WACOUNT(5 downto 0), SAXIHP2WCOUNT(7 downto 0) => S_AXI_HP2_WCOUNT(7 downto 0), SAXIHP2WDATA(63 downto 0) => S_AXI_HP2_WDATA(63 downto 0), SAXIHP2WID(5 downto 0) => S_AXI_HP2_WID(5 downto 0), SAXIHP2WLAST => S_AXI_HP2_WLAST, SAXIHP2WREADY => S_AXI_HP2_WREADY, SAXIHP2WRISSUECAP1EN => S_AXI_HP2_WRISSUECAP1_EN, SAXIHP2WSTRB(7 downto 0) => S_AXI_HP2_WSTRB(7 downto 0), SAXIHP2WVALID => S_AXI_HP2_WVALID, SAXIHP3ACLK => S_AXI_HP3_ACLK, SAXIHP3ARADDR(31 downto 0) => S_AXI_HP3_ARADDR(31 downto 0), SAXIHP3ARBURST(1 downto 0) => S_AXI_HP3_ARBURST(1 downto 0), SAXIHP3ARCACHE(3 downto 0) => S_AXI_HP3_ARCACHE(3 downto 0), SAXIHP3ARESETN => S_AXI_HP3_ARESETN, SAXIHP3ARID(5 downto 0) => S_AXI_HP3_ARID(5 downto 0), SAXIHP3ARLEN(3 downto 0) => S_AXI_HP3_ARLEN(3 downto 0), SAXIHP3ARLOCK(1 downto 0) => S_AXI_HP3_ARLOCK(1 downto 0), SAXIHP3ARPROT(2 downto 0) => S_AXI_HP3_ARPROT(2 downto 0), SAXIHP3ARQOS(3 downto 0) => S_AXI_HP3_ARQOS(3 downto 0), SAXIHP3ARREADY => S_AXI_HP3_ARREADY, SAXIHP3ARSIZE(1 downto 0) => S_AXI_HP3_ARSIZE(1 downto 0), SAXIHP3ARVALID => S_AXI_HP3_ARVALID, SAXIHP3AWADDR(31 downto 0) => S_AXI_HP3_AWADDR(31 downto 0), SAXIHP3AWBURST(1 downto 0) => S_AXI_HP3_AWBURST(1 downto 0), SAXIHP3AWCACHE(3 downto 0) => S_AXI_HP3_AWCACHE(3 downto 0), SAXIHP3AWID(5 downto 0) => S_AXI_HP3_AWID(5 downto 0), SAXIHP3AWLEN(3 downto 0) => S_AXI_HP3_AWLEN(3 downto 0), SAXIHP3AWLOCK(1 downto 0) => S_AXI_HP3_AWLOCK(1 downto 0), SAXIHP3AWPROT(2 downto 0) => S_AXI_HP3_AWPROT(2 downto 0), SAXIHP3AWQOS(3 downto 0) => S_AXI_HP3_AWQOS(3 downto 0), SAXIHP3AWREADY => S_AXI_HP3_AWREADY, SAXIHP3AWSIZE(1 downto 0) => S_AXI_HP3_AWSIZE(1 downto 0), SAXIHP3AWVALID => S_AXI_HP3_AWVALID, SAXIHP3BID(5 downto 0) => S_AXI_HP3_BID(5 downto 0), SAXIHP3BREADY => S_AXI_HP3_BREADY, SAXIHP3BRESP(1 downto 0) => S_AXI_HP3_BRESP(1 downto 0), SAXIHP3BVALID => S_AXI_HP3_BVALID, SAXIHP3RACOUNT(2 downto 0) => S_AXI_HP3_RACOUNT(2 downto 0), SAXIHP3RCOUNT(7 downto 0) => S_AXI_HP3_RCOUNT(7 downto 0), SAXIHP3RDATA(63 downto 0) => S_AXI_HP3_RDATA(63 downto 0), SAXIHP3RDISSUECAP1EN => S_AXI_HP3_RDISSUECAP1_EN, SAXIHP3RID(5 downto 0) => S_AXI_HP3_RID(5 downto 0), SAXIHP3RLAST => S_AXI_HP3_RLAST, SAXIHP3RREADY => S_AXI_HP3_RREADY, SAXIHP3RRESP(1 downto 0) => S_AXI_HP3_RRESP(1 downto 0), SAXIHP3RVALID => S_AXI_HP3_RVALID, SAXIHP3WACOUNT(5 downto 0) => S_AXI_HP3_WACOUNT(5 downto 0), SAXIHP3WCOUNT(7 downto 0) => S_AXI_HP3_WCOUNT(7 downto 0), SAXIHP3WDATA(63 downto 0) => S_AXI_HP3_WDATA(63 downto 0), SAXIHP3WID(5 downto 0) => S_AXI_HP3_WID(5 downto 0), SAXIHP3WLAST => S_AXI_HP3_WLAST, SAXIHP3WREADY => S_AXI_HP3_WREADY, SAXIHP3WRISSUECAP1EN => S_AXI_HP3_WRISSUECAP1_EN, SAXIHP3WSTRB(7 downto 0) => S_AXI_HP3_WSTRB(7 downto 0), SAXIHP3WVALID => S_AXI_HP3_WVALID ); PS_CLK_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_PS_CLK, PAD => PS_CLK ); PS_PORB_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_PS_PORB, PAD => PS_PORB ); PS_SRSTB_BIBUF: unisim.vcomponents.BIBUF port map ( IO => buffered_PS_SRSTB, PAD => PS_SRSTB ); SDIO0_CMD_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO0_CMD_T_n, O => SDIO0_CMD_T ); \SDIO0_DATA_T[0]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO0_DATA_T_n(0), O => SDIO0_DATA_T(0) ); \SDIO0_DATA_T[1]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO0_DATA_T_n(1), O => SDIO0_DATA_T(1) ); \SDIO0_DATA_T[2]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO0_DATA_T_n(2), O => SDIO0_DATA_T(2) ); \SDIO0_DATA_T[3]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO0_DATA_T_n(3), O => SDIO0_DATA_T(3) ); SDIO1_CMD_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO1_CMD_T_n, O => SDIO1_CMD_T ); \SDIO1_DATA_T[0]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO1_DATA_T_n(0), O => SDIO1_DATA_T(0) ); \SDIO1_DATA_T[1]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO1_DATA_T_n(1), O => SDIO1_DATA_T(1) ); \SDIO1_DATA_T[2]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO1_DATA_T_n(2), O => SDIO1_DATA_T(2) ); \SDIO1_DATA_T[3]_INST_0\: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SDIO1_DATA_T_n(3), O => SDIO1_DATA_T(3) ); SPI0_MISO_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI0_MISO_T_n, O => SPI0_MISO_T ); SPI0_MOSI_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI0_MOSI_T_n, O => SPI0_MOSI_T ); SPI0_SCLK_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI0_SCLK_T_n, O => SPI0_SCLK_T ); SPI0_SS_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI0_SS_T_n, O => SPI0_SS_T ); SPI1_MISO_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI1_MISO_T_n, O => SPI1_MISO_T ); SPI1_MOSI_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI1_MOSI_T_n, O => SPI1_MOSI_T ); SPI1_SCLK_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI1_SCLK_T_n, O => SPI1_SCLK_T ); SPI1_SS_T_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => SPI1_SS_T_n, O => SPI1_SS_T ); VCC: unisim.vcomponents.VCC port map ( P => \<const1>\ ); \buffer_fclk_clk_0.FCLK_CLK_0_BUFG\: unisim.vcomponents.BUFG port map ( I => FCLK_CLK_unbuffered(0), O => FCLK_CLK0 ); \genblk13[0].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(0), PAD => MIO(0) ); \genblk13[10].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(10), PAD => MIO(10) ); \genblk13[11].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(11), PAD => MIO(11) ); \genblk13[12].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(12), PAD => MIO(12) ); \genblk13[13].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(13), PAD => MIO(13) ); \genblk13[14].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(14), PAD => MIO(14) ); \genblk13[15].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(15), PAD => MIO(15) ); \genblk13[16].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(16), PAD => MIO(16) ); \genblk13[17].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(17), PAD => MIO(17) ); \genblk13[18].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(18), PAD => MIO(18) ); \genblk13[19].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(19), PAD => MIO(19) ); \genblk13[1].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(1), PAD => MIO(1) ); \genblk13[20].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(20), PAD => MIO(20) ); \genblk13[21].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(21), PAD => MIO(21) ); \genblk13[22].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(22), PAD => MIO(22) ); \genblk13[23].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(23), PAD => MIO(23) ); \genblk13[24].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(24), PAD => MIO(24) ); \genblk13[25].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(25), PAD => MIO(25) ); \genblk13[26].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(26), PAD => MIO(26) ); \genblk13[27].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(27), PAD => MIO(27) ); \genblk13[28].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(28), PAD => MIO(28) ); \genblk13[29].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(29), PAD => MIO(29) ); \genblk13[2].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(2), PAD => MIO(2) ); \genblk13[30].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(30), PAD => MIO(30) ); \genblk13[31].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(31), PAD => MIO(31) ); \genblk13[32].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(32), PAD => MIO(32) ); \genblk13[33].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(33), PAD => MIO(33) ); \genblk13[34].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(34), PAD => MIO(34) ); \genblk13[35].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(35), PAD => MIO(35) ); \genblk13[36].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(36), PAD => MIO(36) ); \genblk13[37].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(37), PAD => MIO(37) ); \genblk13[38].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(38), PAD => MIO(38) ); \genblk13[39].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(39), PAD => MIO(39) ); \genblk13[3].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(3), PAD => MIO(3) ); \genblk13[40].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(40), PAD => MIO(40) ); \genblk13[41].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(41), PAD => MIO(41) ); \genblk13[42].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(42), PAD => MIO(42) ); \genblk13[43].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(43), PAD => MIO(43) ); \genblk13[44].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(44), PAD => MIO(44) ); \genblk13[45].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(45), PAD => MIO(45) ); \genblk13[46].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(46), PAD => MIO(46) ); \genblk13[47].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(47), PAD => MIO(47) ); \genblk13[48].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(48), PAD => MIO(48) ); \genblk13[49].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(49), PAD => MIO(49) ); \genblk13[4].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(4), PAD => MIO(4) ); \genblk13[50].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(50), PAD => MIO(50) ); \genblk13[51].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(51), PAD => MIO(51) ); \genblk13[52].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(52), PAD => MIO(52) ); \genblk13[53].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(53), PAD => MIO(53) ); \genblk13[5].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(5), PAD => MIO(5) ); \genblk13[6].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(6), PAD => MIO(6) ); \genblk13[7].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(7), PAD => MIO(7) ); \genblk13[8].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(8), PAD => MIO(8) ); \genblk13[9].MIO_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_MIO(9), PAD => MIO(9) ); \genblk14[0].DDR_BankAddr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_BankAddr(0), PAD => DDR_BankAddr(0) ); \genblk14[1].DDR_BankAddr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_BankAddr(1), PAD => DDR_BankAddr(1) ); \genblk14[2].DDR_BankAddr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_BankAddr(2), PAD => DDR_BankAddr(2) ); \genblk15[0].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(0), PAD => DDR_Addr(0) ); \genblk15[10].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(10), PAD => DDR_Addr(10) ); \genblk15[11].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(11), PAD => DDR_Addr(11) ); \genblk15[12].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(12), PAD => DDR_Addr(12) ); \genblk15[13].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(13), PAD => DDR_Addr(13) ); \genblk15[14].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(14), PAD => DDR_Addr(14) ); \genblk15[1].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(1), PAD => DDR_Addr(1) ); \genblk15[2].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(2), PAD => DDR_Addr(2) ); \genblk15[3].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(3), PAD => DDR_Addr(3) ); \genblk15[4].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(4), PAD => DDR_Addr(4) ); \genblk15[5].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(5), PAD => DDR_Addr(5) ); \genblk15[6].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(6), PAD => DDR_Addr(6) ); \genblk15[7].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(7), PAD => DDR_Addr(7) ); \genblk15[8].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(8), PAD => DDR_Addr(8) ); \genblk15[9].DDR_Addr_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_Addr(9), PAD => DDR_Addr(9) ); \genblk16[0].DDR_DM_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DM(0), PAD => DDR_DM(0) ); \genblk16[1].DDR_DM_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DM(1), PAD => DDR_DM(1) ); \genblk16[2].DDR_DM_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DM(2), PAD => DDR_DM(2) ); \genblk16[3].DDR_DM_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DM(3), PAD => DDR_DM(3) ); \genblk17[0].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(0), PAD => DDR_DQ(0) ); \genblk17[10].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(10), PAD => DDR_DQ(10) ); \genblk17[11].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(11), PAD => DDR_DQ(11) ); \genblk17[12].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(12), PAD => DDR_DQ(12) ); \genblk17[13].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(13), PAD => DDR_DQ(13) ); \genblk17[14].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(14), PAD => DDR_DQ(14) ); \genblk17[15].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(15), PAD => DDR_DQ(15) ); \genblk17[16].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(16), PAD => DDR_DQ(16) ); \genblk17[17].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(17), PAD => DDR_DQ(17) ); \genblk17[18].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(18), PAD => DDR_DQ(18) ); \genblk17[19].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(19), PAD => DDR_DQ(19) ); \genblk17[1].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(1), PAD => DDR_DQ(1) ); \genblk17[20].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(20), PAD => DDR_DQ(20) ); \genblk17[21].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(21), PAD => DDR_DQ(21) ); \genblk17[22].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(22), PAD => DDR_DQ(22) ); \genblk17[23].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(23), PAD => DDR_DQ(23) ); \genblk17[24].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(24), PAD => DDR_DQ(24) ); \genblk17[25].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(25), PAD => DDR_DQ(25) ); \genblk17[26].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(26), PAD => DDR_DQ(26) ); \genblk17[27].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(27), PAD => DDR_DQ(27) ); \genblk17[28].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(28), PAD => DDR_DQ(28) ); \genblk17[29].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(29), PAD => DDR_DQ(29) ); \genblk17[2].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(2), PAD => DDR_DQ(2) ); \genblk17[30].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(30), PAD => DDR_DQ(30) ); \genblk17[31].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(31), PAD => DDR_DQ(31) ); \genblk17[3].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(3), PAD => DDR_DQ(3) ); \genblk17[4].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(4), PAD => DDR_DQ(4) ); \genblk17[5].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(5), PAD => DDR_DQ(5) ); \genblk17[6].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(6), PAD => DDR_DQ(6) ); \genblk17[7].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(7), PAD => DDR_DQ(7) ); \genblk17[8].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(8), PAD => DDR_DQ(8) ); \genblk17[9].DDR_DQ_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQ(9), PAD => DDR_DQ(9) ); \genblk18[0].DDR_DQS_n_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS_n(0), PAD => DDR_DQS_n(0) ); \genblk18[1].DDR_DQS_n_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS_n(1), PAD => DDR_DQS_n(1) ); \genblk18[2].DDR_DQS_n_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS_n(2), PAD => DDR_DQS_n(2) ); \genblk18[3].DDR_DQS_n_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS_n(3), PAD => DDR_DQS_n(3) ); \genblk19[0].DDR_DQS_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS(0), PAD => DDR_DQS(0) ); \genblk19[1].DDR_DQS_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS(1), PAD => DDR_DQS(1) ); \genblk19[2].DDR_DQS_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS(2), PAD => DDR_DQS(2) ); \genblk19[3].DDR_DQS_BIBUF\: unisim.vcomponents.BIBUF port map ( IO => buffered_DDR_DQS(3), PAD => DDR_DQS(3) ); i_0: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[0]\ ); i_1: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[0]\(1) ); i_10: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[7]\(1) ); i_11: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[7]\(0) ); i_12: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[6]\(1) ); i_13: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[6]\(0) ); i_14: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[5]\(1) ); i_15: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[5]\(0) ); i_16: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[4]\(1) ); i_17: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[4]\(0) ); i_18: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[3]\(1) ); i_19: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[3]\(0) ); i_2: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[0]\(0) ); i_20: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[2]\(1) ); i_21: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[2]\(0) ); i_22: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[1]\(1) ); i_23: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_DATA_PIPE[1]\(0) ); i_3: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[7]\ ); i_4: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[6]\ ); i_5: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[5]\ ); i_6: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[4]\ ); i_7: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[3]\ ); i_8: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[2]\ ); i_9: unisim.vcomponents.LUT1 generic map( INIT => X"2" ) port map ( I0 => '0', O => \TRACE_CTL_PIPE[1]\ ); end STRUCTURE; library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity zqynq_lab_1_design_processing_system7_0_1 is port ( TTC0_WAVE0_OUT : out STD_LOGIC; TTC0_WAVE1_OUT : out STD_LOGIC; TTC0_WAVE2_OUT : out STD_LOGIC; USB0_PORT_INDCTL : out STD_LOGIC_VECTOR ( 1 downto 0 ); USB0_VBUS_PWRSELECT : out STD_LOGIC; USB0_VBUS_PWRFAULT : in STD_LOGIC; M_AXI_GP0_ARVALID : out STD_LOGIC; M_AXI_GP0_AWVALID : out STD_LOGIC; M_AXI_GP0_BREADY : out STD_LOGIC; M_AXI_GP0_RREADY : out STD_LOGIC; M_AXI_GP0_WLAST : out STD_LOGIC; M_AXI_GP0_WVALID : out STD_LOGIC; M_AXI_GP0_ARID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_AWID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_WID : out STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_ARBURST : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_ARLOCK : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_ARSIZE : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_AWBURST : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_AWLOCK : out STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_AWSIZE : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_ARPROT : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_AWPROT : out STD_LOGIC_VECTOR ( 2 downto 0 ); M_AXI_GP0_ARADDR : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP0_AWADDR : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP0_WDATA : out STD_LOGIC_VECTOR ( 31 downto 0 ); M_AXI_GP0_ARCACHE : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_ARLEN : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_ARQOS : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_AWCACHE : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_AWLEN : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_AWQOS : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_WSTRB : out STD_LOGIC_VECTOR ( 3 downto 0 ); M_AXI_GP0_ACLK : in STD_LOGIC; M_AXI_GP0_ARREADY : in STD_LOGIC; M_AXI_GP0_AWREADY : in STD_LOGIC; M_AXI_GP0_BVALID : in STD_LOGIC; M_AXI_GP0_RLAST : in STD_LOGIC; M_AXI_GP0_RVALID : in STD_LOGIC; M_AXI_GP0_WREADY : in STD_LOGIC; M_AXI_GP0_BID : in STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_RID : in STD_LOGIC_VECTOR ( 11 downto 0 ); M_AXI_GP0_BRESP : in STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_RRESP : in STD_LOGIC_VECTOR ( 1 downto 0 ); M_AXI_GP0_RDATA : in STD_LOGIC_VECTOR ( 31 downto 0 ); IRQ_F2P : in STD_LOGIC_VECTOR ( 1 downto 0 ); FCLK_CLK0 : out STD_LOGIC; FCLK_RESET0_N : out STD_LOGIC; MIO : inout STD_LOGIC_VECTOR ( 53 downto 0 ); DDR_CAS_n : inout STD_LOGIC; DDR_CKE : inout STD_LOGIC; DDR_Clk_n : inout STD_LOGIC; DDR_Clk : inout STD_LOGIC; DDR_CS_n : inout STD_LOGIC; DDR_DRSTB : inout STD_LOGIC; DDR_ODT : inout STD_LOGIC; DDR_RAS_n : inout STD_LOGIC; DDR_WEB : inout STD_LOGIC; DDR_BankAddr : inout STD_LOGIC_VECTOR ( 2 downto 0 ); DDR_Addr : inout STD_LOGIC_VECTOR ( 14 downto 0 ); DDR_VRN : inout STD_LOGIC; DDR_VRP : inout STD_LOGIC; DDR_DM : inout STD_LOGIC_VECTOR ( 3 downto 0 ); DDR_DQ : inout STD_LOGIC_VECTOR ( 31 downto 0 ); DDR_DQS_n : inout STD_LOGIC_VECTOR ( 3 downto 0 ); DDR_DQS : inout STD_LOGIC_VECTOR ( 3 downto 0 ); PS_SRSTB : inout STD_LOGIC; PS_CLK : inout STD_LOGIC; PS_PORB : inout STD_LOGIC ); attribute NotValidForBitStream : boolean; attribute NotValidForBitStream of zqynq_lab_1_design_processing_system7_0_1 : entity is true; attribute CHECK_LICENSE_TYPE : string; attribute CHECK_LICENSE_TYPE of zqynq_lab_1_design_processing_system7_0_1 : entity is "zqynq_lab_1_design_processing_system7_0_0,processing_system7_v5_5_processing_system7,{}"; attribute DowngradeIPIdentifiedWarnings : string; attribute DowngradeIPIdentifiedWarnings of zqynq_lab_1_design_processing_system7_0_1 : entity is "yes"; attribute X_CORE_INFO : string; attribute X_CORE_INFO of zqynq_lab_1_design_processing_system7_0_1 : entity is "processing_system7_v5_5_processing_system7,Vivado 2017.2"; end zqynq_lab_1_design_processing_system7_0_1; architecture STRUCTURE of zqynq_lab_1_design_processing_system7_0_1 is signal NLW_inst_CAN0_PHY_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_CAN1_PHY_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA0_DAVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA0_DRREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA0_RSTN_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA1_DAVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA1_DRREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA1_RSTN_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA2_DAVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA2_DRREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA2_RSTN_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA3_DAVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA3_DRREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA3_RSTN_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_GMII_TX_EN_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_GMII_TX_ER_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_MDIO_MDC_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_MDIO_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_MDIO_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_DELAY_REQ_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_DELAY_REQ_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_PDELAY_REQ_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_PDELAY_REQ_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_PDELAY_RESP_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_PDELAY_RESP_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_SYNC_FRAME_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_PTP_SYNC_FRAME_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_SOF_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET0_SOF_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_GMII_TX_EN_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_GMII_TX_ER_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_MDIO_MDC_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_MDIO_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_MDIO_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_DELAY_REQ_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_DELAY_REQ_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_PDELAY_REQ_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_PDELAY_REQ_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_PDELAY_RESP_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_PDELAY_RESP_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_SYNC_FRAME_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_PTP_SYNC_FRAME_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_SOF_RX_UNCONNECTED : STD_LOGIC; signal NLW_inst_ENET1_SOF_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_EVENT_EVENTO_UNCONNECTED : STD_LOGIC; signal NLW_inst_FCLK_CLK1_UNCONNECTED : STD_LOGIC; signal NLW_inst_FCLK_CLK2_UNCONNECTED : STD_LOGIC; signal NLW_inst_FCLK_CLK3_UNCONNECTED : STD_LOGIC; signal NLW_inst_FCLK_RESET1_N_UNCONNECTED : STD_LOGIC; signal NLW_inst_FCLK_RESET2_N_UNCONNECTED : STD_LOGIC; signal NLW_inst_FCLK_RESET3_N_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_F2P_TRIGACK_0_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_F2P_TRIGACK_1_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_F2P_TRIGACK_2_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_F2P_TRIGACK_3_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_P2F_TRIG_0_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_P2F_TRIG_1_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_P2F_TRIG_2_UNCONNECTED : STD_LOGIC; signal NLW_inst_FTMT_P2F_TRIG_3_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C0_SCL_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C0_SCL_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C0_SDA_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C0_SDA_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C1_SCL_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C1_SCL_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C1_SDA_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_I2C1_SDA_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_CAN0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_CAN1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_CTI_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC2_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC3_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC4_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC5_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC6_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC7_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_DMAC_ABORT_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_ENET0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_ENET1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_ENET_WAKE0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_ENET_WAKE1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_GPIO_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_I2C0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_I2C1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_QSPI_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_SDIO0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_SDIO1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_SMC_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_SPI0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_SPI1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_UART0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_UART1_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_USB0_UNCONNECTED : STD_LOGIC; signal NLW_inst_IRQ_P2F_USB1_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP0_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_ARVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_AWVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_BREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_RREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_WLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_M_AXI_GP1_WVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_PJTAG_TDO_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO0_BUSPOW_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO0_CLK_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO0_CMD_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO0_CMD_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO0_LED_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO1_BUSPOW_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO1_CLK_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO1_CMD_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO1_CMD_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SDIO1_LED_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_MISO_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_MISO_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_MOSI_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_MOSI_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_SCLK_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_SCLK_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_SS1_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_SS2_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_SS_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI0_SS_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_MISO_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_MISO_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_MOSI_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_MOSI_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_SCLK_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_SCLK_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_SS1_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_SS2_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_SS_O_UNCONNECTED : STD_LOGIC; signal NLW_inst_SPI1_SS_T_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_ACP_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP0_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_GP1_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP0_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP1_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP2_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_ARESETN_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_ARREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_AWREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_BVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_RLAST_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_RVALID_UNCONNECTED : STD_LOGIC; signal NLW_inst_S_AXI_HP3_WREADY_UNCONNECTED : STD_LOGIC; signal NLW_inst_TRACE_CLK_OUT_UNCONNECTED : STD_LOGIC; signal NLW_inst_TRACE_CTL_UNCONNECTED : STD_LOGIC; signal NLW_inst_TTC1_WAVE0_OUT_UNCONNECTED : STD_LOGIC; signal NLW_inst_TTC1_WAVE1_OUT_UNCONNECTED : STD_LOGIC; signal NLW_inst_TTC1_WAVE2_OUT_UNCONNECTED : STD_LOGIC; signal NLW_inst_UART0_DTRN_UNCONNECTED : STD_LOGIC; signal NLW_inst_UART0_RTSN_UNCONNECTED : STD_LOGIC; signal NLW_inst_UART0_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_UART1_DTRN_UNCONNECTED : STD_LOGIC; signal NLW_inst_UART1_RTSN_UNCONNECTED : STD_LOGIC; signal NLW_inst_UART1_TX_UNCONNECTED : STD_LOGIC; signal NLW_inst_USB1_VBUS_PWRSELECT_UNCONNECTED : STD_LOGIC; signal NLW_inst_WDT_RST_OUT_UNCONNECTED : STD_LOGIC; signal NLW_inst_DMA0_DATYPE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_DMA1_DATYPE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_DMA2_DATYPE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_DMA3_DATYPE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_ENET0_GMII_TXD_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_ENET1_GMII_TXD_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_EVENT_STANDBYWFE_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_EVENT_STANDBYWFI_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_FTMT_P2F_DEBUG_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_inst_GPIO_O_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_GPIO_T_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_M_AXI_GP1_ARADDR_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_inst_M_AXI_GP1_ARBURST_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_M_AXI_GP1_ARCACHE_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_M_AXI_GP1_ARID_UNCONNECTED : STD_LOGIC_VECTOR ( 11 downto 0 ); signal NLW_inst_M_AXI_GP1_ARLEN_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_M_AXI_GP1_ARLOCK_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_M_AXI_GP1_ARPROT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_M_AXI_GP1_ARQOS_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_M_AXI_GP1_ARSIZE_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_M_AXI_GP1_AWADDR_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_inst_M_AXI_GP1_AWBURST_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_M_AXI_GP1_AWCACHE_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_M_AXI_GP1_AWID_UNCONNECTED : STD_LOGIC_VECTOR ( 11 downto 0 ); signal NLW_inst_M_AXI_GP1_AWLEN_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_M_AXI_GP1_AWLOCK_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_M_AXI_GP1_AWPROT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_M_AXI_GP1_AWQOS_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_M_AXI_GP1_AWSIZE_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_M_AXI_GP1_WDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_inst_M_AXI_GP1_WID_UNCONNECTED : STD_LOGIC_VECTOR ( 11 downto 0 ); signal NLW_inst_M_AXI_GP1_WSTRB_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_SDIO0_BUSVOLT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_SDIO0_DATA_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_SDIO0_DATA_T_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_SDIO1_BUSVOLT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_SDIO1_DATA_O_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_SDIO1_DATA_T_UNCONNECTED : STD_LOGIC_VECTOR ( 3 downto 0 ); signal NLW_inst_S_AXI_ACP_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_S_AXI_ACP_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_ACP_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_S_AXI_ACP_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_S_AXI_ACP_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_GP0_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_GP0_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_GP0_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_inst_S_AXI_GP0_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_GP0_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_GP1_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_GP1_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_GP1_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 31 downto 0 ); signal NLW_inst_S_AXI_GP1_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_GP1_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP0_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP0_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP0_RACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_S_AXI_HP0_RCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP0_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_S_AXI_HP0_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP0_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP0_WACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP0_WCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP1_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP1_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP1_RACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_S_AXI_HP1_RCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP1_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_S_AXI_HP1_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP1_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP1_WACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP1_WCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP2_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP2_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP2_RACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_S_AXI_HP2_RCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP2_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_S_AXI_HP2_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP2_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP2_WACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP2_WCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP3_BID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP3_BRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP3_RACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 2 downto 0 ); signal NLW_inst_S_AXI_HP3_RCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_S_AXI_HP3_RDATA_UNCONNECTED : STD_LOGIC_VECTOR ( 63 downto 0 ); signal NLW_inst_S_AXI_HP3_RID_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP3_RRESP_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_S_AXI_HP3_WACOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 5 downto 0 ); signal NLW_inst_S_AXI_HP3_WCOUNT_UNCONNECTED : STD_LOGIC_VECTOR ( 7 downto 0 ); signal NLW_inst_TRACE_DATA_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); signal NLW_inst_USB1_PORT_INDCTL_UNCONNECTED : STD_LOGIC_VECTOR ( 1 downto 0 ); attribute C_DM_WIDTH : integer; attribute C_DM_WIDTH of inst : label is 4; attribute C_DQS_WIDTH : integer; attribute C_DQS_WIDTH of inst : label is 4; attribute C_DQ_WIDTH : integer; attribute C_DQ_WIDTH of inst : label is 32; attribute C_EMIO_GPIO_WIDTH : integer; attribute C_EMIO_GPIO_WIDTH of inst : label is 64; attribute C_EN_EMIO_ENET0 : integer; attribute C_EN_EMIO_ENET0 of inst : label is 0; attribute C_EN_EMIO_ENET1 : integer; attribute C_EN_EMIO_ENET1 of inst : label is 0; attribute C_EN_EMIO_PJTAG : integer; attribute C_EN_EMIO_PJTAG of inst : label is 0; attribute C_EN_EMIO_TRACE : integer; attribute C_EN_EMIO_TRACE of inst : label is 0; attribute C_FCLK_CLK0_BUF : string; attribute C_FCLK_CLK0_BUF of inst : label is "TRUE"; attribute C_FCLK_CLK1_BUF : string; attribute C_FCLK_CLK1_BUF of inst : label is "FALSE"; attribute C_FCLK_CLK2_BUF : string; attribute C_FCLK_CLK2_BUF of inst : label is "FALSE"; attribute C_FCLK_CLK3_BUF : string; attribute C_FCLK_CLK3_BUF of inst : label is "FALSE"; attribute C_GP0_EN_MODIFIABLE_TXN : integer; attribute C_GP0_EN_MODIFIABLE_TXN of inst : label is 1; attribute C_GP1_EN_MODIFIABLE_TXN : integer; attribute C_GP1_EN_MODIFIABLE_TXN of inst : label is 1; attribute C_INCLUDE_ACP_TRANS_CHECK : integer; attribute C_INCLUDE_ACP_TRANS_CHECK of inst : label is 0; attribute C_INCLUDE_TRACE_BUFFER : integer; attribute C_INCLUDE_TRACE_BUFFER of inst : label is 0; attribute C_IRQ_F2P_MODE : string; attribute C_IRQ_F2P_MODE of inst : label is "DIRECT"; attribute C_MIO_PRIMITIVE : integer; attribute C_MIO_PRIMITIVE of inst : label is 54; attribute C_M_AXI_GP0_ENABLE_STATIC_REMAP : integer; attribute C_M_AXI_GP0_ENABLE_STATIC_REMAP of inst : label is 0; attribute C_M_AXI_GP0_ID_WIDTH : integer; attribute C_M_AXI_GP0_ID_WIDTH of inst : label is 12; attribute C_M_AXI_GP0_THREAD_ID_WIDTH : integer; attribute C_M_AXI_GP0_THREAD_ID_WIDTH of inst : label is 12; attribute C_M_AXI_GP1_ENABLE_STATIC_REMAP : integer; attribute C_M_AXI_GP1_ENABLE_STATIC_REMAP of inst : label is 0; attribute C_M_AXI_GP1_ID_WIDTH : integer; attribute C_M_AXI_GP1_ID_WIDTH of inst : label is 12; attribute C_M_AXI_GP1_THREAD_ID_WIDTH : integer; attribute C_M_AXI_GP1_THREAD_ID_WIDTH of inst : label is 12; attribute C_NUM_F2P_INTR_INPUTS : integer; attribute C_NUM_F2P_INTR_INPUTS of inst : label is 2; attribute C_PACKAGE_NAME : string; attribute C_PACKAGE_NAME of inst : label is "clg484"; attribute C_PS7_SI_REV : string; attribute C_PS7_SI_REV of inst : label is "PRODUCTION"; attribute C_S_AXI_ACP_ARUSER_VAL : integer; attribute C_S_AXI_ACP_ARUSER_VAL of inst : label is 31; attribute C_S_AXI_ACP_AWUSER_VAL : integer; attribute C_S_AXI_ACP_AWUSER_VAL of inst : label is 31; attribute C_S_AXI_ACP_ID_WIDTH : integer; attribute C_S_AXI_ACP_ID_WIDTH of inst : label is 3; attribute C_S_AXI_GP0_ID_WIDTH : integer; attribute C_S_AXI_GP0_ID_WIDTH of inst : label is 6; attribute C_S_AXI_GP1_ID_WIDTH : integer; attribute C_S_AXI_GP1_ID_WIDTH of inst : label is 6; attribute C_S_AXI_HP0_DATA_WIDTH : integer; attribute C_S_AXI_HP0_DATA_WIDTH of inst : label is 64; attribute C_S_AXI_HP0_ID_WIDTH : integer; attribute C_S_AXI_HP0_ID_WIDTH of inst : label is 6; attribute C_S_AXI_HP1_DATA_WIDTH : integer; attribute C_S_AXI_HP1_DATA_WIDTH of inst : label is 64; attribute C_S_AXI_HP1_ID_WIDTH : integer; attribute C_S_AXI_HP1_ID_WIDTH of inst : label is 6; attribute C_S_AXI_HP2_DATA_WIDTH : integer; attribute C_S_AXI_HP2_DATA_WIDTH of inst : label is 64; attribute C_S_AXI_HP2_ID_WIDTH : integer; attribute C_S_AXI_HP2_ID_WIDTH of inst : label is 6; attribute C_S_AXI_HP3_DATA_WIDTH : integer; attribute C_S_AXI_HP3_DATA_WIDTH of inst : label is 64; attribute C_S_AXI_HP3_ID_WIDTH : integer; attribute C_S_AXI_HP3_ID_WIDTH of inst : label is 6; attribute C_TRACE_BUFFER_CLOCK_DELAY : integer; attribute C_TRACE_BUFFER_CLOCK_DELAY of inst : label is 12; attribute C_TRACE_BUFFER_FIFO_SIZE : integer; attribute C_TRACE_BUFFER_FIFO_SIZE of inst : label is 128; attribute C_TRACE_INTERNAL_WIDTH : integer; attribute C_TRACE_INTERNAL_WIDTH of inst : label is 2; attribute C_TRACE_PIPELINE_WIDTH : integer; attribute C_TRACE_PIPELINE_WIDTH of inst : label is 8; attribute C_USE_AXI_NONSECURE : integer; attribute C_USE_AXI_NONSECURE of inst : label is 0; attribute C_USE_DEFAULT_ACP_USER_VAL : integer; attribute C_USE_DEFAULT_ACP_USER_VAL of inst : label is 0; attribute C_USE_M_AXI_GP0 : integer; attribute C_USE_M_AXI_GP0 of inst : label is 1; attribute C_USE_M_AXI_GP1 : integer; attribute C_USE_M_AXI_GP1 of inst : label is 0; attribute C_USE_S_AXI_ACP : integer; attribute C_USE_S_AXI_ACP of inst : label is 0; attribute C_USE_S_AXI_GP0 : integer; attribute C_USE_S_AXI_GP0 of inst : label is 0; attribute C_USE_S_AXI_GP1 : integer; attribute C_USE_S_AXI_GP1 of inst : label is 0; attribute C_USE_S_AXI_HP0 : integer; attribute C_USE_S_AXI_HP0 of inst : label is 0; attribute C_USE_S_AXI_HP1 : integer; attribute C_USE_S_AXI_HP1 of inst : label is 0; attribute C_USE_S_AXI_HP2 : integer; attribute C_USE_S_AXI_HP2 of inst : label is 0; attribute C_USE_S_AXI_HP3 : integer; attribute C_USE_S_AXI_HP3 of inst : label is 0; attribute HW_HANDOFF : string; attribute HW_HANDOFF of inst : label is "zqynq_lab_1_design_processing_system7_0_0.hwdef"; attribute POWER : string; attribute POWER of inst : label is "<PROCESSOR name={system} numA9Cores={2} clockFreq={666.666667} load={0.5} /><MEMORY name={code} memType={DDR3} dataWidth={32} clockFreq={533.333313} readRate={0.5} writeRate={0.5} /><IO interface={GPIO_Bank_1} ioStandard={LVCMOS18} bidis={2} ioBank={Vcco_p1} clockFreq={1} usageRate={0.5} /><IO interface={GPIO_Bank_0} ioStandard={LVCMOS33} bidis={10} ioBank={Vcco_p0} clockFreq={1} usageRate={0.5} /><IO interface={Timer} ioStandard={} bidis={0} ioBank={} clockFreq={111.111115} usageRate={0.5} /><IO interface={UART} ioStandard={LVCMOS18} bidis={2} ioBank={Vcco_p1} clockFreq={50.000000} usageRate={0.5} /><IO interface={SD} ioStandard={LVCMOS18} bidis={8} ioBank={Vcco_p1} clockFreq={50.000000} usageRate={0.5} /><IO interface={USB} ioStandard={LVCMOS18} bidis={12} ioBank={Vcco_p1} clockFreq={60} usageRate={0.5} /><IO interface={GigE} ioStandard={LVCMOS18} bidis={14} ioBank={Vcco_p1} clockFreq={125.000000} usageRate={0.5} /><IO interface={QSPI} ioStandard={LVCMOS33} bidis={6} ioBank={Vcco_p0} clockFreq={200.000000} usageRate={0.5} /><PLL domain={Processor} vco={1333.333} /><PLL domain={Memory} vco={1066.667} /><PLL domain={IO} vco={1000.000} /><AXI interface={M_AXI_GP0} dataWidth={32} clockFreq={100} usageRate={0.5} />/>"; attribute USE_TRACE_DATA_EDGE_DETECTOR : integer; attribute USE_TRACE_DATA_EDGE_DETECTOR of inst : label is 0; begin inst: entity work.zqynq_lab_1_design_processing_system7_0_1_processing_system7_v5_5_processing_system7 port map ( CAN0_PHY_RX => '0', CAN0_PHY_TX => NLW_inst_CAN0_PHY_TX_UNCONNECTED, CAN1_PHY_RX => '0', CAN1_PHY_TX => NLW_inst_CAN1_PHY_TX_UNCONNECTED, Core0_nFIQ => '0', Core0_nIRQ => '0', Core1_nFIQ => '0', Core1_nIRQ => '0', DDR_ARB(3 downto 0) => B"0000", DDR_Addr(14 downto 0) => DDR_Addr(14 downto 0), DDR_BankAddr(2 downto 0) => DDR_BankAddr(2 downto 0), DDR_CAS_n => DDR_CAS_n, DDR_CKE => DDR_CKE, DDR_CS_n => DDR_CS_n, DDR_Clk => DDR_Clk, DDR_Clk_n => DDR_Clk_n, DDR_DM(3 downto 0) => DDR_DM(3 downto 0), DDR_DQ(31 downto 0) => DDR_DQ(31 downto 0), DDR_DQS(3 downto 0) => DDR_DQS(3 downto 0), DDR_DQS_n(3 downto 0) => DDR_DQS_n(3 downto 0), DDR_DRSTB => DDR_DRSTB, DDR_ODT => DDR_ODT, DDR_RAS_n => DDR_RAS_n, DDR_VRN => DDR_VRN, DDR_VRP => DDR_VRP, DDR_WEB => DDR_WEB, DMA0_ACLK => '0', DMA0_DAREADY => '0', DMA0_DATYPE(1 downto 0) => NLW_inst_DMA0_DATYPE_UNCONNECTED(1 downto 0), DMA0_DAVALID => NLW_inst_DMA0_DAVALID_UNCONNECTED, DMA0_DRLAST => '0', DMA0_DRREADY => NLW_inst_DMA0_DRREADY_UNCONNECTED, DMA0_DRTYPE(1 downto 0) => B"00", DMA0_DRVALID => '0', DMA0_RSTN => NLW_inst_DMA0_RSTN_UNCONNECTED, DMA1_ACLK => '0', DMA1_DAREADY => '0', DMA1_DATYPE(1 downto 0) => NLW_inst_DMA1_DATYPE_UNCONNECTED(1 downto 0), DMA1_DAVALID => NLW_inst_DMA1_DAVALID_UNCONNECTED, DMA1_DRLAST => '0', DMA1_DRREADY => NLW_inst_DMA1_DRREADY_UNCONNECTED, DMA1_DRTYPE(1 downto 0) => B"00", DMA1_DRVALID => '0', DMA1_RSTN => NLW_inst_DMA1_RSTN_UNCONNECTED, DMA2_ACLK => '0', DMA2_DAREADY => '0', DMA2_DATYPE(1 downto 0) => NLW_inst_DMA2_DATYPE_UNCONNECTED(1 downto 0), DMA2_DAVALID => NLW_inst_DMA2_DAVALID_UNCONNECTED, DMA2_DRLAST => '0', DMA2_DRREADY => NLW_inst_DMA2_DRREADY_UNCONNECTED, DMA2_DRTYPE(1 downto 0) => B"00", DMA2_DRVALID => '0', DMA2_RSTN => NLW_inst_DMA2_RSTN_UNCONNECTED, DMA3_ACLK => '0', DMA3_DAREADY => '0', DMA3_DATYPE(1 downto 0) => NLW_inst_DMA3_DATYPE_UNCONNECTED(1 downto 0), DMA3_DAVALID => NLW_inst_DMA3_DAVALID_UNCONNECTED, DMA3_DRLAST => '0', DMA3_DRREADY => NLW_inst_DMA3_DRREADY_UNCONNECTED, DMA3_DRTYPE(1 downto 0) => B"00", DMA3_DRVALID => '0', DMA3_RSTN => NLW_inst_DMA3_RSTN_UNCONNECTED, ENET0_EXT_INTIN => '0', ENET0_GMII_COL => '0', ENET0_GMII_CRS => '0', ENET0_GMII_RXD(7 downto 0) => B"00000000", ENET0_GMII_RX_CLK => '0', ENET0_GMII_RX_DV => '0', ENET0_GMII_RX_ER => '0', ENET0_GMII_TXD(7 downto 0) => NLW_inst_ENET0_GMII_TXD_UNCONNECTED(7 downto 0), ENET0_GMII_TX_CLK => '0', ENET0_GMII_TX_EN => NLW_inst_ENET0_GMII_TX_EN_UNCONNECTED, ENET0_GMII_TX_ER => NLW_inst_ENET0_GMII_TX_ER_UNCONNECTED, ENET0_MDIO_I => '0', ENET0_MDIO_MDC => NLW_inst_ENET0_MDIO_MDC_UNCONNECTED, ENET0_MDIO_O => NLW_inst_ENET0_MDIO_O_UNCONNECTED, ENET0_MDIO_T => NLW_inst_ENET0_MDIO_T_UNCONNECTED, ENET0_PTP_DELAY_REQ_RX => NLW_inst_ENET0_PTP_DELAY_REQ_RX_UNCONNECTED, ENET0_PTP_DELAY_REQ_TX => NLW_inst_ENET0_PTP_DELAY_REQ_TX_UNCONNECTED, ENET0_PTP_PDELAY_REQ_RX => NLW_inst_ENET0_PTP_PDELAY_REQ_RX_UNCONNECTED, ENET0_PTP_PDELAY_REQ_TX => NLW_inst_ENET0_PTP_PDELAY_REQ_TX_UNCONNECTED, ENET0_PTP_PDELAY_RESP_RX => NLW_inst_ENET0_PTP_PDELAY_RESP_RX_UNCONNECTED, ENET0_PTP_PDELAY_RESP_TX => NLW_inst_ENET0_PTP_PDELAY_RESP_TX_UNCONNECTED, ENET0_PTP_SYNC_FRAME_RX => NLW_inst_ENET0_PTP_SYNC_FRAME_RX_UNCONNECTED, ENET0_PTP_SYNC_FRAME_TX => NLW_inst_ENET0_PTP_SYNC_FRAME_TX_UNCONNECTED, ENET0_SOF_RX => NLW_inst_ENET0_SOF_RX_UNCONNECTED, ENET0_SOF_TX => NLW_inst_ENET0_SOF_TX_UNCONNECTED, ENET1_EXT_INTIN => '0', ENET1_GMII_COL => '0', ENET1_GMII_CRS => '0', ENET1_GMII_RXD(7 downto 0) => B"00000000", ENET1_GMII_RX_CLK => '0', ENET1_GMII_RX_DV => '0', ENET1_GMII_RX_ER => '0', ENET1_GMII_TXD(7 downto 0) => NLW_inst_ENET1_GMII_TXD_UNCONNECTED(7 downto 0), ENET1_GMII_TX_CLK => '0', ENET1_GMII_TX_EN => NLW_inst_ENET1_GMII_TX_EN_UNCONNECTED, ENET1_GMII_TX_ER => NLW_inst_ENET1_GMII_TX_ER_UNCONNECTED, ENET1_MDIO_I => '0', ENET1_MDIO_MDC => NLW_inst_ENET1_MDIO_MDC_UNCONNECTED, ENET1_MDIO_O => NLW_inst_ENET1_MDIO_O_UNCONNECTED, ENET1_MDIO_T => NLW_inst_ENET1_MDIO_T_UNCONNECTED, ENET1_PTP_DELAY_REQ_RX => NLW_inst_ENET1_PTP_DELAY_REQ_RX_UNCONNECTED, ENET1_PTP_DELAY_REQ_TX => NLW_inst_ENET1_PTP_DELAY_REQ_TX_UNCONNECTED, ENET1_PTP_PDELAY_REQ_RX => NLW_inst_ENET1_PTP_PDELAY_REQ_RX_UNCONNECTED, ENET1_PTP_PDELAY_REQ_TX => NLW_inst_ENET1_PTP_PDELAY_REQ_TX_UNCONNECTED, ENET1_PTP_PDELAY_RESP_RX => NLW_inst_ENET1_PTP_PDELAY_RESP_RX_UNCONNECTED, ENET1_PTP_PDELAY_RESP_TX => NLW_inst_ENET1_PTP_PDELAY_RESP_TX_UNCONNECTED, ENET1_PTP_SYNC_FRAME_RX => NLW_inst_ENET1_PTP_SYNC_FRAME_RX_UNCONNECTED, ENET1_PTP_SYNC_FRAME_TX => NLW_inst_ENET1_PTP_SYNC_FRAME_TX_UNCONNECTED, ENET1_SOF_RX => NLW_inst_ENET1_SOF_RX_UNCONNECTED, ENET1_SOF_TX => NLW_inst_ENET1_SOF_TX_UNCONNECTED, EVENT_EVENTI => '0', EVENT_EVENTO => NLW_inst_EVENT_EVENTO_UNCONNECTED, EVENT_STANDBYWFE(1 downto 0) => NLW_inst_EVENT_STANDBYWFE_UNCONNECTED(1 downto 0), EVENT_STANDBYWFI(1 downto 0) => NLW_inst_EVENT_STANDBYWFI_UNCONNECTED(1 downto 0), FCLK_CLK0 => FCLK_CLK0, FCLK_CLK1 => NLW_inst_FCLK_CLK1_UNCONNECTED, FCLK_CLK2 => NLW_inst_FCLK_CLK2_UNCONNECTED, FCLK_CLK3 => NLW_inst_FCLK_CLK3_UNCONNECTED, FCLK_CLKTRIG0_N => '0', FCLK_CLKTRIG1_N => '0', FCLK_CLKTRIG2_N => '0', FCLK_CLKTRIG3_N => '0', FCLK_RESET0_N => FCLK_RESET0_N, FCLK_RESET1_N => NLW_inst_FCLK_RESET1_N_UNCONNECTED, FCLK_RESET2_N => NLW_inst_FCLK_RESET2_N_UNCONNECTED, FCLK_RESET3_N => NLW_inst_FCLK_RESET3_N_UNCONNECTED, FPGA_IDLE_N => '0', FTMD_TRACEIN_ATID(3 downto 0) => B"0000", FTMD_TRACEIN_CLK => '0', FTMD_TRACEIN_DATA(31 downto 0) => B"00000000000000000000000000000000", FTMD_TRACEIN_VALID => '0', FTMT_F2P_DEBUG(31 downto 0) => B"00000000000000000000000000000000", FTMT_F2P_TRIGACK_0 => NLW_inst_FTMT_F2P_TRIGACK_0_UNCONNECTED, FTMT_F2P_TRIGACK_1 => NLW_inst_FTMT_F2P_TRIGACK_1_UNCONNECTED, FTMT_F2P_TRIGACK_2 => NLW_inst_FTMT_F2P_TRIGACK_2_UNCONNECTED, FTMT_F2P_TRIGACK_3 => NLW_inst_FTMT_F2P_TRIGACK_3_UNCONNECTED, FTMT_F2P_TRIG_0 => '0', FTMT_F2P_TRIG_1 => '0', FTMT_F2P_TRIG_2 => '0', FTMT_F2P_TRIG_3 => '0', FTMT_P2F_DEBUG(31 downto 0) => NLW_inst_FTMT_P2F_DEBUG_UNCONNECTED(31 downto 0), FTMT_P2F_TRIGACK_0 => '0', FTMT_P2F_TRIGACK_1 => '0', FTMT_P2F_TRIGACK_2 => '0', FTMT_P2F_TRIGACK_3 => '0', FTMT_P2F_TRIG_0 => NLW_inst_FTMT_P2F_TRIG_0_UNCONNECTED, FTMT_P2F_TRIG_1 => NLW_inst_FTMT_P2F_TRIG_1_UNCONNECTED, FTMT_P2F_TRIG_2 => NLW_inst_FTMT_P2F_TRIG_2_UNCONNECTED, FTMT_P2F_TRIG_3 => NLW_inst_FTMT_P2F_TRIG_3_UNCONNECTED, GPIO_I(63 downto 0) => B"0000000000000000000000000000000000000000000000000000000000000000", GPIO_O(63 downto 0) => NLW_inst_GPIO_O_UNCONNECTED(63 downto 0), GPIO_T(63 downto 0) => NLW_inst_GPIO_T_UNCONNECTED(63 downto 0), I2C0_SCL_I => '0', I2C0_SCL_O => NLW_inst_I2C0_SCL_O_UNCONNECTED, I2C0_SCL_T => NLW_inst_I2C0_SCL_T_UNCONNECTED, I2C0_SDA_I => '0', I2C0_SDA_O => NLW_inst_I2C0_SDA_O_UNCONNECTED, I2C0_SDA_T => NLW_inst_I2C0_SDA_T_UNCONNECTED, I2C1_SCL_I => '0', I2C1_SCL_O => NLW_inst_I2C1_SCL_O_UNCONNECTED, I2C1_SCL_T => NLW_inst_I2C1_SCL_T_UNCONNECTED, I2C1_SDA_I => '0', I2C1_SDA_O => NLW_inst_I2C1_SDA_O_UNCONNECTED, I2C1_SDA_T => NLW_inst_I2C1_SDA_T_UNCONNECTED, IRQ_F2P(1 downto 0) => IRQ_F2P(1 downto 0), IRQ_P2F_CAN0 => NLW_inst_IRQ_P2F_CAN0_UNCONNECTED, IRQ_P2F_CAN1 => NLW_inst_IRQ_P2F_CAN1_UNCONNECTED, IRQ_P2F_CTI => NLW_inst_IRQ_P2F_CTI_UNCONNECTED, IRQ_P2F_DMAC0 => NLW_inst_IRQ_P2F_DMAC0_UNCONNECTED, IRQ_P2F_DMAC1 => NLW_inst_IRQ_P2F_DMAC1_UNCONNECTED, IRQ_P2F_DMAC2 => NLW_inst_IRQ_P2F_DMAC2_UNCONNECTED, IRQ_P2F_DMAC3 => NLW_inst_IRQ_P2F_DMAC3_UNCONNECTED, IRQ_P2F_DMAC4 => NLW_inst_IRQ_P2F_DMAC4_UNCONNECTED, IRQ_P2F_DMAC5 => NLW_inst_IRQ_P2F_DMAC5_UNCONNECTED, IRQ_P2F_DMAC6 => NLW_inst_IRQ_P2F_DMAC6_UNCONNECTED, IRQ_P2F_DMAC7 => NLW_inst_IRQ_P2F_DMAC7_UNCONNECTED, IRQ_P2F_DMAC_ABORT => NLW_inst_IRQ_P2F_DMAC_ABORT_UNCONNECTED, IRQ_P2F_ENET0 => NLW_inst_IRQ_P2F_ENET0_UNCONNECTED, IRQ_P2F_ENET1 => NLW_inst_IRQ_P2F_ENET1_UNCONNECTED, IRQ_P2F_ENET_WAKE0 => NLW_inst_IRQ_P2F_ENET_WAKE0_UNCONNECTED, IRQ_P2F_ENET_WAKE1 => NLW_inst_IRQ_P2F_ENET_WAKE1_UNCONNECTED, IRQ_P2F_GPIO => NLW_inst_IRQ_P2F_GPIO_UNCONNECTED, IRQ_P2F_I2C0 => NLW_inst_IRQ_P2F_I2C0_UNCONNECTED, IRQ_P2F_I2C1 => NLW_inst_IRQ_P2F_I2C1_UNCONNECTED, IRQ_P2F_QSPI => NLW_inst_IRQ_P2F_QSPI_UNCONNECTED, IRQ_P2F_SDIO0 => NLW_inst_IRQ_P2F_SDIO0_UNCONNECTED, IRQ_P2F_SDIO1 => NLW_inst_IRQ_P2F_SDIO1_UNCONNECTED, IRQ_P2F_SMC => NLW_inst_IRQ_P2F_SMC_UNCONNECTED, IRQ_P2F_SPI0 => NLW_inst_IRQ_P2F_SPI0_UNCONNECTED, IRQ_P2F_SPI1 => NLW_inst_IRQ_P2F_SPI1_UNCONNECTED, IRQ_P2F_UART0 => NLW_inst_IRQ_P2F_UART0_UNCONNECTED, IRQ_P2F_UART1 => NLW_inst_IRQ_P2F_UART1_UNCONNECTED, IRQ_P2F_USB0 => NLW_inst_IRQ_P2F_USB0_UNCONNECTED, IRQ_P2F_USB1 => NLW_inst_IRQ_P2F_USB1_UNCONNECTED, MIO(53 downto 0) => MIO(53 downto 0), M_AXI_GP0_ACLK => M_AXI_GP0_ACLK, M_AXI_GP0_ARADDR(31 downto 0) => M_AXI_GP0_ARADDR(31 downto 0), M_AXI_GP0_ARBURST(1 downto 0) => M_AXI_GP0_ARBURST(1 downto 0), M_AXI_GP0_ARCACHE(3 downto 0) => M_AXI_GP0_ARCACHE(3 downto 0), M_AXI_GP0_ARESETN => NLW_inst_M_AXI_GP0_ARESETN_UNCONNECTED, M_AXI_GP0_ARID(11 downto 0) => M_AXI_GP0_ARID(11 downto 0), M_AXI_GP0_ARLEN(3 downto 0) => M_AXI_GP0_ARLEN(3 downto 0), M_AXI_GP0_ARLOCK(1 downto 0) => M_AXI_GP0_ARLOCK(1 downto 0), M_AXI_GP0_ARPROT(2 downto 0) => M_AXI_GP0_ARPROT(2 downto 0), M_AXI_GP0_ARQOS(3 downto 0) => M_AXI_GP0_ARQOS(3 downto 0), M_AXI_GP0_ARREADY => M_AXI_GP0_ARREADY, M_AXI_GP0_ARSIZE(2 downto 0) => M_AXI_GP0_ARSIZE(2 downto 0), M_AXI_GP0_ARVALID => M_AXI_GP0_ARVALID, M_AXI_GP0_AWADDR(31 downto 0) => M_AXI_GP0_AWADDR(31 downto 0), M_AXI_GP0_AWBURST(1 downto 0) => M_AXI_GP0_AWBURST(1 downto 0), M_AXI_GP0_AWCACHE(3 downto 0) => M_AXI_GP0_AWCACHE(3 downto 0), M_AXI_GP0_AWID(11 downto 0) => M_AXI_GP0_AWID(11 downto 0), M_AXI_GP0_AWLEN(3 downto 0) => M_AXI_GP0_AWLEN(3 downto 0), M_AXI_GP0_AWLOCK(1 downto 0) => M_AXI_GP0_AWLOCK(1 downto 0), M_AXI_GP0_AWPROT(2 downto 0) => M_AXI_GP0_AWPROT(2 downto 0), M_AXI_GP0_AWQOS(3 downto 0) => M_AXI_GP0_AWQOS(3 downto 0), M_AXI_GP0_AWREADY => M_AXI_GP0_AWREADY, M_AXI_GP0_AWSIZE(2 downto 0) => M_AXI_GP0_AWSIZE(2 downto 0), M_AXI_GP0_AWVALID => M_AXI_GP0_AWVALID, M_AXI_GP0_BID(11 downto 0) => M_AXI_GP0_BID(11 downto 0), M_AXI_GP0_BREADY => M_AXI_GP0_BREADY, M_AXI_GP0_BRESP(1 downto 0) => M_AXI_GP0_BRESP(1 downto 0), M_AXI_GP0_BVALID => M_AXI_GP0_BVALID, M_AXI_GP0_RDATA(31 downto 0) => M_AXI_GP0_RDATA(31 downto 0), M_AXI_GP0_RID(11 downto 0) => M_AXI_GP0_RID(11 downto 0), M_AXI_GP0_RLAST => M_AXI_GP0_RLAST, M_AXI_GP0_RREADY => M_AXI_GP0_RREADY, M_AXI_GP0_RRESP(1 downto 0) => M_AXI_GP0_RRESP(1 downto 0), M_AXI_GP0_RVALID => M_AXI_GP0_RVALID, M_AXI_GP0_WDATA(31 downto 0) => M_AXI_GP0_WDATA(31 downto 0), M_AXI_GP0_WID(11 downto 0) => M_AXI_GP0_WID(11 downto 0), M_AXI_GP0_WLAST => M_AXI_GP0_WLAST, M_AXI_GP0_WREADY => M_AXI_GP0_WREADY, M_AXI_GP0_WSTRB(3 downto 0) => M_AXI_GP0_WSTRB(3 downto 0), M_AXI_GP0_WVALID => M_AXI_GP0_WVALID, M_AXI_GP1_ACLK => '0', M_AXI_GP1_ARADDR(31 downto 0) => NLW_inst_M_AXI_GP1_ARADDR_UNCONNECTED(31 downto 0), M_AXI_GP1_ARBURST(1 downto 0) => NLW_inst_M_AXI_GP1_ARBURST_UNCONNECTED(1 downto 0), M_AXI_GP1_ARCACHE(3 downto 0) => NLW_inst_M_AXI_GP1_ARCACHE_UNCONNECTED(3 downto 0), M_AXI_GP1_ARESETN => NLW_inst_M_AXI_GP1_ARESETN_UNCONNECTED, M_AXI_GP1_ARID(11 downto 0) => NLW_inst_M_AXI_GP1_ARID_UNCONNECTED(11 downto 0), M_AXI_GP1_ARLEN(3 downto 0) => NLW_inst_M_AXI_GP1_ARLEN_UNCONNECTED(3 downto 0), M_AXI_GP1_ARLOCK(1 downto 0) => NLW_inst_M_AXI_GP1_ARLOCK_UNCONNECTED(1 downto 0), M_AXI_GP1_ARPROT(2 downto 0) => NLW_inst_M_AXI_GP1_ARPROT_UNCONNECTED(2 downto 0), M_AXI_GP1_ARQOS(3 downto 0) => NLW_inst_M_AXI_GP1_ARQOS_UNCONNECTED(3 downto 0), M_AXI_GP1_ARREADY => '0', M_AXI_GP1_ARSIZE(2 downto 0) => NLW_inst_M_AXI_GP1_ARSIZE_UNCONNECTED(2 downto 0), M_AXI_GP1_ARVALID => NLW_inst_M_AXI_GP1_ARVALID_UNCONNECTED, M_AXI_GP1_AWADDR(31 downto 0) => NLW_inst_M_AXI_GP1_AWADDR_UNCONNECTED(31 downto 0), M_AXI_GP1_AWBURST(1 downto 0) => NLW_inst_M_AXI_GP1_AWBURST_UNCONNECTED(1 downto 0), M_AXI_GP1_AWCACHE(3 downto 0) => NLW_inst_M_AXI_GP1_AWCACHE_UNCONNECTED(3 downto 0), M_AXI_GP1_AWID(11 downto 0) => NLW_inst_M_AXI_GP1_AWID_UNCONNECTED(11 downto 0), M_AXI_GP1_AWLEN(3 downto 0) => NLW_inst_M_AXI_GP1_AWLEN_UNCONNECTED(3 downto 0), M_AXI_GP1_AWLOCK(1 downto 0) => NLW_inst_M_AXI_GP1_AWLOCK_UNCONNECTED(1 downto 0), M_AXI_GP1_AWPROT(2 downto 0) => NLW_inst_M_AXI_GP1_AWPROT_UNCONNECTED(2 downto 0), M_AXI_GP1_AWQOS(3 downto 0) => NLW_inst_M_AXI_GP1_AWQOS_UNCONNECTED(3 downto 0), M_AXI_GP1_AWREADY => '0', M_AXI_GP1_AWSIZE(2 downto 0) => NLW_inst_M_AXI_GP1_AWSIZE_UNCONNECTED(2 downto 0), M_AXI_GP1_AWVALID => NLW_inst_M_AXI_GP1_AWVALID_UNCONNECTED, M_AXI_GP1_BID(11 downto 0) => B"000000000000", M_AXI_GP1_BREADY => NLW_inst_M_AXI_GP1_BREADY_UNCONNECTED, M_AXI_GP1_BRESP(1 downto 0) => B"00", M_AXI_GP1_BVALID => '0', M_AXI_GP1_RDATA(31 downto 0) => B"00000000000000000000000000000000", M_AXI_GP1_RID(11 downto 0) => B"000000000000", M_AXI_GP1_RLAST => '0', M_AXI_GP1_RREADY => NLW_inst_M_AXI_GP1_RREADY_UNCONNECTED, M_AXI_GP1_RRESP(1 downto 0) => B"00", M_AXI_GP1_RVALID => '0', M_AXI_GP1_WDATA(31 downto 0) => NLW_inst_M_AXI_GP1_WDATA_UNCONNECTED(31 downto 0), M_AXI_GP1_WID(11 downto 0) => NLW_inst_M_AXI_GP1_WID_UNCONNECTED(11 downto 0), M_AXI_GP1_WLAST => NLW_inst_M_AXI_GP1_WLAST_UNCONNECTED, M_AXI_GP1_WREADY => '0', M_AXI_GP1_WSTRB(3 downto 0) => NLW_inst_M_AXI_GP1_WSTRB_UNCONNECTED(3 downto 0), M_AXI_GP1_WVALID => NLW_inst_M_AXI_GP1_WVALID_UNCONNECTED, PJTAG_TCK => '0', PJTAG_TDI => '0', PJTAG_TDO => NLW_inst_PJTAG_TDO_UNCONNECTED, PJTAG_TMS => '0', PS_CLK => PS_CLK, PS_PORB => PS_PORB, PS_SRSTB => PS_SRSTB, SDIO0_BUSPOW => NLW_inst_SDIO0_BUSPOW_UNCONNECTED, SDIO0_BUSVOLT(2 downto 0) => NLW_inst_SDIO0_BUSVOLT_UNCONNECTED(2 downto 0), SDIO0_CDN => '0', SDIO0_CLK => NLW_inst_SDIO0_CLK_UNCONNECTED, SDIO0_CLK_FB => '0', SDIO0_CMD_I => '0', SDIO0_CMD_O => NLW_inst_SDIO0_CMD_O_UNCONNECTED, SDIO0_CMD_T => NLW_inst_SDIO0_CMD_T_UNCONNECTED, SDIO0_DATA_I(3 downto 0) => B"0000", SDIO0_DATA_O(3 downto 0) => NLW_inst_SDIO0_DATA_O_UNCONNECTED(3 downto 0), SDIO0_DATA_T(3 downto 0) => NLW_inst_SDIO0_DATA_T_UNCONNECTED(3 downto 0), SDIO0_LED => NLW_inst_SDIO0_LED_UNCONNECTED, SDIO0_WP => '0', SDIO1_BUSPOW => NLW_inst_SDIO1_BUSPOW_UNCONNECTED, SDIO1_BUSVOLT(2 downto 0) => NLW_inst_SDIO1_BUSVOLT_UNCONNECTED(2 downto 0), SDIO1_CDN => '0', SDIO1_CLK => NLW_inst_SDIO1_CLK_UNCONNECTED, SDIO1_CLK_FB => '0', SDIO1_CMD_I => '0', SDIO1_CMD_O => NLW_inst_SDIO1_CMD_O_UNCONNECTED, SDIO1_CMD_T => NLW_inst_SDIO1_CMD_T_UNCONNECTED, SDIO1_DATA_I(3 downto 0) => B"0000", SDIO1_DATA_O(3 downto 0) => NLW_inst_SDIO1_DATA_O_UNCONNECTED(3 downto 0), SDIO1_DATA_T(3 downto 0) => NLW_inst_SDIO1_DATA_T_UNCONNECTED(3 downto 0), SDIO1_LED => NLW_inst_SDIO1_LED_UNCONNECTED, SDIO1_WP => '0', SPI0_MISO_I => '0', SPI0_MISO_O => NLW_inst_SPI0_MISO_O_UNCONNECTED, SPI0_MISO_T => NLW_inst_SPI0_MISO_T_UNCONNECTED, SPI0_MOSI_I => '0', SPI0_MOSI_O => NLW_inst_SPI0_MOSI_O_UNCONNECTED, SPI0_MOSI_T => NLW_inst_SPI0_MOSI_T_UNCONNECTED, SPI0_SCLK_I => '0', SPI0_SCLK_O => NLW_inst_SPI0_SCLK_O_UNCONNECTED, SPI0_SCLK_T => NLW_inst_SPI0_SCLK_T_UNCONNECTED, SPI0_SS1_O => NLW_inst_SPI0_SS1_O_UNCONNECTED, SPI0_SS2_O => NLW_inst_SPI0_SS2_O_UNCONNECTED, SPI0_SS_I => '0', SPI0_SS_O => NLW_inst_SPI0_SS_O_UNCONNECTED, SPI0_SS_T => NLW_inst_SPI0_SS_T_UNCONNECTED, SPI1_MISO_I => '0', SPI1_MISO_O => NLW_inst_SPI1_MISO_O_UNCONNECTED, SPI1_MISO_T => NLW_inst_SPI1_MISO_T_UNCONNECTED, SPI1_MOSI_I => '0', SPI1_MOSI_O => NLW_inst_SPI1_MOSI_O_UNCONNECTED, SPI1_MOSI_T => NLW_inst_SPI1_MOSI_T_UNCONNECTED, SPI1_SCLK_I => '0', SPI1_SCLK_O => NLW_inst_SPI1_SCLK_O_UNCONNECTED, SPI1_SCLK_T => NLW_inst_SPI1_SCLK_T_UNCONNECTED, SPI1_SS1_O => NLW_inst_SPI1_SS1_O_UNCONNECTED, SPI1_SS2_O => NLW_inst_SPI1_SS2_O_UNCONNECTED, SPI1_SS_I => '0', SPI1_SS_O => NLW_inst_SPI1_SS_O_UNCONNECTED, SPI1_SS_T => NLW_inst_SPI1_SS_T_UNCONNECTED, SRAM_INTIN => '0', S_AXI_ACP_ACLK => '0', S_AXI_ACP_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_ACP_ARBURST(1 downto 0) => B"00", S_AXI_ACP_ARCACHE(3 downto 0) => B"0000", S_AXI_ACP_ARESETN => NLW_inst_S_AXI_ACP_ARESETN_UNCONNECTED, S_AXI_ACP_ARID(2 downto 0) => B"000", S_AXI_ACP_ARLEN(3 downto 0) => B"0000", S_AXI_ACP_ARLOCK(1 downto 0) => B"00", S_AXI_ACP_ARPROT(2 downto 0) => B"000", S_AXI_ACP_ARQOS(3 downto 0) => B"0000", S_AXI_ACP_ARREADY => NLW_inst_S_AXI_ACP_ARREADY_UNCONNECTED, S_AXI_ACP_ARSIZE(2 downto 0) => B"000", S_AXI_ACP_ARUSER(4 downto 0) => B"00000", S_AXI_ACP_ARVALID => '0', S_AXI_ACP_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_ACP_AWBURST(1 downto 0) => B"00", S_AXI_ACP_AWCACHE(3 downto 0) => B"0000", S_AXI_ACP_AWID(2 downto 0) => B"000", S_AXI_ACP_AWLEN(3 downto 0) => B"0000", S_AXI_ACP_AWLOCK(1 downto 0) => B"00", S_AXI_ACP_AWPROT(2 downto 0) => B"000", S_AXI_ACP_AWQOS(3 downto 0) => B"0000", S_AXI_ACP_AWREADY => NLW_inst_S_AXI_ACP_AWREADY_UNCONNECTED, S_AXI_ACP_AWSIZE(2 downto 0) => B"000", S_AXI_ACP_AWUSER(4 downto 0) => B"00000", S_AXI_ACP_AWVALID => '0', S_AXI_ACP_BID(2 downto 0) => NLW_inst_S_AXI_ACP_BID_UNCONNECTED(2 downto 0), S_AXI_ACP_BREADY => '0', S_AXI_ACP_BRESP(1 downto 0) => NLW_inst_S_AXI_ACP_BRESP_UNCONNECTED(1 downto 0), S_AXI_ACP_BVALID => NLW_inst_S_AXI_ACP_BVALID_UNCONNECTED, S_AXI_ACP_RDATA(63 downto 0) => NLW_inst_S_AXI_ACP_RDATA_UNCONNECTED(63 downto 0), S_AXI_ACP_RID(2 downto 0) => NLW_inst_S_AXI_ACP_RID_UNCONNECTED(2 downto 0), S_AXI_ACP_RLAST => NLW_inst_S_AXI_ACP_RLAST_UNCONNECTED, S_AXI_ACP_RREADY => '0', S_AXI_ACP_RRESP(1 downto 0) => NLW_inst_S_AXI_ACP_RRESP_UNCONNECTED(1 downto 0), S_AXI_ACP_RVALID => NLW_inst_S_AXI_ACP_RVALID_UNCONNECTED, S_AXI_ACP_WDATA(63 downto 0) => B"0000000000000000000000000000000000000000000000000000000000000000", S_AXI_ACP_WID(2 downto 0) => B"000", S_AXI_ACP_WLAST => '0', S_AXI_ACP_WREADY => NLW_inst_S_AXI_ACP_WREADY_UNCONNECTED, S_AXI_ACP_WSTRB(7 downto 0) => B"00000000", S_AXI_ACP_WVALID => '0', S_AXI_GP0_ACLK => '0', S_AXI_GP0_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_GP0_ARBURST(1 downto 0) => B"00", S_AXI_GP0_ARCACHE(3 downto 0) => B"0000", S_AXI_GP0_ARESETN => NLW_inst_S_AXI_GP0_ARESETN_UNCONNECTED, S_AXI_GP0_ARID(5 downto 0) => B"000000", S_AXI_GP0_ARLEN(3 downto 0) => B"0000", S_AXI_GP0_ARLOCK(1 downto 0) => B"00", S_AXI_GP0_ARPROT(2 downto 0) => B"000", S_AXI_GP0_ARQOS(3 downto 0) => B"0000", S_AXI_GP0_ARREADY => NLW_inst_S_AXI_GP0_ARREADY_UNCONNECTED, S_AXI_GP0_ARSIZE(2 downto 0) => B"000", S_AXI_GP0_ARVALID => '0', S_AXI_GP0_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_GP0_AWBURST(1 downto 0) => B"00", S_AXI_GP0_AWCACHE(3 downto 0) => B"0000", S_AXI_GP0_AWID(5 downto 0) => B"000000", S_AXI_GP0_AWLEN(3 downto 0) => B"0000", S_AXI_GP0_AWLOCK(1 downto 0) => B"00", S_AXI_GP0_AWPROT(2 downto 0) => B"000", S_AXI_GP0_AWQOS(3 downto 0) => B"0000", S_AXI_GP0_AWREADY => NLW_inst_S_AXI_GP0_AWREADY_UNCONNECTED, S_AXI_GP0_AWSIZE(2 downto 0) => B"000", S_AXI_GP0_AWVALID => '0', S_AXI_GP0_BID(5 downto 0) => NLW_inst_S_AXI_GP0_BID_UNCONNECTED(5 downto 0), S_AXI_GP0_BREADY => '0', S_AXI_GP0_BRESP(1 downto 0) => NLW_inst_S_AXI_GP0_BRESP_UNCONNECTED(1 downto 0), S_AXI_GP0_BVALID => NLW_inst_S_AXI_GP0_BVALID_UNCONNECTED, S_AXI_GP0_RDATA(31 downto 0) => NLW_inst_S_AXI_GP0_RDATA_UNCONNECTED(31 downto 0), S_AXI_GP0_RID(5 downto 0) => NLW_inst_S_AXI_GP0_RID_UNCONNECTED(5 downto 0), S_AXI_GP0_RLAST => NLW_inst_S_AXI_GP0_RLAST_UNCONNECTED, S_AXI_GP0_RREADY => '0', S_AXI_GP0_RRESP(1 downto 0) => NLW_inst_S_AXI_GP0_RRESP_UNCONNECTED(1 downto 0), S_AXI_GP0_RVALID => NLW_inst_S_AXI_GP0_RVALID_UNCONNECTED, S_AXI_GP0_WDATA(31 downto 0) => B"00000000000000000000000000000000", S_AXI_GP0_WID(5 downto 0) => B"000000", S_AXI_GP0_WLAST => '0', S_AXI_GP0_WREADY => NLW_inst_S_AXI_GP0_WREADY_UNCONNECTED, S_AXI_GP0_WSTRB(3 downto 0) => B"0000", S_AXI_GP0_WVALID => '0', S_AXI_GP1_ACLK => '0', S_AXI_GP1_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_GP1_ARBURST(1 downto 0) => B"00", S_AXI_GP1_ARCACHE(3 downto 0) => B"0000", S_AXI_GP1_ARESETN => NLW_inst_S_AXI_GP1_ARESETN_UNCONNECTED, S_AXI_GP1_ARID(5 downto 0) => B"000000", S_AXI_GP1_ARLEN(3 downto 0) => B"0000", S_AXI_GP1_ARLOCK(1 downto 0) => B"00", S_AXI_GP1_ARPROT(2 downto 0) => B"000", S_AXI_GP1_ARQOS(3 downto 0) => B"0000", S_AXI_GP1_ARREADY => NLW_inst_S_AXI_GP1_ARREADY_UNCONNECTED, S_AXI_GP1_ARSIZE(2 downto 0) => B"000", S_AXI_GP1_ARVALID => '0', S_AXI_GP1_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_GP1_AWBURST(1 downto 0) => B"00", S_AXI_GP1_AWCACHE(3 downto 0) => B"0000", S_AXI_GP1_AWID(5 downto 0) => B"000000", S_AXI_GP1_AWLEN(3 downto 0) => B"0000", S_AXI_GP1_AWLOCK(1 downto 0) => B"00", S_AXI_GP1_AWPROT(2 downto 0) => B"000", S_AXI_GP1_AWQOS(3 downto 0) => B"0000", S_AXI_GP1_AWREADY => NLW_inst_S_AXI_GP1_AWREADY_UNCONNECTED, S_AXI_GP1_AWSIZE(2 downto 0) => B"000", S_AXI_GP1_AWVALID => '0', S_AXI_GP1_BID(5 downto 0) => NLW_inst_S_AXI_GP1_BID_UNCONNECTED(5 downto 0), S_AXI_GP1_BREADY => '0', S_AXI_GP1_BRESP(1 downto 0) => NLW_inst_S_AXI_GP1_BRESP_UNCONNECTED(1 downto 0), S_AXI_GP1_BVALID => NLW_inst_S_AXI_GP1_BVALID_UNCONNECTED, S_AXI_GP1_RDATA(31 downto 0) => NLW_inst_S_AXI_GP1_RDATA_UNCONNECTED(31 downto 0), S_AXI_GP1_RID(5 downto 0) => NLW_inst_S_AXI_GP1_RID_UNCONNECTED(5 downto 0), S_AXI_GP1_RLAST => NLW_inst_S_AXI_GP1_RLAST_UNCONNECTED, S_AXI_GP1_RREADY => '0', S_AXI_GP1_RRESP(1 downto 0) => NLW_inst_S_AXI_GP1_RRESP_UNCONNECTED(1 downto 0), S_AXI_GP1_RVALID => NLW_inst_S_AXI_GP1_RVALID_UNCONNECTED, S_AXI_GP1_WDATA(31 downto 0) => B"00000000000000000000000000000000", S_AXI_GP1_WID(5 downto 0) => B"000000", S_AXI_GP1_WLAST => '0', S_AXI_GP1_WREADY => NLW_inst_S_AXI_GP1_WREADY_UNCONNECTED, S_AXI_GP1_WSTRB(3 downto 0) => B"0000", S_AXI_GP1_WVALID => '0', S_AXI_HP0_ACLK => '0', S_AXI_HP0_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP0_ARBURST(1 downto 0) => B"00", S_AXI_HP0_ARCACHE(3 downto 0) => B"0000", S_AXI_HP0_ARESETN => NLW_inst_S_AXI_HP0_ARESETN_UNCONNECTED, S_AXI_HP0_ARID(5 downto 0) => B"000000", S_AXI_HP0_ARLEN(3 downto 0) => B"0000", S_AXI_HP0_ARLOCK(1 downto 0) => B"00", S_AXI_HP0_ARPROT(2 downto 0) => B"000", S_AXI_HP0_ARQOS(3 downto 0) => B"0000", S_AXI_HP0_ARREADY => NLW_inst_S_AXI_HP0_ARREADY_UNCONNECTED, S_AXI_HP0_ARSIZE(2 downto 0) => B"000", S_AXI_HP0_ARVALID => '0', S_AXI_HP0_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP0_AWBURST(1 downto 0) => B"00", S_AXI_HP0_AWCACHE(3 downto 0) => B"0000", S_AXI_HP0_AWID(5 downto 0) => B"000000", S_AXI_HP0_AWLEN(3 downto 0) => B"0000", S_AXI_HP0_AWLOCK(1 downto 0) => B"00", S_AXI_HP0_AWPROT(2 downto 0) => B"000", S_AXI_HP0_AWQOS(3 downto 0) => B"0000", S_AXI_HP0_AWREADY => NLW_inst_S_AXI_HP0_AWREADY_UNCONNECTED, S_AXI_HP0_AWSIZE(2 downto 0) => B"000", S_AXI_HP0_AWVALID => '0', S_AXI_HP0_BID(5 downto 0) => NLW_inst_S_AXI_HP0_BID_UNCONNECTED(5 downto 0), S_AXI_HP0_BREADY => '0', S_AXI_HP0_BRESP(1 downto 0) => NLW_inst_S_AXI_HP0_BRESP_UNCONNECTED(1 downto 0), S_AXI_HP0_BVALID => NLW_inst_S_AXI_HP0_BVALID_UNCONNECTED, S_AXI_HP0_RACOUNT(2 downto 0) => NLW_inst_S_AXI_HP0_RACOUNT_UNCONNECTED(2 downto 0), S_AXI_HP0_RCOUNT(7 downto 0) => NLW_inst_S_AXI_HP0_RCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP0_RDATA(63 downto 0) => NLW_inst_S_AXI_HP0_RDATA_UNCONNECTED(63 downto 0), S_AXI_HP0_RDISSUECAP1_EN => '0', S_AXI_HP0_RID(5 downto 0) => NLW_inst_S_AXI_HP0_RID_UNCONNECTED(5 downto 0), S_AXI_HP0_RLAST => NLW_inst_S_AXI_HP0_RLAST_UNCONNECTED, S_AXI_HP0_RREADY => '0', S_AXI_HP0_RRESP(1 downto 0) => NLW_inst_S_AXI_HP0_RRESP_UNCONNECTED(1 downto 0), S_AXI_HP0_RVALID => NLW_inst_S_AXI_HP0_RVALID_UNCONNECTED, S_AXI_HP0_WACOUNT(5 downto 0) => NLW_inst_S_AXI_HP0_WACOUNT_UNCONNECTED(5 downto 0), S_AXI_HP0_WCOUNT(7 downto 0) => NLW_inst_S_AXI_HP0_WCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP0_WDATA(63 downto 0) => B"0000000000000000000000000000000000000000000000000000000000000000", S_AXI_HP0_WID(5 downto 0) => B"000000", S_AXI_HP0_WLAST => '0', S_AXI_HP0_WREADY => NLW_inst_S_AXI_HP0_WREADY_UNCONNECTED, S_AXI_HP0_WRISSUECAP1_EN => '0', S_AXI_HP0_WSTRB(7 downto 0) => B"00000000", S_AXI_HP0_WVALID => '0', S_AXI_HP1_ACLK => '0', S_AXI_HP1_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP1_ARBURST(1 downto 0) => B"00", S_AXI_HP1_ARCACHE(3 downto 0) => B"0000", S_AXI_HP1_ARESETN => NLW_inst_S_AXI_HP1_ARESETN_UNCONNECTED, S_AXI_HP1_ARID(5 downto 0) => B"000000", S_AXI_HP1_ARLEN(3 downto 0) => B"0000", S_AXI_HP1_ARLOCK(1 downto 0) => B"00", S_AXI_HP1_ARPROT(2 downto 0) => B"000", S_AXI_HP1_ARQOS(3 downto 0) => B"0000", S_AXI_HP1_ARREADY => NLW_inst_S_AXI_HP1_ARREADY_UNCONNECTED, S_AXI_HP1_ARSIZE(2 downto 0) => B"000", S_AXI_HP1_ARVALID => '0', S_AXI_HP1_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP1_AWBURST(1 downto 0) => B"00", S_AXI_HP1_AWCACHE(3 downto 0) => B"0000", S_AXI_HP1_AWID(5 downto 0) => B"000000", S_AXI_HP1_AWLEN(3 downto 0) => B"0000", S_AXI_HP1_AWLOCK(1 downto 0) => B"00", S_AXI_HP1_AWPROT(2 downto 0) => B"000", S_AXI_HP1_AWQOS(3 downto 0) => B"0000", S_AXI_HP1_AWREADY => NLW_inst_S_AXI_HP1_AWREADY_UNCONNECTED, S_AXI_HP1_AWSIZE(2 downto 0) => B"000", S_AXI_HP1_AWVALID => '0', S_AXI_HP1_BID(5 downto 0) => NLW_inst_S_AXI_HP1_BID_UNCONNECTED(5 downto 0), S_AXI_HP1_BREADY => '0', S_AXI_HP1_BRESP(1 downto 0) => NLW_inst_S_AXI_HP1_BRESP_UNCONNECTED(1 downto 0), S_AXI_HP1_BVALID => NLW_inst_S_AXI_HP1_BVALID_UNCONNECTED, S_AXI_HP1_RACOUNT(2 downto 0) => NLW_inst_S_AXI_HP1_RACOUNT_UNCONNECTED(2 downto 0), S_AXI_HP1_RCOUNT(7 downto 0) => NLW_inst_S_AXI_HP1_RCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP1_RDATA(63 downto 0) => NLW_inst_S_AXI_HP1_RDATA_UNCONNECTED(63 downto 0), S_AXI_HP1_RDISSUECAP1_EN => '0', S_AXI_HP1_RID(5 downto 0) => NLW_inst_S_AXI_HP1_RID_UNCONNECTED(5 downto 0), S_AXI_HP1_RLAST => NLW_inst_S_AXI_HP1_RLAST_UNCONNECTED, S_AXI_HP1_RREADY => '0', S_AXI_HP1_RRESP(1 downto 0) => NLW_inst_S_AXI_HP1_RRESP_UNCONNECTED(1 downto 0), S_AXI_HP1_RVALID => NLW_inst_S_AXI_HP1_RVALID_UNCONNECTED, S_AXI_HP1_WACOUNT(5 downto 0) => NLW_inst_S_AXI_HP1_WACOUNT_UNCONNECTED(5 downto 0), S_AXI_HP1_WCOUNT(7 downto 0) => NLW_inst_S_AXI_HP1_WCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP1_WDATA(63 downto 0) => B"0000000000000000000000000000000000000000000000000000000000000000", S_AXI_HP1_WID(5 downto 0) => B"000000", S_AXI_HP1_WLAST => '0', S_AXI_HP1_WREADY => NLW_inst_S_AXI_HP1_WREADY_UNCONNECTED, S_AXI_HP1_WRISSUECAP1_EN => '0', S_AXI_HP1_WSTRB(7 downto 0) => B"00000000", S_AXI_HP1_WVALID => '0', S_AXI_HP2_ACLK => '0', S_AXI_HP2_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP2_ARBURST(1 downto 0) => B"00", S_AXI_HP2_ARCACHE(3 downto 0) => B"0000", S_AXI_HP2_ARESETN => NLW_inst_S_AXI_HP2_ARESETN_UNCONNECTED, S_AXI_HP2_ARID(5 downto 0) => B"000000", S_AXI_HP2_ARLEN(3 downto 0) => B"0000", S_AXI_HP2_ARLOCK(1 downto 0) => B"00", S_AXI_HP2_ARPROT(2 downto 0) => B"000", S_AXI_HP2_ARQOS(3 downto 0) => B"0000", S_AXI_HP2_ARREADY => NLW_inst_S_AXI_HP2_ARREADY_UNCONNECTED, S_AXI_HP2_ARSIZE(2 downto 0) => B"000", S_AXI_HP2_ARVALID => '0', S_AXI_HP2_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP2_AWBURST(1 downto 0) => B"00", S_AXI_HP2_AWCACHE(3 downto 0) => B"0000", S_AXI_HP2_AWID(5 downto 0) => B"000000", S_AXI_HP2_AWLEN(3 downto 0) => B"0000", S_AXI_HP2_AWLOCK(1 downto 0) => B"00", S_AXI_HP2_AWPROT(2 downto 0) => B"000", S_AXI_HP2_AWQOS(3 downto 0) => B"0000", S_AXI_HP2_AWREADY => NLW_inst_S_AXI_HP2_AWREADY_UNCONNECTED, S_AXI_HP2_AWSIZE(2 downto 0) => B"000", S_AXI_HP2_AWVALID => '0', S_AXI_HP2_BID(5 downto 0) => NLW_inst_S_AXI_HP2_BID_UNCONNECTED(5 downto 0), S_AXI_HP2_BREADY => '0', S_AXI_HP2_BRESP(1 downto 0) => NLW_inst_S_AXI_HP2_BRESP_UNCONNECTED(1 downto 0), S_AXI_HP2_BVALID => NLW_inst_S_AXI_HP2_BVALID_UNCONNECTED, S_AXI_HP2_RACOUNT(2 downto 0) => NLW_inst_S_AXI_HP2_RACOUNT_UNCONNECTED(2 downto 0), S_AXI_HP2_RCOUNT(7 downto 0) => NLW_inst_S_AXI_HP2_RCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP2_RDATA(63 downto 0) => NLW_inst_S_AXI_HP2_RDATA_UNCONNECTED(63 downto 0), S_AXI_HP2_RDISSUECAP1_EN => '0', S_AXI_HP2_RID(5 downto 0) => NLW_inst_S_AXI_HP2_RID_UNCONNECTED(5 downto 0), S_AXI_HP2_RLAST => NLW_inst_S_AXI_HP2_RLAST_UNCONNECTED, S_AXI_HP2_RREADY => '0', S_AXI_HP2_RRESP(1 downto 0) => NLW_inst_S_AXI_HP2_RRESP_UNCONNECTED(1 downto 0), S_AXI_HP2_RVALID => NLW_inst_S_AXI_HP2_RVALID_UNCONNECTED, S_AXI_HP2_WACOUNT(5 downto 0) => NLW_inst_S_AXI_HP2_WACOUNT_UNCONNECTED(5 downto 0), S_AXI_HP2_WCOUNT(7 downto 0) => NLW_inst_S_AXI_HP2_WCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP2_WDATA(63 downto 0) => B"0000000000000000000000000000000000000000000000000000000000000000", S_AXI_HP2_WID(5 downto 0) => B"000000", S_AXI_HP2_WLAST => '0', S_AXI_HP2_WREADY => NLW_inst_S_AXI_HP2_WREADY_UNCONNECTED, S_AXI_HP2_WRISSUECAP1_EN => '0', S_AXI_HP2_WSTRB(7 downto 0) => B"00000000", S_AXI_HP2_WVALID => '0', S_AXI_HP3_ACLK => '0', S_AXI_HP3_ARADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP3_ARBURST(1 downto 0) => B"00", S_AXI_HP3_ARCACHE(3 downto 0) => B"0000", S_AXI_HP3_ARESETN => NLW_inst_S_AXI_HP3_ARESETN_UNCONNECTED, S_AXI_HP3_ARID(5 downto 0) => B"000000", S_AXI_HP3_ARLEN(3 downto 0) => B"0000", S_AXI_HP3_ARLOCK(1 downto 0) => B"00", S_AXI_HP3_ARPROT(2 downto 0) => B"000", S_AXI_HP3_ARQOS(3 downto 0) => B"0000", S_AXI_HP3_ARREADY => NLW_inst_S_AXI_HP3_ARREADY_UNCONNECTED, S_AXI_HP3_ARSIZE(2 downto 0) => B"000", S_AXI_HP3_ARVALID => '0', S_AXI_HP3_AWADDR(31 downto 0) => B"00000000000000000000000000000000", S_AXI_HP3_AWBURST(1 downto 0) => B"00", S_AXI_HP3_AWCACHE(3 downto 0) => B"0000", S_AXI_HP3_AWID(5 downto 0) => B"000000", S_AXI_HP3_AWLEN(3 downto 0) => B"0000", S_AXI_HP3_AWLOCK(1 downto 0) => B"00", S_AXI_HP3_AWPROT(2 downto 0) => B"000", S_AXI_HP3_AWQOS(3 downto 0) => B"0000", S_AXI_HP3_AWREADY => NLW_inst_S_AXI_HP3_AWREADY_UNCONNECTED, S_AXI_HP3_AWSIZE(2 downto 0) => B"000", S_AXI_HP3_AWVALID => '0', S_AXI_HP3_BID(5 downto 0) => NLW_inst_S_AXI_HP3_BID_UNCONNECTED(5 downto 0), S_AXI_HP3_BREADY => '0', S_AXI_HP3_BRESP(1 downto 0) => NLW_inst_S_AXI_HP3_BRESP_UNCONNECTED(1 downto 0), S_AXI_HP3_BVALID => NLW_inst_S_AXI_HP3_BVALID_UNCONNECTED, S_AXI_HP3_RACOUNT(2 downto 0) => NLW_inst_S_AXI_HP3_RACOUNT_UNCONNECTED(2 downto 0), S_AXI_HP3_RCOUNT(7 downto 0) => NLW_inst_S_AXI_HP3_RCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP3_RDATA(63 downto 0) => NLW_inst_S_AXI_HP3_RDATA_UNCONNECTED(63 downto 0), S_AXI_HP3_RDISSUECAP1_EN => '0', S_AXI_HP3_RID(5 downto 0) => NLW_inst_S_AXI_HP3_RID_UNCONNECTED(5 downto 0), S_AXI_HP3_RLAST => NLW_inst_S_AXI_HP3_RLAST_UNCONNECTED, S_AXI_HP3_RREADY => '0', S_AXI_HP3_RRESP(1 downto 0) => NLW_inst_S_AXI_HP3_RRESP_UNCONNECTED(1 downto 0), S_AXI_HP3_RVALID => NLW_inst_S_AXI_HP3_RVALID_UNCONNECTED, S_AXI_HP3_WACOUNT(5 downto 0) => NLW_inst_S_AXI_HP3_WACOUNT_UNCONNECTED(5 downto 0), S_AXI_HP3_WCOUNT(7 downto 0) => NLW_inst_S_AXI_HP3_WCOUNT_UNCONNECTED(7 downto 0), S_AXI_HP3_WDATA(63 downto 0) => B"0000000000000000000000000000000000000000000000000000000000000000", S_AXI_HP3_WID(5 downto 0) => B"000000", S_AXI_HP3_WLAST => '0', S_AXI_HP3_WREADY => NLW_inst_S_AXI_HP3_WREADY_UNCONNECTED, S_AXI_HP3_WRISSUECAP1_EN => '0', S_AXI_HP3_WSTRB(7 downto 0) => B"00000000", S_AXI_HP3_WVALID => '0', TRACE_CLK => '0', TRACE_CLK_OUT => NLW_inst_TRACE_CLK_OUT_UNCONNECTED, TRACE_CTL => NLW_inst_TRACE_CTL_UNCONNECTED, TRACE_DATA(1 downto 0) => NLW_inst_TRACE_DATA_UNCONNECTED(1 downto 0), TTC0_CLK0_IN => '0', TTC0_CLK1_IN => '0', TTC0_CLK2_IN => '0', TTC0_WAVE0_OUT => TTC0_WAVE0_OUT, TTC0_WAVE1_OUT => TTC0_WAVE1_OUT, TTC0_WAVE2_OUT => TTC0_WAVE2_OUT, TTC1_CLK0_IN => '0', TTC1_CLK1_IN => '0', TTC1_CLK2_IN => '0', TTC1_WAVE0_OUT => NLW_inst_TTC1_WAVE0_OUT_UNCONNECTED, TTC1_WAVE1_OUT => NLW_inst_TTC1_WAVE1_OUT_UNCONNECTED, TTC1_WAVE2_OUT => NLW_inst_TTC1_WAVE2_OUT_UNCONNECTED, UART0_CTSN => '0', UART0_DCDN => '0', UART0_DSRN => '0', UART0_DTRN => NLW_inst_UART0_DTRN_UNCONNECTED, UART0_RIN => '0', UART0_RTSN => NLW_inst_UART0_RTSN_UNCONNECTED, UART0_RX => '1', UART0_TX => NLW_inst_UART0_TX_UNCONNECTED, UART1_CTSN => '0', UART1_DCDN => '0', UART1_DSRN => '0', UART1_DTRN => NLW_inst_UART1_DTRN_UNCONNECTED, UART1_RIN => '0', UART1_RTSN => NLW_inst_UART1_RTSN_UNCONNECTED, UART1_RX => '1', UART1_TX => NLW_inst_UART1_TX_UNCONNECTED, USB0_PORT_INDCTL(1 downto 0) => USB0_PORT_INDCTL(1 downto 0), USB0_VBUS_PWRFAULT => USB0_VBUS_PWRFAULT, USB0_VBUS_PWRSELECT => USB0_VBUS_PWRSELECT, USB1_PORT_INDCTL(1 downto 0) => NLW_inst_USB1_PORT_INDCTL_UNCONNECTED(1 downto 0), USB1_VBUS_PWRFAULT => '0', USB1_VBUS_PWRSELECT => NLW_inst_USB1_VBUS_PWRSELECT_UNCONNECTED, WDT_CLK_IN => '0', WDT_RST_OUT => NLW_inst_WDT_RST_OUT_UNCONNECTED ); end STRUCTURE;
-- Library Declaration library IEEE; use IEEE.std_logic_1164.all; library WORK; use WORK.globals.all; ----------------------------------------------------------------------- -- This entity is used to rotate the inputs to the MixColumns component -- in order to use the same basic entity (which computes MixCol for the -- the first row) for any other row of the AES (the coefficients are in -- fact the same, but rotated. ----------------------------------------------------------------------- -- Component Declaration entity PreMcRot is generic( G_ROW : integer range 0 to 3 ); port ( in_0, in_1, in_2, in_3 : in std_logic_vector (7 downto 0); out_0, out_1, out_2, out_3 : out std_logic_vector (7 downto 0) ) ; end PreMcRot; -- Architecture of the Component architecture a_PreMcRot of PreMcRot is begin i0 : if ( G_ROW=0 ) generate out_0 <= in_0; out_1 <= in_1; out_2 <= in_2; out_3 <= in_3; end generate; -- 0 i1 : if ( G_ROW=1 ) generate out_0 <= in_0; out_1 <= in_2; out_2 <= in_3; out_3 <= in_1; end generate; -- 1 i2 : if ( G_ROW=2 ) generate out_0 <= in_0; out_1 <= in_3; out_2 <= in_1; out_3 <= in_2; end generate; -- 2 i3 : if ( G_ROW=3 ) generate out_0 <= in_0; out_1 <= in_1; out_2 <= in_2; out_3 <= in_3; end generate; -- 3 end a_PreMcRot;
-- Library Declaration library IEEE; use IEEE.std_logic_1164.all; library WORK; use WORK.globals.all; ----------------------------------------------------------------------- -- This entity is used to rotate the inputs to the MixColumns component -- in order to use the same basic entity (which computes MixCol for the -- the first row) for any other row of the AES (the coefficients are in -- fact the same, but rotated. ----------------------------------------------------------------------- -- Component Declaration entity PreMcRot is generic( G_ROW : integer range 0 to 3 ); port ( in_0, in_1, in_2, in_3 : in std_logic_vector (7 downto 0); out_0, out_1, out_2, out_3 : out std_logic_vector (7 downto 0) ) ; end PreMcRot; -- Architecture of the Component architecture a_PreMcRot of PreMcRot is begin i0 : if ( G_ROW=0 ) generate out_0 <= in_0; out_1 <= in_1; out_2 <= in_2; out_3 <= in_3; end generate; -- 0 i1 : if ( G_ROW=1 ) generate out_0 <= in_0; out_1 <= in_2; out_2 <= in_3; out_3 <= in_1; end generate; -- 1 i2 : if ( G_ROW=2 ) generate out_0 <= in_0; out_1 <= in_3; out_2 <= in_1; out_3 <= in_2; end generate; -- 2 i3 : if ( G_ROW=3 ) generate out_0 <= in_0; out_1 <= in_1; out_2 <= in_2; out_3 <= in_3; end generate; -- 3 end a_PreMcRot;
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008 - 2014, Aeroflex Gaisler -- Copyright (C) 2015, Cobham Gaisler -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ------------------------------------------------------------------------------- -- Entity: i2c2ahb -- File: i2c2ahb.vhd -- Author: Jan Andersson - Aeroflex Gaisler AB -- Contact: support@gaisler.com -- Description: Simple I2C-slave providing a bridge to AMBA AHB -- See i2c2ahbx.vhd and GRIP for documentation ------------------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; library grlib; use grlib.amba.all; use grlib.stdlib.conv_std_logic_vector; library gaisler; use gaisler.i2c.all; entity i2c2ahb is generic ( -- AHB Configuration hindex : integer := 0; -- ahbaddrh : integer := 0; ahbaddrl : integer := 0; ahbmaskh : integer := 0; ahbmaskl : integer := 0; -- I2C configuration i2cslvaddr : integer range 0 to 127 := 0; i2ccfgaddr : integer range 0 to 127 := 0; oepol : integer range 0 to 1 := 0; -- filter : integer range 2 to 512 := 2 ); port ( rstn : in std_ulogic; clk : in std_ulogic; -- AHB master interface ahbi : in ahb_mst_in_type; ahbo : out ahb_mst_out_type; -- I2C signals i2ci : in i2c_in_type; i2co : out i2c_out_type ); end entity i2c2ahb; architecture rtl of i2c2ahb is signal i2c2ahbi : i2c2ahb_in_type; begin bridge : i2c2ahbx generic map ( hindex => hindex, oepol => oepol, filter => filter) port map ( rstn => rstn, clk => clk, ahbi => ahbi, ahbo => ahbo, i2ci => i2ci, i2co => i2co, i2c2ahbi => i2c2ahbi, i2c2ahbo => open); i2c2ahbi.en <= '1'; i2c2ahbi.haddr <= conv_std_logic_vector(ahbaddrh, 16) & conv_std_logic_vector(ahbaddrl, 16); i2c2ahbi.hmask <= conv_std_logic_vector(ahbmaskh, 16) & conv_std_logic_vector(ahbmaskl, 16); i2c2ahbi.slvaddr <= conv_std_logic_vector(i2cslvaddr, 7); i2c2ahbi.cfgaddr <= conv_std_logic_vector(i2ccfgaddr, 7); end architecture rtl;
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use ieee.std_logic_misc.all; entity network_interface is generic( data_width : integer := 64; addr_width : integer := 1; vc_sel_width : integer := 1; num_vc : integer := 2; flit_buff_depth : integer := 8 ); port( --clk, reset clk : in std_logic; rst : in std_logic; --user sending interface send_data : in std_logic_vector(data_width-1 downto 0); dest_addr : in std_logic_vector(addr_width-1 downto 0); set_tail_flit : in std_logic; send_flit : in std_logic; ready_to_send : out std_logic; --user receiving interface recv_data : out std_logic_vector(data_width-1 downto 0); src_addr : out std_logic_vector(addr_width-1 downto 0); is_tail_flit : out std_logic; data_in_buffer : out std_logic_vector(num_vc-1 downto 0); dequeue : in std_logic_vector(num_vc-1 downto 0); select_vc_read : in std_logic_vector(vc_sel_width-1 downto 0); --interface to network send_putFlit_flit_in : out std_logic_vector(data_width+addr_width+vc_sel_width+1 downto 0); EN_send_putFlit : out std_logic; EN_send_getNonFullVCs : out std_logic; send_getNonFullVCs : in std_logic_vector(num_vc-1 downto 0); EN_recv_getFlit : out std_logic; recv_getFlit : in std_logic_vector(data_width+addr_width+vc_sel_width+1 downto 0); recv_putNonFullVCs_nonFullVCs : out std_logic_vector(num_vc-1 downto 0); EN_recv_putNonFullVCs : out std_logic; recv_info_getRecvPortID : in std_logic_vector(addr_width-1 downto 0) ); end entity network_interface; architecture structural of network_interface is --fifo buffer for reciving component fifo_buffer is generic( word_len : integer := 64; buff_len : integer := 8 ); port( write_data : in std_logic_vector(word_len-1 downto 0); read_data : out std_logic_vector(word_len-1 downto 0); buffer_full : out std_logic; buffer_empty : out std_logic; enqueue : in std_logic; dequeue : in std_logic; clk : in std_logic; rst : in std_logic ); end component fifo_buffer; type fifo_io is array(num_vc-1 downto 0) of std_logic_vector(vc_sel_width+data_width+addr_width+1 downto 0); signal write_vc, read_vc: fifo_io; signal buffer_full_vc, buffer_empty_vc, enqueue_vc, dequeue_vc: std_logic_vector(num_vc-1 downto 0); signal receive_vc: std_logic_vector(vc_sel_width-1 downto 0); -- priority encoder component priority_encoder is generic( encoded_word_size : integer := 3 ); Port( input : in std_logic_vector(2**encoded_word_size-1 downto 0); output : out std_logic_vector(encoded_word_size-1 downto 0) ); end component priority_encoder; signal selected_vc : std_logic_vector(vc_sel_width-1 downto 0); --constants to parse flits constant data_msb : integer := data_width-1; constant data_lsb : integer := 0; constant vc_msb : integer := vc_sel_width+data_width-1; constant vc_lsb : integer := data_width; constant addr_msb : integer := vc_sel_width+data_width+addr_width-1; constant addr_lsb : integer := vc_sel_width+data_width; constant is_tail_index : integer := vc_sel_width+data_width+addr_width; constant is_valid_index : integer := vc_sel_width+data_width+addr_width+1; constant flit_size : integer := vc_sel_width+data_width+addr_width+2; begin --------------------------------------------------------------------------- --RECEIVE SIDE ------------------------------------------------------------ --------------------------------------------------------------------------- -- create and map 1 buffer for each VC receive_buffer: for i in num_vc-1 downto 0 generate signal vc_select : integer; signal flit_valid : std_logic; begin ur_i: fifo_buffer generic map(data_width+addr_width+vc_sel_width+2, flit_buff_depth) port map(write_vc(i), read_vc(i), buffer_full_vc(i), buffer_empty_vc(i), enqueue_vc(i), dequeue_vc(i), clk, rst); vc_select <= to_integer(unsigned(recv_getFlit(vc_msb downto vc_lsb))); flit_valid <= recv_getFlit(is_valid_index); write_vc(i) <= recv_getFlit when i = vc_select else std_logic_vector(to_unsigned(0,flit_size)); enqueue_vc(i) <= flit_valid when i = vc_select else '0'; end generate; -- IO for receive side of controller EN_recv_getFlit <= '1'; -- always read to receive flits as long as buffers aren't full recv_putNonFullVCs_nonFullVCs <= not buffer_full_vc; data_in_buffer <= not buffer_empty_vc; recv_data <= read_vc(to_integer(unsigned(select_vc_read)))(data_msb downto data_lsb); dequeue_vc <= dequeue; is_tail_flit <= read_vc(to_integer(unsigned(select_vc_read)))(is_tail_index); src_addr <= read_vc(to_integer(unsigned(select_vc_read)))(addr_msb downto addr_lsb); EN_recv_putNonFullVCs <= '1'; -- readme is not clear about what this does, assuming it is not need for peek flow control --------------------------------------------------------------------------- --SEND SIDE --------------------------------------------------------------- --------------------------------------------------------------------------- -------- priority encoder to determine which vc to use ------us_0: priority_encoder generic map(vc_sel_width) ------ port map(send_getNonFullVCs, selected_vc); ------ ------ -------- IO for sending side of controller ------send_putFlit_flit_in <= send_flit & set_tail_flit & dest_addr & selected_vc & send_data; --------ready_to_send <= '0' when to_integer(unsigned(send_getNonFullVCs)) = 0 else '1'; ------ready_to_send <= or_reduce(send_getNonFullVCs); ------EN_send_putFlit <= send_flit; ------EN_send_getNonFullVCs <= '1'; --always read to recieve credits ------ ------ -- test version which only sends on VC0 -- priority encoder to determine which vc to use selected_vc <= (others => '0'); -- IO for sending side of controller send_putFlit_flit_in <= send_flit & set_tail_flit & dest_addr & selected_vc & send_data; ready_to_send <= send_getNonFullVCs(0); EN_send_putFlit <= send_flit; EN_send_getNonFullVCs <= '1'; --always read to recieve credits end architecture structural;
-- File: ls_buffer.vhd -- -- Tomasulo 2009 -- load-store buffer (buffer after lsq before CDB/Issue Unit) --UPDATED ON: 7/24/09 -- Rohit Goel , Gandhi Puvvada -- University of Southern California ------------------------------------------------------------------------------ library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; ------------------------------------------------------------------------------ -- Originally we wanted to have a few location FIFO for the ls buffer. -- As we ran out of time, we made a single location buffer but we retained -- handhsake control signals on both sides of the buffer (the LSQ side and the -- issue unit side) so that we can easily replace this with a FIFO later. -- The selective flusing makes it a queue like LSQ (and not a pure FIFO) -- Gandhi ------------------------------------------------------------------------------ entity ls_buffer is port ( Clk : in std_logic; Resetb : in std_logic; -- from ROB -- for fulsing the instruction in this buffer if appropriate. Cdb_Flush : in std_logic ; Rob_TopPtr : in std_logic_vector (4 downto 0 ) ; Cdb_RobDepth : in std_logic_vector (4 downto 0 ) ; -- interface with lsq Iss_LdStReady : in std_logic ; Iss_LdStOpcode : in std_logic ; -- 1 = lw , 0 = sw Iss_LdStRobTag : in std_logic_vector(4 downto 0); Iss_LdStAddr : in std_logic_vector(31 downto 0); Iss_LdStData : in std_logic_vector(31 downto 0);-- data to be written to memory in the case of sw Iss_LdStPhyAddr : in std_logic_vector(5 downto 0); -- translate_off DCE_instruction : in std_logic_vector(31 downto 0); -- translate_on -- translate_off Iss_instructionLsq : in std_logic_vector(31 downto 0); -- translate_on ---- interface with data cache emulator ---------------- DCE_PhyAddr : in std_logic_vector(5 downto 0); DCE_Opcode : in std_logic ; DCE_RobTag : in std_logic_vector(4 downto 0); DCE_Addr : in std_logic_vector(31 downto 0); DCE_MemData: in std_logic_vector (31 downto 0 ) ; -- data from data memory in the case of lw DCE_ReadDone : in std_logic ; -- data memory (data cache) reporting that read finished -- from ls_buffer_ram_reg_array -- instance name DataMem Lsbuf_LsqTaken : out std_logic; -- handshake signal to ls_queue Lsbuf_DCETaken : out std_logic; -- handshake signal to ls_queue Lsbuf_Full : out std_logic; -- handshake signal to ls_queue -- interface with issue unit -- from load buffer and store word -- translate_off Lsbuf_instruction : out std_logic_vector(31 downto 0); -- translate_on Lsbuf_Ready : out std_logic ; ------------- changed as per CDB ------------- Lsbuf_Data : out std_logic_vector(31 downto 0); Lsbuf_PhyAddr : out std_logic_vector(5 downto 0); Lsbuf_RobTag : out std_logic_vector(4 downto 0) ; Lsbuf_SwAddr : out std_logic_vector(31 downto 0); Lsbuf_RdWrite : out std_logic; ------------------------------------------------------------ Iss_Lsb : in std_logic -- return signal from the issue unit ); end ls_buffer; architecture struct of ls_buffer is type array_4_5 is array (0 to 3) of std_logic_vector(4 downto 0) ; --TAG type array_4_6 is array (0 to 3) of std_logic_vector(5 downto 0) ; type array_4_32 is array (0 to 3) of std_logic_vector(31 downto 0) ; --DATA signal LsBufInstValid , LsBufInstValidTemp : std_logic_vector (3 downto 0) ; -- one bit for each location signal LsBufOpcode : std_logic_vector ( 3 downto 0) ; signal LsbufRobTag : array_4_5 ; signal LsBufPhyAddr : array_4_6; signal LsBufData , LsBufSwAddr :array_4_32; -- translate_off signal LsBufInstruction : array_4_32 ; -- [63:32] = address; [31:0] = data -- translate_on signal lsq_incoming_Depth : std_logic_vector( 4 downto 0 ) ; -- depth of incoming instruction from lsque or data emulator signal dce_incoming_Depth : std_logic_vector( 4 downto 0 ) ; -- depth of incoming instruction from lsque or data emulator signal lsq_flush , dce_flush : std_logic; signal BufDepth : array_4_5 ; -- depth of each location of FIFO signal wr_ptr , rd_ptr , wr_ptr_temp , rd_ptr_temp: std_logic_vector (2 downto 0) ; -- 3 bit read and write pointers for 4 location FIFO signal full_temp , shift_2 , shift_3: std_logic ; begin lsq_incoming_Depth <= unsigned(Iss_LdStRobTag) - unsigned(Rob_TopPtr) ; -- depth of the incoming instruction (coming from lsq) dce_incoming_Depth <= unsigned(DCE_RobTag) - unsigned(Rob_TopPtr); -- depth of the incoming instruction (coming from lsq) BufDepth(0) <= unsigned(LsbufRobTag(0)) - unsigned(Rob_TopPtr); -- depth of the currently residing instruction BufDepth(1) <= unsigned(LsbufRobTag(1)) - unsigned(Rob_TopPtr); BufDepth(2) <= unsigned(LsbufRobTag(2)) - unsigned(Rob_TopPtr); BufDepth(3) <= unsigned(LsbufRobTag(3)) - unsigned(Rob_TopPtr); -- out to issue unit Lsbuf_Ready <= LsBufInstValid(conv_integer(rd_ptr_temp(1 downto 0))); Lsbuf_RobTag <= LsbufRobTag(conv_integer(rd_ptr_temp(1 downto 0))) ; Lsbuf_Data <= LsBufData(conv_integer(rd_ptr_temp(1 downto 0))) ; Lsbuf_SwAddr <= LsBufSwAddr(conv_integer(rd_ptr_temp(1 downto 0))) ; Lsbuf_RdWrite <= LsBufOpcode(conv_integer(rd_ptr_temp(1 downto 0))) ; Lsbuf_PhyAddr <= LsBufPhyAddr(conv_integer(rd_ptr_temp(1 downto 0))) ; -- translate_off Lsbuf_instruction <= LsBufInstruction(conv_integer(rd_ptr_temp(1 downto 0))) ; -- translate_on process (Cdb_Flush , LsBufInstValid , BufDepth ,Cdb_RobDepth,lsq_incoming_depth,dce_incoming_depth) begin if (Cdb_Flush = '1') then for I in 0 to 3 loop if (BufDepth(I) > Cdb_RobDepth) then LsBufInstValidTemp(I) <= '0' ; -- flush the entry in fifo else LsBufInstValidTemp(I) <= LsBufInstValid(I); end if ; end loop ; if (lsq_incoming_depth > Cdb_RobDepth) then lsq_flush <= '1'; else lsq_flush <= '0'; end if ; if (dce_incoming_depth > Cdb_RobDepth) then dce_flush <= '1'; else dce_flush <= '0'; end if ; else lsq_flush <= '0'; dce_flush <= '0'; for I in 0 to 3 loop LsBufInstValidTemp(I) <= LsBufInstValid(I); end loop ; end if ; -- end of Cdb_Flush = 1 end process ; ---------------------------------------------------------- -- Process for calculating write and read pointer in case of flush ------------------------------------------------------------------ process(Cdb_Flush , LsBufInstValidTemp, wr_ptr, rd_ptr) begin shift_2 <= '0'; shift_3 <= '0'; if (Cdb_Flush = '1') then case LsBufInstValidTemp(3 downto 0) is when "0000" => wr_ptr_temp <= "000"; rd_ptr_temp <= "000"; when "0001" => wr_ptr_temp <= "001"; rd_ptr_temp <= "000"; when "0010" => wr_ptr_temp <= "010"; rd_ptr_temp <= "001"; when "0011" => wr_ptr_temp <= "010"; rd_ptr_temp <= "000"; when "0100" => wr_ptr_temp <= "011"; rd_ptr_temp <= "010"; when "0101" => wr_ptr_temp <= "010"; rd_ptr_temp <= "000"; shift_2 <= '1'; when "0110" => wr_ptr_temp <= "011"; rd_ptr_temp <= "001"; when "0111" => wr_ptr_temp <= "011"; rd_ptr_temp <= "000"; when "1000" => wr_ptr_temp <= "100"; rd_ptr_temp <= "011"; when "1001" => wr_ptr_temp <= "101"; rd_ptr_temp <= "011"; when "1010" => wr_ptr_temp <= "011"; rd_ptr_temp <= "001"; shift_3 <= '1'; when "1011" => wr_ptr_temp <= "110"; rd_ptr_temp <= "011"; when "1100" => wr_ptr_temp <= "100"; rd_ptr_temp <= "010"; when "1101" => wr_ptr_temp <= "101"; rd_ptr_temp <= "010"; when "1110" => wr_ptr_temp <= "100"; rd_ptr_temp <= "001"; when "1111" => wr_ptr_temp <= "100"; rd_ptr_temp <= "000"; when others => wr_ptr_temp <= wr_ptr; rd_ptr_temp <= rd_ptr; end case; else wr_ptr_temp <= wr_ptr; rd_ptr_temp <= rd_ptr; end if; end process; ----------------------------------------------------------------- ----------------------------------------------------------------------- --- process for generating full signal ------------------------------------------------------------------------ Lsbuf_Full <= full_temp; process (wr_ptr_temp , rd_ptr_temp , Iss_Lsb ) begin full_temp <= '0'; if ((wr_ptr_temp(1 downto 0) = rd_ptr_temp(1 downto 0)) and (wr_ptr_temp(2) /= rd_ptr_temp(2))) then full_temp <= '1' ; end if ; if (Iss_Lsb = '1') then full_temp <= '0' ; end if ; end process ; ---------------------------------------------------------------------------------------------- --- Process generating signals for lsq and dce telling if the data on their outputs is taken or not ---------------------------------------------------------------------------------------------- process (full_temp , dce_flush , lsq_flush , DCE_ReadDone , Iss_LdStReady , Iss_LdStOpcode) begin Lsbuf_DCETaken <= '0' ; Lsbuf_LsqTaken <= '0'; if (full_temp = '0') then if ( Iss_LdStReady = '1' and Iss_LdStOpcode = '0') then -- sw taken from lsq Lsbuf_LsqTaken <= '1' ; elsif (DCE_ReadDone = '1') then Lsbuf_DCETaken <= '1' ; else Lsbuf_LsqTaken <= '0'; Lsbuf_DCETaken <= '0'; end if; end if ; end process; ----------------------------------------------------------------------------------------------- process ( Clk , Resetb ) variable wr_i : integer; variable rd_i : integer; begin if ( Resetb = '0' ) then wr_ptr <= (others => '0') ; rd_ptr <= (others => '0') ; LsBufInstValid <= "0000" ; LsBufOpcode <= (others => '0') ; -- 1 = lw, 0 = sw elsif ( Clk'event and Clk = '1' ) then wr_i := conv_integer(wr_ptr_temp(1 downto 0)); rd_i := conv_integer(rd_ptr_temp(1 downto 0)); wr_ptr <= wr_ptr_temp; rd_ptr <= rd_ptr_temp; for I in 0 to 3 loop LsBufInstValid(I) <= LsBufInstValidTemp(I); end loop; if (shift_2 = '1') then LsBufInstValid(1) <= LsBufInstValidTemp(2); LsBufInstValid(2) <= '0'; LsBufOpcode(1) <= LsBufOpcode(2) ; LsbufRobTag(1) <= LsbufRobTag(2); LsBufData(1) <= LsBufData(2); LsBufSwAddr(1) <= LsBufSwAddr(2); LsBufPhyAddr(1) <= LsBufPhyAddr(2); -- translate_off LsBufInstruction(1) <= LsBufInstruction(2); -- translate_on end if ; if (shift_3 = '1') then LsBufInstValid(2) <= LsBufInstValidTemp(3); LsBufInstValid(3) <= '0'; LsBufOpcode(2) <= LsBufOpcode(3) ; LsbufRobTag(2) <= LsbufRobTag(3); LsBufData(2) <= LsBufData(3); LsBufSwAddr(2) <= LsBufSwAddr(3); LsBufPhyAddr(2) <= LsBufPhyAddr(3); -- translate_off LsBufInstruction(2) <= LsBufInstruction(3); -- translate_on end if ; if (Iss_Lsb = '1') then rd_ptr <= rd_ptr_temp + 1; LsBufInstValid(rd_i) <= '0' ; end if; if (full_temp = '0') then if ( lsq_flush = '0' and Iss_LdStReady = '1' and Iss_LdStOpcode = '0') then LsBufInstValid(wr_i) <= '1' ; LsBufOpcode(wr_i) <= Iss_LdStOpcode; LsbufRobTag(wr_i) <= Iss_LdStRobTag; LsBufData(wr_i) <= Iss_LdStData; LsBufSwAddr(wr_i) <= Iss_LdStAddr ; LsBufPhyAddr(wr_i) <= Iss_LdStPhyAddr ; -- translate_off LsBufInstruction(wr_i) <= Iss_instructionLsq ; -- translate_on wr_ptr <= wr_ptr_temp + 1 ; -- Lsbuf_LsqTaken <= '1'; elsif (dce_flush = '0' and DCE_ReadDone = '1') then LsBufInstValid(wr_i) <= '1' ; LsBufOpcode(wr_i) <= DCE_Opcode; LsbufRobTag(wr_i) <= DCE_RobTag; LsBufData(wr_i) <= DCE_MemData ; LsBufSwAddr(wr_i) <= DCE_Addr ; LsBufPhyAddr(wr_i) <= DCE_PhyAddr ; -- translate_off LsBufInstruction(wr_i) <= DCE_instruction ; -- translate_on wr_ptr <= wr_ptr_temp + 1 ; -- Lsbuf_DCETaken <= '1'; end if ; end if ; -- end of full_temp = '0' end if ; -- end of Clk'event -------------------------------------------------------- end process ; end architecture struct;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc447.vhd,v 1.2 2001-10-26 16:29:54 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY model IS PORT ( F1: OUT integer := 3; F2: INOUT integer := 3; F3: IN integer ); END model; architecture model of model is begin process begin wait for 1 ns; assert F3= 3 report"wrong initialization of F3 through type conversion" severity failure; assert F2 = 3 report"wrong initialization of F2 through type conversion" severity failure; wait; end process; end; ENTITY c03s02b01x01p19n01i00447ent IS END c03s02b01x01p19n01i00447ent; ARCHITECTURE c03s02b01x01p19n01i00447arch OF c03s02b01x01p19n01i00447ent IS type natural_vector is array (natural range <>) of natural; subtype natural_vector_st is natural_vector(0 to 15); constant C1 : natural := 4; constant C70 : natural_vector_st :=(others => C1); function complex_scalar(s : natural_vector_st) return integer is begin return 3; end complex_scalar; function scalar_complex(s : integer) return natural_vector_st is begin return C70; end scalar_complex; component model1 PORT ( F1: OUT integer; F2: INOUT integer; F3: IN integer ); end component; for T1 : model1 use entity work.model(model); signal S1 : natural_vector_st; signal S2 : natural_vector_st; signal S3 : natural_vector_st := C70; BEGIN T1: model1 port map ( scalar_complex(F1) => S1, scalar_complex(F2) => complex_scalar(S2), F3 => complex_scalar(S3) ); TESTING: PROCESS BEGIN wait for 1 ns; assert NOT((S1 = C70) and (S2 = C70)) report "***PASSED TEST: c03s02b01x01p19n01i00447" severity NOTE; assert ((S1 = C70) and (S2 = C70)) report "***FAILED TEST: c03s02b01x01p19n01i00447 - For an interface object of mode out, buffer, inout, or linkage, if the formal part includes a type conversion function, then the parameter subtype of that function must be a constrained array subtype." severity ERROR; wait; END PROCESS TESTING; END c03s02b01x01p19n01i00447arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc447.vhd,v 1.2 2001-10-26 16:29:54 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY model IS PORT ( F1: OUT integer := 3; F2: INOUT integer := 3; F3: IN integer ); END model; architecture model of model is begin process begin wait for 1 ns; assert F3= 3 report"wrong initialization of F3 through type conversion" severity failure; assert F2 = 3 report"wrong initialization of F2 through type conversion" severity failure; wait; end process; end; ENTITY c03s02b01x01p19n01i00447ent IS END c03s02b01x01p19n01i00447ent; ARCHITECTURE c03s02b01x01p19n01i00447arch OF c03s02b01x01p19n01i00447ent IS type natural_vector is array (natural range <>) of natural; subtype natural_vector_st is natural_vector(0 to 15); constant C1 : natural := 4; constant C70 : natural_vector_st :=(others => C1); function complex_scalar(s : natural_vector_st) return integer is begin return 3; end complex_scalar; function scalar_complex(s : integer) return natural_vector_st is begin return C70; end scalar_complex; component model1 PORT ( F1: OUT integer; F2: INOUT integer; F3: IN integer ); end component; for T1 : model1 use entity work.model(model); signal S1 : natural_vector_st; signal S2 : natural_vector_st; signal S3 : natural_vector_st := C70; BEGIN T1: model1 port map ( scalar_complex(F1) => S1, scalar_complex(F2) => complex_scalar(S2), F3 => complex_scalar(S3) ); TESTING: PROCESS BEGIN wait for 1 ns; assert NOT((S1 = C70) and (S2 = C70)) report "***PASSED TEST: c03s02b01x01p19n01i00447" severity NOTE; assert ((S1 = C70) and (S2 = C70)) report "***FAILED TEST: c03s02b01x01p19n01i00447 - For an interface object of mode out, buffer, inout, or linkage, if the formal part includes a type conversion function, then the parameter subtype of that function must be a constrained array subtype." severity ERROR; wait; END PROCESS TESTING; END c03s02b01x01p19n01i00447arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc447.vhd,v 1.2 2001-10-26 16:29:54 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY model IS PORT ( F1: OUT integer := 3; F2: INOUT integer := 3; F3: IN integer ); END model; architecture model of model is begin process begin wait for 1 ns; assert F3= 3 report"wrong initialization of F3 through type conversion" severity failure; assert F2 = 3 report"wrong initialization of F2 through type conversion" severity failure; wait; end process; end; ENTITY c03s02b01x01p19n01i00447ent IS END c03s02b01x01p19n01i00447ent; ARCHITECTURE c03s02b01x01p19n01i00447arch OF c03s02b01x01p19n01i00447ent IS type natural_vector is array (natural range <>) of natural; subtype natural_vector_st is natural_vector(0 to 15); constant C1 : natural := 4; constant C70 : natural_vector_st :=(others => C1); function complex_scalar(s : natural_vector_st) return integer is begin return 3; end complex_scalar; function scalar_complex(s : integer) return natural_vector_st is begin return C70; end scalar_complex; component model1 PORT ( F1: OUT integer; F2: INOUT integer; F3: IN integer ); end component; for T1 : model1 use entity work.model(model); signal S1 : natural_vector_st; signal S2 : natural_vector_st; signal S3 : natural_vector_st := C70; BEGIN T1: model1 port map ( scalar_complex(F1) => S1, scalar_complex(F2) => complex_scalar(S2), F3 => complex_scalar(S3) ); TESTING: PROCESS BEGIN wait for 1 ns; assert NOT((S1 = C70) and (S2 = C70)) report "***PASSED TEST: c03s02b01x01p19n01i00447" severity NOTE; assert ((S1 = C70) and (S2 = C70)) report "***FAILED TEST: c03s02b01x01p19n01i00447 - For an interface object of mode out, buffer, inout, or linkage, if the formal part includes a type conversion function, then the parameter subtype of that function must be a constrained array subtype." severity ERROR; wait; END PROCESS TESTING; END c03s02b01x01p19n01i00447arch;
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008 - 2014, Aeroflex Gaisler -- Copyright (C) 2015 - 2016, Cobham Gaisler -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ------------------------------------------------------------------------------- -- Entity: ahb2mig_ztex -- File: ahb2mig_ztex.vhd -- Author: Jiri Gaisler - Aeroflex Gaisler AB -- -- This is a AHB-2.0 interface for the Xilinx Spartan-6 MIG. -- One bidir 32-bit port is used for the main AHB bus. ------------------------------------------------------------------------------- -- Patched for ZTEX: Oleg Belousov <belousov.oleg@gmail.com> ------------------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; library grlib; use grlib.amba.all; use grlib.stdlib.all; use grlib.devices.all; entity ahb2mig_ztex is generic( hindex : integer := 0; haddr : integer := 0; hmask : integer := 16#f00#; pindex : integer := 0; paddr : integer := 0; pmask : integer := 16#fff# ); port( mcb3_dram_dq : inout std_logic_vector(15 downto 0); mcb3_rzq : inout std_logic; mcb3_dram_udqs : inout std_logic; mcb3_dram_dqs : inout std_logic; mcb3_dram_a : out std_logic_vector(12 downto 0); mcb3_dram_ba : out std_logic_vector(1 downto 0); mcb3_dram_cke : out std_logic; mcb3_dram_ras_n : out std_logic; mcb3_dram_cas_n : out std_logic; mcb3_dram_we_n : out std_logic; mcb3_dram_dm : out std_logic; mcb3_dram_udm : out std_logic; mcb3_dram_ck : out std_logic; mcb3_dram_ck_n : out std_logic; ahbso : out ahb_slv_out_type; ahbsi : in ahb_slv_in_type; apbi : in apb_slv_in_type; apbo : out apb_slv_out_type; calib_done : out std_logic; test_error : out std_logic; rst_n_syn : in std_logic; rst_n_async : in std_logic; clk_amba : in std_logic; clk_mem : in std_logic ); end ; architecture rtl of ahb2mig_ztex is component mig_37 generic( C3_P0_MASK_SIZE : integer := 4; C3_P0_DATA_PORT_SIZE : integer := 32; C3_P1_MASK_SIZE : integer := 4; C3_P1_DATA_PORT_SIZE : integer := 32; C3_MEMCLK_PERIOD : integer := 5000; C3_RST_ACT_LOW : integer := 0; C3_INPUT_CLK_TYPE : string := "SINGLE_ENDED"; C3_CALIB_SOFT_IP : string := "TRUE"; C3_SIMULATION : string := "FALSE"; DEBUG_EN : integer := 0; C3_MEM_ADDR_ORDER : string := "ROW_BANK_COLUMN"; C3_NUM_DQ_PINS : integer := 16; C3_MEM_ADDR_WIDTH : integer := 13; C3_MEM_BANKADDR_WIDTH : integer := 2 ); port ( mcb3_dram_dq : inout std_logic_vector(C3_NUM_DQ_PINS-1 downto 0); mcb3_dram_a : out std_logic_vector(C3_MEM_ADDR_WIDTH-1 downto 0); mcb3_dram_ba : out std_logic_vector(C3_MEM_BANKADDR_WIDTH-1 downto 0); mcb3_dram_cke : out std_logic; mcb3_dram_ras_n : out std_logic; mcb3_dram_cas_n : out std_logic; mcb3_dram_we_n : out std_logic; mcb3_dram_dm : out std_logic; mcb3_dram_udqs : inout std_logic; mcb3_rzq : inout std_logic; mcb3_dram_udm : out std_logic; c3_sys_clk : in std_logic; c3_sys_rst_n : in std_logic; c3_calib_done : out std_logic; c3_clk0 : out std_logic; c3_rst0 : out std_logic; mcb3_dram_dqs : inout std_logic; mcb3_dram_ck : out std_logic; mcb3_dram_ck_n : out std_logic; c3_p0_cmd_clk : in std_logic; c3_p0_cmd_en : in std_logic; c3_p0_cmd_instr : in std_logic_vector(2 downto 0); c3_p0_cmd_bl : in std_logic_vector(5 downto 0); c3_p0_cmd_byte_addr : in std_logic_vector(29 downto 0); c3_p0_cmd_empty : out std_logic; c3_p0_cmd_full : out std_logic; c3_p0_wr_clk : in std_logic; c3_p0_wr_en : in std_logic; c3_p0_wr_mask : in std_logic_vector(C3_P0_MASK_SIZE - 1 downto 0); c3_p0_wr_data : in std_logic_vector(C3_P0_DATA_PORT_SIZE - 1 downto 0); c3_p0_wr_full : out std_logic; c3_p0_wr_empty : out std_logic; c3_p0_wr_count : out std_logic_vector(6 downto 0); c3_p0_wr_underrun : out std_logic; c3_p0_wr_error : out std_logic; c3_p0_rd_clk : in std_logic; c3_p0_rd_en : in std_logic; c3_p0_rd_data : out std_logic_vector(C3_P0_DATA_PORT_SIZE - 1 downto 0); c3_p0_rd_full : out std_logic; c3_p0_rd_empty : out std_logic; c3_p0_rd_count : out std_logic_vector(6 downto 0); c3_p0_rd_overflow : out std_logic; c3_p0_rd_error : out std_logic ); end component; type bstate_type is (idle, start, read1); constant hconfig : ahb_config_type := ( 0 => ahb_device_reg ( VENDOR_GAISLER, GAISLER_MIGDDR2, 0, 0, 0), 4 => ahb_membar(haddr, '1', '1', hmask), -- 5 => ahb_iobar(ioaddr, iomask), others => zero32); constant pconfig : apb_config_type := ( 0 => ahb_device_reg ( VENDOR_GAISLER, GAISLER_MIGDDR2, 0, 0, 0), 1 => apb_iobar(paddr, pmask)); type reg_type is record bstate : bstate_type; cmd_bl : std_logic_vector(5 downto 0); wr_count : std_logic_vector(6 downto 0); rd_cnt : std_logic_vector(5 downto 0); hready : std_logic; hsel : std_logic; hwrite : std_logic; htrans : std_logic_vector(1 downto 0); hburst : std_logic_vector(2 downto 0); hsize : std_logic_vector(2 downto 0); hrdata : std_logic_vector(31 downto 0); haddr : std_logic_vector(31 downto 0); hmaster : std_logic_vector(3 downto 0); end record; type mcb_type is record cmd_en : std_logic; cmd_instr : std_logic_vector(2 downto 0); cmd_empty : std_logic; cmd_full : std_logic; cmd_bl : std_logic_vector(5 downto 0); cmd_byte_addr : std_logic_vector(29 downto 0); wr_full : std_logic; wr_empty : std_logic; wr_underrun : std_logic; wr_error : std_logic; wr_mask : std_logic_vector(3 downto 0); wr_en : std_logic; wr_data : std_logic_vector(31 downto 0); wr_count : std_logic_vector(6 downto 0); rd_data : std_logic_vector(31 downto 0); rd_full : std_logic; rd_empty : std_logic; rd_count : std_logic_vector(6 downto 0); rd_overflow : std_logic; rd_error : std_logic; rd_en : std_logic; end record; signal r, rin : reg_type; signal i : mcb_type; begin comb: process( rst_n_syn, r, ahbsi, i ) variable v : reg_type; variable wmask : std_logic_vector(3 downto 0); variable wr_en : std_logic; variable cmd_en : std_logic; variable cmd_instr : std_logic_vector(2 downto 0); variable rd_en : std_logic; variable cmd_bl : std_logic_vector(5 downto 0); variable hwdata : std_logic_vector(31 downto 0); variable readdata : std_logic_vector(31 downto 0); begin v := r; wr_en := '0'; cmd_en := '0'; cmd_instr := "000"; rd_en := '0'; if (ahbsi.hready = '1') then if (ahbsi.hsel(hindex) and ahbsi.htrans(1)) = '1' then v.hsel := '1'; v.hburst := ahbsi.hburst; v.hwrite := ahbsi.hwrite; v.hsize := ahbsi.hsize; v.hmaster := ahbsi.hmaster; v.hready := '0'; if ahbsi.htrans(0) = '0' then v.haddr := ahbsi.haddr; end if; else v.hsel := '0'; v.hready := '1'; end if; v.htrans := ahbsi.htrans; end if; hwdata := ahbsi.hwdata(15 downto 0) & ahbsi.hwdata(31 downto 16); case r.hsize(1 downto 0) is when "00" => wmask := not decode(r.haddr(1 downto 0)); case r.haddr(1 downto 0) is when "00" => wmask := "1101"; when "01" => wmask := "1110"; when "10" => wmask := "0111"; when others => wmask := "1011"; end case; when "01" => wmask := not decode(r.haddr(1 downto 0)); wmask(3) := wmask(2); wmask(1) := wmask(0); when others => wmask := "0000"; end case; i.wr_mask <= wmask; cmd_bl := r.cmd_bl; case r.bstate is when idle => if v.hsel = '1' then v.bstate := start; v.hready := ahbsi.hwrite and not i.cmd_full and not i.wr_full; v.haddr := ahbsi.haddr; end if; v.cmd_bl := (others => '0'); when start => if r.hwrite = '1' then v.haddr := r.haddr; if r.hready = '1' then v.cmd_bl := r.cmd_bl + 1; v.hready := '1'; wr_en := '1'; if (ahbsi.htrans /= "11") then if v.hsel = '1' then if (ahbsi.hwrite = '0') or (i.wr_count >= "0000100") then v.hready := '0'; else v.hready := '1'; end if; else v.bstate := idle; end if; v.cmd_bl := (others => '0'); v.haddr := ahbsi.haddr; cmd_en := '1'; elsif (i.cmd_full = '1') then v.hready := '0'; elsif (i.wr_count >= "0101111") then v.hready := '0'; cmd_en := '1'; v.cmd_bl := (others => '0'); v.haddr := ahbsi.haddr; end if; else if (i.cmd_full = '0') and (i.wr_count <= "0001111") then v.hready := '1'; end if; end if; else if i.cmd_full = '0' then cmd_en := '1'; cmd_instr(0) := '1'; v.cmd_bl := "000" & not r.haddr(4 downto 2); cmd_bl := v.cmd_bl; v.bstate := read1; end if; end if; when read1 => v.hready := '0'; if (r.rd_cnt = "000000") then -- flush data from previous line if (i.rd_empty = '0') or ((r.hready = '1') and (ahbsi.htrans /= "11")) then v.hrdata(31 downto 0) := i.rd_data(15 downto 0) & i.rd_data(31 downto 16); v.hready := '1'; if (i.rd_empty = '0') then v.cmd_bl := r.cmd_bl - 1; rd_en := '1'; end if; if (r.cmd_bl = "000000") or (ahbsi.htrans /= "11") then if (ahbsi.hsel(hindex) = '1') and (ahbsi.htrans = "10") and (r.hready = '1') then v.bstate := start; v.hready := ahbsi.hwrite and not i.cmd_full and not i.wr_full; v.cmd_bl := (others => '0'); else v.bstate := idle; end if; if (i.rd_empty = '1') then v.rd_cnt := r.cmd_bl + 1; else v.rd_cnt := r.cmd_bl; end if; end if; end if; end if; when others => end case; readdata := (others => '0'); -- case apbi.paddr(5 downto 2) is -- when "0000" => readdata(nbits-1 downto 0) := r.din2; -- when "0001" => readdata(nbits-1 downto 0) := r.dout; -- when others => -- end case; readdata(20 downto 0) := i.rd_error & i.rd_overflow & i.wr_error & i.wr_underrun & i.cmd_full & i.rd_full & i.rd_empty & i.wr_full & i.wr_empty & r.rd_cnt & r.cmd_bl; if (r.rd_cnt /= "000000") and (i.rd_empty = '0') then rd_en := '1'; v.rd_cnt := r.rd_cnt - 1; end if; if rst_n_syn = '0' then v.rd_cnt := "000000"; v.bstate := idle; v.hready := '1'; end if; rin <= v; apbo.prdata <= readdata; i.rd_en <= rd_en; i.wr_en <= wr_en; i.cmd_bl <= cmd_bl; i.cmd_en <= cmd_en; i.cmd_instr <= cmd_instr; i.wr_data <= hwdata; end process; i.cmd_byte_addr <= r.haddr(29 downto 2) & "00"; ahbso.hready <= r.hready; ahbso.hresp <= "00"; --r.hresp; ahbso.hrdata <= r.hrdata; ahbso.hconfig <= hconfig; ahbso.hirq <= (others => '0'); ahbso.hindex <= hindex; ahbso.hsplit <= (others => '0'); apbo.pirq <= (others => '0'); apbo.pindex <= pindex; apbo.pconfig <= pconfig; regs : process(clk_amba) begin if rising_edge(clk_amba) then r <= rin; end if; end process; MCB_inst : entity work.mig_37 generic map( C3_RST_ACT_LOW => 1, -- pragma translate_off C3_SIMULATION => "TRUE", -- pragma translate_on C3_MEM_ADDR_ORDER => "BANK_ROW_COLUMN" ) port map ( mcb3_dram_dq => mcb3_dram_dq, mcb3_rzq => mcb3_rzq, mcb3_dram_udqs => mcb3_dram_udqs, mcb3_dram_dqs => mcb3_dram_dqs, mcb3_dram_a => mcb3_dram_a, mcb3_dram_ba => mcb3_dram_ba, mcb3_dram_cke => mcb3_dram_cke, mcb3_dram_ras_n => mcb3_dram_ras_n, mcb3_dram_cas_n => mcb3_dram_cas_n, mcb3_dram_we_n => mcb3_dram_we_n, mcb3_dram_dm => mcb3_dram_dm, mcb3_dram_udm => mcb3_dram_udm, mcb3_dram_ck => mcb3_dram_ck, mcb3_dram_ck_n => mcb3_dram_ck_n, c3_sys_clk => clk_mem, c3_sys_rst_n => rst_n_async, c3_calib_done => calib_done, c3_clk0 => open, c3_rst0 => open, c3_p0_cmd_clk => clk_amba, c3_p0_cmd_en => i.cmd_en, c3_p0_cmd_instr => i.cmd_instr, c3_p0_cmd_bl => i.cmd_bl, c3_p0_cmd_byte_addr => i.cmd_byte_addr, c3_p0_cmd_empty => i.cmd_empty, c3_p0_cmd_full => i.cmd_full, c3_p0_wr_clk => clk_amba, c3_p0_wr_en => i.wr_en, c3_p0_wr_mask => i.wr_mask, c3_p0_wr_data => i.wr_data, c3_p0_wr_full => i.wr_full, c3_p0_wr_empty => i.wr_empty, c3_p0_wr_count => i.wr_count, c3_p0_wr_underrun => i.wr_underrun, c3_p0_wr_error => i.wr_error, c3_p0_rd_clk => clk_amba, c3_p0_rd_en => i.rd_en, c3_p0_rd_data => i.rd_data, c3_p0_rd_full => i.rd_full, c3_p0_rd_empty => i.rd_empty, c3_p0_rd_count => i.rd_count, c3_p0_rd_overflow => i.rd_overflow, c3_p0_rd_error => i.rd_error ); end;
-- VHDL de um contador para a impressao do tabuleiro library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; entity contador_tabuleiro is port( clock : in std_logic; zera : in std_logic; conta : in std_logic; contagem : out std_logic_vector(6 downto 0); fim : out std_logic ); end contador_tabuleiro; architecture exemplo of contador_tabuleiro is signal IQ: unsigned(6 downto 0); begin process (clock, conta, IQ, zera) begin if zera = '1' then IQ <= (others => '0'); elsif clock'event and clock = '1' then if (conta = '1') then IQ <= IQ + 1; end if; end if; if IQ = 77 then fim <= '1'; else fim <= '0'; end if; contagem <= std_logic_vector(IQ); end process; end exemplo;
--------------------------------------------------------------------------- -- -- Module : decode_8b10b_lut.vhd -- -- Version : 1.1 -- -- Last Update : 2008-10-31 -- -- Project : 8b/10b Decoder Reference Design -- -- Description : LUT-based Decoder for decoding 8b/10b encoded symbols -- -- Company : Xilinx, Inc. -- -- DISCLAIMER OF LIABILITY -- -- This file contains proprietary and confidential information of -- Xilinx, Inc. ("Xilinx"), that is distributed under a license -- from Xilinx, and may be used, copied and/or disclosed only -- pursuant to the terms of a valid license agreement with Xilinx. -- -- XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION -- ("MATERIALS") "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER -- EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING WITHOUT -- LIMITATION, ANY WARRANTY WITH RESPECT TO NONINFRINGEMENT, -- MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE. Xilinx -- does not warrant that functions included in the Materials will -- meet the requirements of Licensee, or that the operation of the -- Materials will be uninterrupted or error-free, or that defects -- in the Materials will be corrected. Furthermore, Xilinx does -- not warrant or make any representations regarding use, or the -- results of the use, of the Materials in terms of correctness, -- accuracy, reliability or otherwise. -- -- Xilinx products are not designed or intended to be fail-safe, -- or for use in any application requiring fail-safe performance, -- such as life-support or safety devices or systems, Class III -- medical devices, nuclear facilities, applications related to -- the deployment of airbags, or any other applications that could -- lead to death, personal injury or severe property or -- environmental damage (individually and collectively, "critical -- applications"). Customer assumes the sole risk and liability -- of any use of Xilinx products in critical applications, -- subject only to applicable laws and regulations governing -- limitations on product liability. -- -- Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2008 Xilinx, Inc. -- All rights reserved. -- -- This disclaimer and copyright notice must be retained as part -- of this file at all times. -- ------------------------------------------------------------------------------- -- -- History -- -- Date Version Description -- -- 10/31/2008 1.1 Initial release -- ------------------------------------------------------------------------------- LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; ----------------------------------------------------------------------------- -- Entity Declaration ----------------------------------------------------------------------------- ENTITY decode_8b10b_lut IS GENERIC ( C_HAS_BPORTS : INTEGER := 0; C_HAS_CODE_ERR : INTEGER := 0; C_HAS_CODE_ERR_B : INTEGER := 0; C_HAS_DISP_ERR : INTEGER := 0; C_HAS_DISP_ERR_B : INTEGER := 0; C_HAS_DISP_IN : INTEGER := 0; C_HAS_DISP_IN_B : INTEGER := 0; C_HAS_ND : INTEGER := 0; C_HAS_ND_B : INTEGER := 0; C_HAS_SYM_DISP : INTEGER := 0; C_HAS_SYM_DISP_B : INTEGER := 0; C_HAS_RUN_DISP : INTEGER := 0; C_HAS_RUN_DISP_B : INTEGER := 0; C_SINIT_DOUT : STRING := "00000000"; C_SINIT_DOUT_B : STRING := "00000000"; C_SINIT_KOUT : INTEGER := 0; C_SINIT_KOUT_B : INTEGER := 0; C_SINIT_RUN_DISP : INTEGER := 0; C_SINIT_RUN_DISP_B : INTEGER := 0 ); PORT ( CLK : IN STD_LOGIC := '0'; DIN : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0'); DOUT : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) ; KOUT : OUT STD_LOGIC ; CE : IN STD_LOGIC := '0'; CE_B : IN STD_LOGIC := '0'; CLK_B : IN STD_LOGIC := '0'; DIN_B : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0'); DISP_IN : IN STD_LOGIC := '0'; DISP_IN_B : IN STD_LOGIC := '0'; SINIT : IN STD_LOGIC := '0'; SINIT_B : IN STD_LOGIC := '0'; CODE_ERR : OUT STD_LOGIC := '0'; CODE_ERR_B : OUT STD_LOGIC := '0'; DISP_ERR : OUT STD_LOGIC := '0'; DISP_ERR_B : OUT STD_LOGIC := '0'; DOUT_B : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) ; KOUT_B : OUT STD_LOGIC ; ND : OUT STD_LOGIC := '0'; ND_B : OUT STD_LOGIC := '0'; RUN_DISP : OUT STD_LOGIC ; RUN_DISP_B : OUT STD_LOGIC ; SYM_DISP : OUT STD_LOGIC_VECTOR(1 DOWNTO 0) ; SYM_DISP_B : OUT STD_LOGIC_VECTOR(1 DOWNTO 0) ); END decode_8b10b_lut; ------------------------------------------------------------------------------- -- Architecture ------------------------------------------------------------------------------- ARCHITECTURE xilinx OF decode_8b10b_lut IS ------------------------------------------------------------------------------- -- Begin Architecture ------------------------------------------------------------------------------- BEGIN ----Instantiate the first decoder (A decoder)-------------------------------- deca : entity work.decode_8b10b_lut_base GENERIC MAP ( C_HAS_CODE_ERR => C_HAS_CODE_ERR, C_HAS_DISP_ERR => C_HAS_DISP_ERR, C_HAS_DISP_IN => C_HAS_DISP_IN, C_HAS_ND => C_HAS_ND, C_HAS_SYM_DISP => C_HAS_SYM_DISP, C_HAS_RUN_DISP => C_HAS_RUN_DISP, C_SINIT_DOUT => C_SINIT_DOUT, C_SINIT_KOUT => C_SINIT_KOUT, C_SINIT_RUN_DISP => C_SINIT_RUN_DISP ) PORT MAP ( CLK => CLK, DIN => DIN, DOUT => DOUT, KOUT => KOUT, CE => CE, DISP_IN => DISP_IN, SINIT => SINIT, CODE_ERR => CODE_ERR, DISP_ERR => DISP_ERR, ND => ND, RUN_DISP => RUN_DISP, SYM_DISP => SYM_DISP ); gdecb : IF (C_HAS_BPORTS=1) GENERATE ----Instantiate second decoder (B decoder, only if bports are present)------ decb : entity work.decode_8b10b_lut_base GENERIC MAP ( C_HAS_CODE_ERR => C_HAS_CODE_ERR_B, C_HAS_DISP_ERR => C_HAS_DISP_ERR_B, C_HAS_DISP_IN => C_HAS_DISP_IN_B, C_HAS_ND => C_HAS_ND_B, C_HAS_SYM_DISP => C_HAS_SYM_DISP_B, C_HAS_RUN_DISP => C_HAS_RUN_DISP_B, C_SINIT_DOUT => C_SINIT_DOUT_B, C_SINIT_KOUT => C_SINIT_KOUT_B, C_SINIT_RUN_DISP => C_SINIT_RUN_DISP_B ) PORT MAP ( CLK => CLK_B, DIN => DIN_B, DOUT => DOUT_B, KOUT => KOUT_B, CE => CE_B, DISP_IN => DISP_IN_B, SINIT => SINIT_B, CODE_ERR => CODE_ERR_B, DISP_ERR => DISP_ERR_B, ND => ND_B, RUN_DISP => RUN_DISP_B, SYM_DISP => SYM_DISP_B ); END GENERATE gdecb; END xilinx ;
--------------------------------------------------------------------------- -- -- Module : decode_8b10b_lut.vhd -- -- Version : 1.1 -- -- Last Update : 2008-10-31 -- -- Project : 8b/10b Decoder Reference Design -- -- Description : LUT-based Decoder for decoding 8b/10b encoded symbols -- -- Company : Xilinx, Inc. -- -- DISCLAIMER OF LIABILITY -- -- This file contains proprietary and confidential information of -- Xilinx, Inc. ("Xilinx"), that is distributed under a license -- from Xilinx, and may be used, copied and/or disclosed only -- pursuant to the terms of a valid license agreement with Xilinx. -- -- XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION -- ("MATERIALS") "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER -- EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING WITHOUT -- LIMITATION, ANY WARRANTY WITH RESPECT TO NONINFRINGEMENT, -- MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE. Xilinx -- does not warrant that functions included in the Materials will -- meet the requirements of Licensee, or that the operation of the -- Materials will be uninterrupted or error-free, or that defects -- in the Materials will be corrected. Furthermore, Xilinx does -- not warrant or make any representations regarding use, or the -- results of the use, of the Materials in terms of correctness, -- accuracy, reliability or otherwise. -- -- Xilinx products are not designed or intended to be fail-safe, -- or for use in any application requiring fail-safe performance, -- such as life-support or safety devices or systems, Class III -- medical devices, nuclear facilities, applications related to -- the deployment of airbags, or any other applications that could -- lead to death, personal injury or severe property or -- environmental damage (individually and collectively, "critical -- applications"). Customer assumes the sole risk and liability -- of any use of Xilinx products in critical applications, -- subject only to applicable laws and regulations governing -- limitations on product liability. -- -- Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2008 Xilinx, Inc. -- All rights reserved. -- -- This disclaimer and copyright notice must be retained as part -- of this file at all times. -- ------------------------------------------------------------------------------- -- -- History -- -- Date Version Description -- -- 10/31/2008 1.1 Initial release -- ------------------------------------------------------------------------------- LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; ----------------------------------------------------------------------------- -- Entity Declaration ----------------------------------------------------------------------------- ENTITY decode_8b10b_lut IS GENERIC ( C_HAS_BPORTS : INTEGER := 0; C_HAS_CODE_ERR : INTEGER := 0; C_HAS_CODE_ERR_B : INTEGER := 0; C_HAS_DISP_ERR : INTEGER := 0; C_HAS_DISP_ERR_B : INTEGER := 0; C_HAS_DISP_IN : INTEGER := 0; C_HAS_DISP_IN_B : INTEGER := 0; C_HAS_ND : INTEGER := 0; C_HAS_ND_B : INTEGER := 0; C_HAS_SYM_DISP : INTEGER := 0; C_HAS_SYM_DISP_B : INTEGER := 0; C_HAS_RUN_DISP : INTEGER := 0; C_HAS_RUN_DISP_B : INTEGER := 0; C_SINIT_DOUT : STRING := "00000000"; C_SINIT_DOUT_B : STRING := "00000000"; C_SINIT_KOUT : INTEGER := 0; C_SINIT_KOUT_B : INTEGER := 0; C_SINIT_RUN_DISP : INTEGER := 0; C_SINIT_RUN_DISP_B : INTEGER := 0 ); PORT ( CLK : IN STD_LOGIC := '0'; DIN : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0'); DOUT : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) ; KOUT : OUT STD_LOGIC ; CE : IN STD_LOGIC := '0'; CE_B : IN STD_LOGIC := '0'; CLK_B : IN STD_LOGIC := '0'; DIN_B : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0'); DISP_IN : IN STD_LOGIC := '0'; DISP_IN_B : IN STD_LOGIC := '0'; SINIT : IN STD_LOGIC := '0'; SINIT_B : IN STD_LOGIC := '0'; CODE_ERR : OUT STD_LOGIC := '0'; CODE_ERR_B : OUT STD_LOGIC := '0'; DISP_ERR : OUT STD_LOGIC := '0'; DISP_ERR_B : OUT STD_LOGIC := '0'; DOUT_B : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) ; KOUT_B : OUT STD_LOGIC ; ND : OUT STD_LOGIC := '0'; ND_B : OUT STD_LOGIC := '0'; RUN_DISP : OUT STD_LOGIC ; RUN_DISP_B : OUT STD_LOGIC ; SYM_DISP : OUT STD_LOGIC_VECTOR(1 DOWNTO 0) ; SYM_DISP_B : OUT STD_LOGIC_VECTOR(1 DOWNTO 0) ); END decode_8b10b_lut; ------------------------------------------------------------------------------- -- Architecture ------------------------------------------------------------------------------- ARCHITECTURE xilinx OF decode_8b10b_lut IS ------------------------------------------------------------------------------- -- Begin Architecture ------------------------------------------------------------------------------- BEGIN ----Instantiate the first decoder (A decoder)-------------------------------- deca : entity work.decode_8b10b_lut_base GENERIC MAP ( C_HAS_CODE_ERR => C_HAS_CODE_ERR, C_HAS_DISP_ERR => C_HAS_DISP_ERR, C_HAS_DISP_IN => C_HAS_DISP_IN, C_HAS_ND => C_HAS_ND, C_HAS_SYM_DISP => C_HAS_SYM_DISP, C_HAS_RUN_DISP => C_HAS_RUN_DISP, C_SINIT_DOUT => C_SINIT_DOUT, C_SINIT_KOUT => C_SINIT_KOUT, C_SINIT_RUN_DISP => C_SINIT_RUN_DISP ) PORT MAP ( CLK => CLK, DIN => DIN, DOUT => DOUT, KOUT => KOUT, CE => CE, DISP_IN => DISP_IN, SINIT => SINIT, CODE_ERR => CODE_ERR, DISP_ERR => DISP_ERR, ND => ND, RUN_DISP => RUN_DISP, SYM_DISP => SYM_DISP ); gdecb : IF (C_HAS_BPORTS=1) GENERATE ----Instantiate second decoder (B decoder, only if bports are present)------ decb : entity work.decode_8b10b_lut_base GENERIC MAP ( C_HAS_CODE_ERR => C_HAS_CODE_ERR_B, C_HAS_DISP_ERR => C_HAS_DISP_ERR_B, C_HAS_DISP_IN => C_HAS_DISP_IN_B, C_HAS_ND => C_HAS_ND_B, C_HAS_SYM_DISP => C_HAS_SYM_DISP_B, C_HAS_RUN_DISP => C_HAS_RUN_DISP_B, C_SINIT_DOUT => C_SINIT_DOUT_B, C_SINIT_KOUT => C_SINIT_KOUT_B, C_SINIT_RUN_DISP => C_SINIT_RUN_DISP_B ) PORT MAP ( CLK => CLK_B, DIN => DIN_B, DOUT => DOUT_B, KOUT => KOUT_B, CE => CE_B, DISP_IN => DISP_IN_B, SINIT => SINIT_B, CODE_ERR => CODE_ERR_B, DISP_ERR => DISP_ERR_B, ND => ND_B, RUN_DISP => RUN_DISP_B, SYM_DISP => SYM_DISP_B ); END GENERATE gdecb; END xilinx ;
library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.NUMERIC_STD.all; library std; entity d5m is generic ( CLK_PROC_FREQ : integer; OUT_SIZE : integer ); port ( clk_proc : in std_logic; reset_n : in std_logic; --------------------- external ports -------------------- ccd_pixclk : in std_logic; ccd_data : in std_logic_vector(11 downto 0); ccd_xclkin : out std_logic; ccd_reset : out std_logic; ccd_trigger : out std_logic; ccd_lval : in std_logic; ccd_fval : in std_logic; i2c_sdata : inout std_logic; i2c_sclk : out std_logic; ------------------------ out flow ----------------------- out_data : out std_logic_vector(OUT_SIZE-1 downto 0); out_fv : out std_logic; out_dv : out std_logic; --======================= Slaves ======================== ------------------------- bus_sl ------------------------ addr_rel_i : in std_logic_vector(3 downto 0); wr_i : in std_logic; rd_i : in std_logic; datawr_i : in std_logic_vector(31 downto 0); datard_o : out std_logic_vector(31 downto 0) ); end d5m; architecture rtl of d5m is --/*D5M controller */-- component d5m_controller generic ( pixel_address_width : integer ); port ( clk : in std_logic; reset_n : in std_logic; ccd_trigger : out std_logic; ccd_xclkin : out std_logic; ccd_reset : out std_logic; ccd_data : in std_logic_vector(11 downto 0); ccd_fval : in std_logic; ccd_lval : in std_logic; ccd_pixclk : in std_logic; i2c_sclk : out std_logic; i_exposure_adj : in std_logic; i2c_sdata : inout std_logic; pix_address : out std_logic_vector(pixel_address_width-1 downto 0); oRed, oGreen, oBlue, data : out std_logic_vector(7 downto 0); dv, fv : out std_logic ); end component d5m_controller; signal status_reg_enable_bit : std_logic; signal pixel_address : std_logic_vector(31 downto 0) := (others => '0'); begin d5m_controller_inst : d5m_controller generic map ( pixel_address_width => 19 ) port map ( -- External I/Os clk => clk_proc, ccd_xclkin => ccd_xclkin, ccd_trigger => ccd_trigger, ccd_reset => ccd_reset, ccd_data => ccd_data, ccd_fval => ccd_fval, ccd_lval => ccd_lval, ccd_pixclk => ccd_pixclk, i_exposure_adj => '0', reset_n => reset_n, i2c_sclk => i2c_sclk, i2c_sdata => i2c_sdata, pix_address => pixel_address(18 downto 0), -- Output flow data => out_data, dv => out_dv, fv => out_fv ); end rtl;
-------------------------------------------------------------------------------- -- Author: Parham Alvani (parham.alvani@gmail.com) -- -- Create Date: 28-03-2016 -- Module Name: p9.vhd -------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; entity counter is generic (N : integer := 4); port (clk, reset : in std_logic; count : out std_logic_vector (N - 1 downto 0)); end entity; architecture behavioral of counter is begin process (clk, reset) variable count_buff : std_logic_vector (N - 1 downto 0) := (others => '0'); begin if clk'event and clk = '1' then count_buff := count_buff + '1'; count <= count_buff; end if; if reset = '1' then count_buff := (others => '0'); count <= count_buff; end if; end process; end architecture behavioral;
library ieee; use ieee.std_logic_1164.all; -- This is a simple test of the initialization assignment for -- signals. We also let a generic into the test. entity test is generic (width : integer := 4); port (clk : in std_logic; src0, src1 : in std_logic_vector (width-1 downto 0); dst : out std_logic_vector (width-1 downto 0)); end test; library ieee; use ieee.std_logic_1164.all; entity reg_xor is port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end reg_xor; architecture operation of test is component reg_xor port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end component; begin vec: for idx in width-1 downto 0 generate slice: reg_xor port map (clk => clk, src0 => src0(idx), src1 => src1(idx), dst => dst(idx)); end generate vec; end operation; architecture operation of reg_xor is signal tmp : std_logic; begin tmp <= src0 xor src1; step: process (clk) begin -- process step if clk'event and clk = '1' then -- rising clock edge dst <= tmp; end if; end process step; end operation;
library ieee; use ieee.std_logic_1164.all; -- This is a simple test of the initialization assignment for -- signals. We also let a generic into the test. entity test is generic (width : integer := 4); port (clk : in std_logic; src0, src1 : in std_logic_vector (width-1 downto 0); dst : out std_logic_vector (width-1 downto 0)); end test; library ieee; use ieee.std_logic_1164.all; entity reg_xor is port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end reg_xor; architecture operation of test is component reg_xor port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end component; begin vec: for idx in width-1 downto 0 generate slice: reg_xor port map (clk => clk, src0 => src0(idx), src1 => src1(idx), dst => dst(idx)); end generate vec; end operation; architecture operation of reg_xor is signal tmp : std_logic; begin tmp <= src0 xor src1; step: process (clk) begin -- process step if clk'event and clk = '1' then -- rising clock edge dst <= tmp; end if; end process step; end operation;
library ieee; use ieee.std_logic_1164.all; -- This is a simple test of the initialization assignment for -- signals. We also let a generic into the test. entity test is generic (width : integer := 4); port (clk : in std_logic; src0, src1 : in std_logic_vector (width-1 downto 0); dst : out std_logic_vector (width-1 downto 0)); end test; library ieee; use ieee.std_logic_1164.all; entity reg_xor is port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end reg_xor; architecture operation of test is component reg_xor port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end component; begin vec: for idx in width-1 downto 0 generate slice: reg_xor port map (clk => clk, src0 => src0(idx), src1 => src1(idx), dst => dst(idx)); end generate vec; end operation; architecture operation of reg_xor is signal tmp : std_logic; begin tmp <= src0 xor src1; step: process (clk) begin -- process step if clk'event and clk = '1' then -- rising clock edge dst <= tmp; end if; end process step; end operation;
library ieee; use ieee.std_logic_1164.all; -- This is a simple test of the initialization assignment for -- signals. We also let a generic into the test. entity test is generic (width : integer := 4); port (clk : in std_logic; src0, src1 : in std_logic_vector (width-1 downto 0); dst : out std_logic_vector (width-1 downto 0)); end test; library ieee; use ieee.std_logic_1164.all; entity reg_xor is port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end reg_xor; architecture operation of test is component reg_xor port (clk : in std_logic; src0, src1 : in std_logic; dst : out std_logic); end component; begin vec: for idx in width-1 downto 0 generate slice: reg_xor port map (clk => clk, src0 => src0(idx), src1 => src1(idx), dst => dst(idx)); end generate vec; end operation; architecture operation of reg_xor is signal tmp : std_logic; begin tmp <= src0 xor src1; step: process (clk) begin -- process step if clk'event and clk = '1' then -- rising clock edge dst <= tmp; end if; end process step; end operation;
-- Copyright 1986-2016 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2016.4 (win64) Build 1733598 Wed Dec 14 22:35:39 MST 2016 -- Date : Wed Mar 01 09:52:03 2017 -- Host : GILAMONSTER running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode funcsim -- C:/ZyboIP/examples/ov7670_fusion/ov7670_fusion.srcs/sources_1/bd/system/ip/system_inverter_2_0/system_inverter_2_0_sim_netlist.vhdl -- Design : system_inverter_2_0 -- Purpose : This VHDL netlist is a functional simulation representation of the design and should not be modified or -- synthesized. This netlist cannot be used for SDF annotated simulation. -- Device : xc7z010clg400-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; library UNISIM; use UNISIM.VCOMPONENTS.ALL; entity system_inverter_2_0 is port ( x : in STD_LOGIC; x_not : out STD_LOGIC ); attribute NotValidForBitStream : boolean; attribute NotValidForBitStream of system_inverter_2_0 : entity is true; attribute CHECK_LICENSE_TYPE : string; attribute CHECK_LICENSE_TYPE of system_inverter_2_0 : entity is "system_inverter_2_0,inverter,{}"; attribute downgradeipidentifiedwarnings : string; attribute downgradeipidentifiedwarnings of system_inverter_2_0 : entity is "yes"; attribute x_core_info : string; attribute x_core_info of system_inverter_2_0 : entity is "inverter,Vivado 2016.4"; end system_inverter_2_0; architecture STRUCTURE of system_inverter_2_0 is begin x_not_INST_0: unisim.vcomponents.LUT1 generic map( INIT => X"1" ) port map ( I0 => x, O => x_not ); end STRUCTURE;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc2216.vhd,v 1.2 2001-10-26 16:30:16 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c07s02b06x00p01n01i02216ent IS END c07s02b06x00p01n01i02216ent; ARCHITECTURE c07s02b06x00p01n01i02216arch OF c07s02b06x00p01n01i02216ent IS BEGIN TESTING: PROCESS variable k : integer; BEGIN k := '0' mod '2'; assert FALSE report "***FAILED TEST: c07s02b06x00p01n01i02216 - Operators mod and rem are predefined for any integer type only." severity ERROR; wait; END PROCESS TESTING; END c07s02b06x00p01n01i02216arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc2216.vhd,v 1.2 2001-10-26 16:30:16 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c07s02b06x00p01n01i02216ent IS END c07s02b06x00p01n01i02216ent; ARCHITECTURE c07s02b06x00p01n01i02216arch OF c07s02b06x00p01n01i02216ent IS BEGIN TESTING: PROCESS variable k : integer; BEGIN k := '0' mod '2'; assert FALSE report "***FAILED TEST: c07s02b06x00p01n01i02216 - Operators mod and rem are predefined for any integer type only." severity ERROR; wait; END PROCESS TESTING; END c07s02b06x00p01n01i02216arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc2216.vhd,v 1.2 2001-10-26 16:30:16 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c07s02b06x00p01n01i02216ent IS END c07s02b06x00p01n01i02216ent; ARCHITECTURE c07s02b06x00p01n01i02216arch OF c07s02b06x00p01n01i02216ent IS BEGIN TESTING: PROCESS variable k : integer; BEGIN k := '0' mod '2'; assert FALSE report "***FAILED TEST: c07s02b06x00p01n01i02216 - Operators mod and rem are predefined for any integer type only." severity ERROR; wait; END PROCESS TESTING; END c07s02b06x00p01n01i02216arch;
---------------------------------------------------------------------------------- -- Company: The Most Awesome Mad Scientist Ever -- Engineer: Rongcui Dong -- -- Create Date: -- Design Name: -- Module Name: cpu_top -- Project Name: -- Target Devices: -- Tool Versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values use IEEE.NUMERIC_STD.ALL; -- This module assembles the CPU core, MMU, register file, -- plus a very simple bootloader entity cpu_top is port( clk : in std_logic; resetb : in std_logic; -- Interface with boot ROM cpu_rom_addr : out unsigned(31 downto 0); cpu_rom_data : in std_logic_vector(31 downto 0); -- Interface with board boot_done : out std_logic ); end entity cpu_top; architecture syn of cpu_top is component CPUCore port ( clk : in std_logic; resetb : in std_logic; -- Interface with register file core_rf_en : out std_logic; core_rf_rs_a : out std_logic_vector(4 downto 0); core_rf_rs_d : in std_logic_vector(63 downto 0); core_rf_rt_a : out std_logic_vector(4 downto 0); core_rf_rt_d : in std_logic_vector(63 downto 0); core_rf_wb_we : out std_logic; core_rf_wb_a : out std_logic_vector(4 downto 0); core_rf_wb_d : out std_logic_vector(63 downto 0); -- Interface with MMU ---- Instruction Port core_mmu_we_i : out std_logic; core_mmu_en_i : out std_logic; core_mmu_addr_i : out std_logic_vector(31 downto 3); core_mmu_ben_i : out std_logic_vector(7 downto 0); core_mmu_di_i : out std_logic_vector(63 downto 0); core_mmu_do_i : in std_logic_vector(63 downto 0); ---- Data Port core_mmu_we_d : out std_logic; core_mmu_en_d : out std_logic; core_mmu_addr_d : out std_logic_vector(31 downto 3); core_mmu_ben_d : out std_logic_vector(7 downto 0); core_mmu_di_d : out std_logic_vector(63 downto 0); core_mmu_do_d : in std_logic_vector(63 downto 0) ); end component CPUCore; component MMU generic ( DEPTH_BANK : integer := 1024; DEPTH_LOG : integer := 10 ); port ( clk : in std_logic; resetb : in std_logic; -- Instruction Memory we_i : in std_logic; en_i : in std_logic; addr_i : in std_logic_vector(31 downto 3); ben_i : in std_logic_vector(7 downto 0); di_i : in std_logic_vector(63 downto 0); do_i : out std_logic_vector(63 downto 0); -- Data Memory we_d : in std_logic; en_d : in std_logic; addr_d : in std_logic_vector(31 downto 3); ben_d : in std_logic_vector(7 downto 0); di_d : in std_logic_vector(63 downto 0); do_d : out std_logic_vector(63 downto 0) ); end component MMU; component RegFile generic ( WIDTH : integer := 64; DEPTH : integer := 32; DEPTH_LOG : integer := 5 ); port ( clk : in std_logic; resetb : in std_logic; en : in std_logic; -- Read rs rs_a : in std_logic_vector(DEPTH_LOG-1 downto 0); rs_d : out std_logic_vector(WIDTH-1 downto 0); -- Read rt rt_a : in std_logic_vector(DEPTH_LOG-1 downto 0); rt_d : out std_logic_vector(WIDTH-1 downto 0); -- Write back wb_we : in std_logic; wb_a : in std_logic_vector(DEPTH_LOG-1 downto 0); wb_d : in std_logic_vector(WIDTH-1 downto 0) ); end component RegFile; signal core_resetb : std_logic; signal rf_en, rf_wb_we : std_logic; signal rf_rs_a, rf_rt_a, rf_wb_a : std_logic_vector(4 downto 0); signal rf_rs_d, rf_rt_d, rf_wb_d : std_logic_vector(63 downto 0); signal core_mmu_we_i, core_mmu_en_i, core_mmu_we_d, core_mmu_en_d : std_logic; signal core_mmu_addr_i, core_mmu_addr_d, boot_mmu_addr_i, mmu_addr_i, mmu_addr_d : std_logic_vector(31 downto 0); signal core_mmu_ben_i, core_mmu_ben_d, boot_mmu_ben_i, mmu_ben_i, mmu_ben_d : std_logic_vector(7 downto 0); signal core_mmu_di_i, core_mmu_do_i, core_mmu_di_d, core_mmu_do_d, boot_mmu_di_i, mmu_di_i, mmu_di_d, mmu_do_i, mmu_do_d : std_logic_vector(63 downto 0); signal boot_mmu_we_i, boot_mmu_en_i : std_logic; signal mmu_we_i, mmu_en_i, mmu_we_d, mmu_en_d : std_logic; signal boot_possibly_done, boot_done_temp, boot_second_word : std_logic; signal boot_addr : unsigned(31 downto 0); signal boot_wait_one_clock : std_logic; constant ZERO64 : std_logic_vector(63 downto 0) := (others => '0'); begin core : CPUCore port map ( clk=>clk, resetb=>core_resetb, core_rf_en=>rf_en, core_rf_rs_a=>rf_rs_a, core_rf_rs_d=>rf_rs_d, core_rf_rt_a=>rf_rt_a, core_rf_rt_d=>rf_rt_d, core_rf_wb_we=>rf_wb_we, core_rf_wb_a=>rf_wb_a, core_rf_wb_d=>rf_wb_d, core_mmu_we_i=>core_mmu_we_i, core_mmu_en_i=>core_mmu_en_i, core_mmu_addr_i=>core_mmu_addr_i(31 downto 3), core_mmu_ben_i=>core_mmu_ben_i, core_mmu_di_i=>core_mmu_di_i, core_mmu_do_i=>core_mmu_do_i, core_mmu_we_d=>core_mmu_we_d, core_mmu_en_d=>core_mmu_en_d, core_mmu_addr_d=>core_mmu_addr_d(31 downto 3), core_mmu_ben_d=>core_mmu_ben_d, core_mmu_di_d=>core_mmu_di_d, core_mmu_do_d=>core_mmu_do_d ); MMU0 : MMU port map ( clk=>clk, resetb=>resetb, we_i=>mmu_we_i, en_i=>mmu_en_i, addr_i=>mmu_addr_i(31 downto 3), ben_i=>mmu_ben_i, di_i=>mmu_di_i, do_i=>mmu_do_i, we_d=>mmu_we_d, en_d=>mmu_en_d, addr_d=>mmu_addr_d(31 downto 3), ben_d=>mmu_ben_d, di_d=>mmu_di_d, do_d=>mmu_do_d ); RegFile0 : Regfile port map ( clk=>clk, resetb=>resetb, en=>rf_en, rs_a=>rf_rs_a, rs_d=>rf_rs_d, rt_a=>rf_rt_a, rt_d=>rf_rt_d, wb_we=>rf_wb_we, wb_a=>rf_wb_a, wb_d=>rf_wb_d ); core_mmu_do_i <= mmu_do_i; core_mmu_do_d <= mmu_do_d; mmu_addr_i <= core_mmu_addr_i when boot_done_temp = '1' else boot_mmu_addr_i; mmu_addr_d <= core_mmu_addr_d; mmu_ben_i <= core_mmu_ben_i when boot_done_temp = '1' else boot_mmu_ben_i; mmu_ben_d <= core_mmu_ben_d; mmu_di_i <= core_mmu_di_i when boot_done_temp = '1' else boot_mmu_di_i; mmu_di_d <= core_mmu_di_d; core_mmu_do_d <= mmu_do_d; mmu_we_i <= core_mmu_we_i when boot_done_temp = '1' else boot_mmu_we_i; mmu_we_d <= core_mmu_we_d; mmu_en_i <= core_mmu_en_i when boot_done_temp = '1' else boot_mmu_en_i; mmu_en_d <= core_mmu_en_d; boot_done <= boot_done_temp; cpu_rom_addr <= boot_addr; boot_mmu_en_i <= '0' when boot_done_temp = '1' else '1'; boot_mmu_we_i <= '0' when boot_done_temp = '1' else '1'; -- boot_mmu_addr_i <= std_logic_vector(boot_addr); boot_loader : process (clk, resetb) begin if (resetb = '0') then core_resetb <= '0'; boot_done_temp <= '0'; boot_second_word <= '0'; boot_addr <= (others => '0'); boot_wait_one_clock <= '0'; boot_possibly_done <= '0'; elsif (clk'event and clk = '1') then if (boot_done_temp = '0' and boot_wait_one_clock = '0') then if (boot_mmu_di_i = ZERO64) then if (boot_possibly_done = '1') then boot_done_temp <= '1'; boot_wait_one_clock <= '1'; else boot_possibly_done <= '1'; end if; else boot_possibly_done <= '0'; end if; boot_addr <= boot_addr + 4; boot_mmu_addr_i <= std_logic_vector(boot_addr); -- Low word, then high word if (boot_addr(2) = '1') then boot_mmu_ben_i <= "00001111"; boot_mmu_di_i(63 downto 32) <= cpu_rom_data; else boot_mmu_ben_i <= "11110000"; boot_mmu_di_i(31 downto 0) <= cpu_rom_data; end if; elsif (boot_wait_one_clock = '1') then core_resetb <= '1'; end if; end if; end process boot_loader; end architecture syn;
entity test is type t is record end record; end;
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block lz3B4KHX5z7HJK6kHiZGMmcEnUqLtTRT/n7HdY7szClNEEBtVq2UQW/wdwwMN27AnOLZPVfuS67c Y2O4fk1xOw== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block OUoXLY9rVEqAKiJgtR19Q8FIQUm9wPmLFXF2sem6w9gJVRflCYIHWjOAqv6eppRvqeqcjaja3KKN iRxsDXzkmdVb18CNyYXYPgZU4MySqAPoAE8BZ3alC446EKqG5bo3Faah4iFiaQ2fsSYQDhznQFWV FIedseAJGSJjdgeT43M= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bHuGx6phwwi065A2gw0E1Tqc2OLDUoohEHY7mOoJcUQwvr9OEJ4yz01Uls3wx2UOc24N+ANXe8aM YdyfwspjYSBviz8nI/XUT5fPMjNbtL8HFChLorcX+K00Sc+A9m1I9+5W+Wd6GLSKBCVYKnWRn9Os rc68y/GTowadTW08aEEccqOavDD8XG+R6gQqGpi5C8xq75oqBRmE5yNpxpBXxQRz9mmAsJcZ773H BpObF8UUngkYlRzDjfxz3vzf6lVAPrLm55l1zEsel1LRtdqlRT8kBTrz1kke43v4c6xNv0u+i1Y0 dvxmNCEmLNrwBuVbcA8l6Jjp0k0WZScEgrEOCA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block 4sCk5d4E+rPjLUhUiUrzCNkXo2ztvWgfU4Ic3n3YDGHZzWC7cjzTKSJroiCXwtIaQEIL5FpdrGOo eHf9JlqikZvG/pLSpSZr6BTZioOpsjgI4CJq9n0wGhpyClKm24hGzYEPH8AkBs4wVmgt4sOHvyYc mYqTUQDFFlehrx6Wh0E= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block cjjanW9F+fseEMt2SDd6R3KYZVrfLHKeq8ULFHbP0E7BiwY4Vkec6zVJkc5FOAAhZdR5Ywc2FOnS jk9bJ37QuAeSdAcrSzysHiIJYxA3kbMVuIa63kiSn3dKlLmPc1gZ2/UtM3HTBff0RPQzxl944kH8 SUid8bQM/bx+7wxLnTLuo6uTok/+c8ipzvZZ5iJ9DgzZyHiiuOtKu8JWNRVw1P5d1QqQT3EZ7Q8j fnqcUNAmoR2w1hlmAhXTJgZbpiKUcMF+Y9/twpUzFl3rdEE6PKGzb5YQ/Re4uf+MJU96/KSTzmBR Xfe8WjI4zLk+NlEm8eNku5cgYGTA1pkwApl+6w== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 6304) `protect data_block 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 `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block lz3B4KHX5z7HJK6kHiZGMmcEnUqLtTRT/n7HdY7szClNEEBtVq2UQW/wdwwMN27AnOLZPVfuS67c Y2O4fk1xOw== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block OUoXLY9rVEqAKiJgtR19Q8FIQUm9wPmLFXF2sem6w9gJVRflCYIHWjOAqv6eppRvqeqcjaja3KKN iRxsDXzkmdVb18CNyYXYPgZU4MySqAPoAE8BZ3alC446EKqG5bo3Faah4iFiaQ2fsSYQDhznQFWV FIedseAJGSJjdgeT43M= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bHuGx6phwwi065A2gw0E1Tqc2OLDUoohEHY7mOoJcUQwvr9OEJ4yz01Uls3wx2UOc24N+ANXe8aM YdyfwspjYSBviz8nI/XUT5fPMjNbtL8HFChLorcX+K00Sc+A9m1I9+5W+Wd6GLSKBCVYKnWRn9Os rc68y/GTowadTW08aEEccqOavDD8XG+R6gQqGpi5C8xq75oqBRmE5yNpxpBXxQRz9mmAsJcZ773H BpObF8UUngkYlRzDjfxz3vzf6lVAPrLm55l1zEsel1LRtdqlRT8kBTrz1kke43v4c6xNv0u+i1Y0 dvxmNCEmLNrwBuVbcA8l6Jjp0k0WZScEgrEOCA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block 4sCk5d4E+rPjLUhUiUrzCNkXo2ztvWgfU4Ic3n3YDGHZzWC7cjzTKSJroiCXwtIaQEIL5FpdrGOo eHf9JlqikZvG/pLSpSZr6BTZioOpsjgI4CJq9n0wGhpyClKm24hGzYEPH8AkBs4wVmgt4sOHvyYc mYqTUQDFFlehrx6Wh0E= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block cjjanW9F+fseEMt2SDd6R3KYZVrfLHKeq8ULFHbP0E7BiwY4Vkec6zVJkc5FOAAhZdR5Ywc2FOnS jk9bJ37QuAeSdAcrSzysHiIJYxA3kbMVuIa63kiSn3dKlLmPc1gZ2/UtM3HTBff0RPQzxl944kH8 SUid8bQM/bx+7wxLnTLuo6uTok/+c8ipzvZZ5iJ9DgzZyHiiuOtKu8JWNRVw1P5d1QqQT3EZ7Q8j fnqcUNAmoR2w1hlmAhXTJgZbpiKUcMF+Y9/twpUzFl3rdEE6PKGzb5YQ/Re4uf+MJU96/KSTzmBR Xfe8WjI4zLk+NlEm8eNku5cgYGTA1pkwApl+6w== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 6304) `protect data_block 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 `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block lz3B4KHX5z7HJK6kHiZGMmcEnUqLtTRT/n7HdY7szClNEEBtVq2UQW/wdwwMN27AnOLZPVfuS67c Y2O4fk1xOw== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block OUoXLY9rVEqAKiJgtR19Q8FIQUm9wPmLFXF2sem6w9gJVRflCYIHWjOAqv6eppRvqeqcjaja3KKN iRxsDXzkmdVb18CNyYXYPgZU4MySqAPoAE8BZ3alC446EKqG5bo3Faah4iFiaQ2fsSYQDhznQFWV FIedseAJGSJjdgeT43M= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bHuGx6phwwi065A2gw0E1Tqc2OLDUoohEHY7mOoJcUQwvr9OEJ4yz01Uls3wx2UOc24N+ANXe8aM YdyfwspjYSBviz8nI/XUT5fPMjNbtL8HFChLorcX+K00Sc+A9m1I9+5W+Wd6GLSKBCVYKnWRn9Os rc68y/GTowadTW08aEEccqOavDD8XG+R6gQqGpi5C8xq75oqBRmE5yNpxpBXxQRz9mmAsJcZ773H BpObF8UUngkYlRzDjfxz3vzf6lVAPrLm55l1zEsel1LRtdqlRT8kBTrz1kke43v4c6xNv0u+i1Y0 dvxmNCEmLNrwBuVbcA8l6Jjp0k0WZScEgrEOCA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block 4sCk5d4E+rPjLUhUiUrzCNkXo2ztvWgfU4Ic3n3YDGHZzWC7cjzTKSJroiCXwtIaQEIL5FpdrGOo eHf9JlqikZvG/pLSpSZr6BTZioOpsjgI4CJq9n0wGhpyClKm24hGzYEPH8AkBs4wVmgt4sOHvyYc mYqTUQDFFlehrx6Wh0E= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block cjjanW9F+fseEMt2SDd6R3KYZVrfLHKeq8ULFHbP0E7BiwY4Vkec6zVJkc5FOAAhZdR5Ywc2FOnS jk9bJ37QuAeSdAcrSzysHiIJYxA3kbMVuIa63kiSn3dKlLmPc1gZ2/UtM3HTBff0RPQzxl944kH8 SUid8bQM/bx+7wxLnTLuo6uTok/+c8ipzvZZ5iJ9DgzZyHiiuOtKu8JWNRVw1P5d1QqQT3EZ7Q8j fnqcUNAmoR2w1hlmAhXTJgZbpiKUcMF+Y9/twpUzFl3rdEE6PKGzb5YQ/Re4uf+MJU96/KSTzmBR Xfe8WjI4zLk+NlEm8eNku5cgYGTA1pkwApl+6w== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 6304) `protect data_block PKlpisMKFINH4hoELw81Ae+vpIr0xr/BIQZISQh02QmAYRngfWchi+A+2gXJ0ErM+PWm3fbvLHaf UADT/opvnHMCrmwuOuQX48J/a1y0sztlHgsA7XTu3se9+qgRV127kbtAyBeA6eaiyAy+4B81Hnvr iAh0JDvLp7NSQW0lbcIRuBG/192VO83+S0O41kKG1SaE4uICGpv+bvWkk6CgydXtasIvchDvp4dK of6eSL5HebZ8eTtAMZ5PDvKJ2Ue0Be+iqTPh9TdNWoNpcbWZhZRo5EOCi0cDOSw2jNPLiyit/2Co Oa2jf4Dq+HDtFn903XEdm66Ank4FdRu2JfNHnOla7mIVSTQ22279B9zeNdEFFsvacH35WGdwIn+R zVP69CCwCOnzCkWuZxobFCqynlMOguiGITQtamD+mPA1Px+jKnRgm83bQZ6D+6RCfYN1/5M6jAou Q/ijS2pM8j5YFnjNMs8JDfsKFjmRrhSJN/UAklCGmwnDqvBXVwCj4byQHwEomIhha/kumn3ahyqh RNmZ51p9saVpLBQz2zm6RtIS4DaO3zxDFuKOBxdsP9khvWbjjj+xSZE9gTtvXfgW9Dgi3j4Wo6w8 ugi7AbZrrBECs/w7m8QiS7cCO+pG9OBDC8UNoVA0ac9TbwX9UaFrXd7g9JYRu5g1mu62PynLHaDG rIWRs+uTLvIFbovp6MRGL2SKdsg7ISSCYN2NKum6QL4MQEfcimjZlPtE+VkbbOuHonO9vI6vyzM4 8CjqYG0V0PXEeK7rpt324iN15bjrjg+owf0arEg5wvQfHIPAKel9Z9Yq92E0XabGaUc/46n2pG4+ c5MC/YjeM8FEuCjZCd2E6sDOL+AA2f+Vp5sZPaIPJ3w6lZ6dsfAuS71mDkENg0wbS510p+PAw1S6 iOXaJRGM7bH9ObDK1PlKGlFnoFZ+QgvdREwjLRbUxtqd5EiAnhsPO3TzMnqYLhOqbKujg3vd7+1v eRY3dVocy5ZrNFKTzlaZ8faNA1I5jv+yZqTzX8PXV+jqis8ofyYXmzhqgQOXOw6RpWDCkIe0xHml tsJu0VmvA8oIa+fWpo9YLuOGF3GOK5SRBxkscEy4abrLk0BPBQC3JVj4Mp6fc1Ipm/8munucstUq RGQ8tBi/yXcCisK8tOfhryVZGLw9qyc7xvkCLivZGezeGaG9hB+IJktQ92LsyePCpUvu7Nytau/D UoEG6o9/s3/4ZdVHv9ZUhOW249Gco2rk8Iyd0gIP4ijDrfMcMIB6NauowoEDg+eEY+nEdaNQ5t6c FUxC+CDRNTtbQlqmwKlhNeql6C3f2UySbnmzAB2ItHF8nBkAa94R4vVGGhWPwPSMPrMf4tYi5OUB EOxjy2j17g4JZRE5xvVAtkor4yy+yArlT7+lCDcmbFFB4Xg/wo+GljeikDTt4U2FAju4j3Bl+vrm f275DA+1afSeR0frG6ilsG+3dBrZHPTj3DsJU6xz/jaZRFF4Mddlhc9+OmRl32eKaiz2eykL76Z0 vrVH9e/uTbcz5HU8JiUlKnCiIG7WpeIP0a7z+/1KSKc5CLWWoQmqeLYaEabMoqGblBP4YtON5Rfe 5RzJv1tZwDOPNEyQGwlhwY9A17fs1TdOMMvA4rdnXbmpSulLymD6mPH6V5eXy8EDTOeLV8eDWzrU LtkDWtmPX66fwEChoJcSleBZfEpGiapkw9k30YiQOQDL2wpPlunfqGMpaA+GULwr2rksyasvt/pI ezpSyeVcHp0L8Rm+fqxkbWCwwmbQAe8AfzHyjUNNKfAZ2rE490EFMN62rQkURUN7qNNbMYU/AkKt uxL2eWbpMPkY+k24fw4lM/lpBcg5oClwDd76f8cGXixCp44FeZUwqM7KHKKDGgSahjkPjXe3UGvs Jsb0vaS9gCKdHSx77RghzszO/yZEtqaRBN7foDp4PjlNiGfOPEgNmTFbK1egV/hfEU0CbS7/IhVC 4byuMsoy9P70u/2SEVn4QD+NtywoSzkoQj8fYyjLRWOgelyDVfJnhrE7p6JNHJw2MDy41kkMRkm7 IyMUkFZL0irJ5hhPK630SLBy1z7wwAoUAh4zRQ9CQXfqa9Od7zaPHijt8S0kkueSptzEvJ4EjhOY AnmfjOV0W/96oeVhJOwlZSDFOP7uP5jhYLteWxpnfshLxwPkjSwaAUZyz3VdE3I0CArvG3GXfFs5 WPH3+GBRSJ0+2kAP9o1NyIIp9NUGQgBFsle2Ocp69T6gRt78IDkQPc/ZZ9aXd2hSXQcmQOPGlvSq 2yTTIdVAVS5r3lIofzDaOen1UStAgcD42mgZB2O1HI8gveBLU7V+awl24rFisaK2psoni7pgOGRG OYwl/PMvzkApAdeuv2qjAReP4g+EZSNY4He5/z6hfa6fDfi0abtQ9viFVovvGw8a9t8Ly1F1Ipc1 BYczg6/5EcB2R5tSEdhu9UDolhhqBp4ofpmqjE0CdSwjE9+TYcllfwbDncrzNrw3CpLB6BwAVbqa 7/iDVamhUg97y+p50ZWPmM1aoND3qlTYf7gqYTw4sy0OL7oGA0Kd5VeOT8OaGYLmnKPZUm9rE9oy tETGp0GDsqdMWc26tduy3rrG/GuZNyWCKz5R5y84dyKcVO3zSJhixDP48z0f6xlIgx0pWtpfYjqL MYe/qlu6+hE8Hf/YoZB+CZkXCtYIQJhpgMtDF6jT/Q8SHSkmjV1iKeOUwtSjn4/HGFnh7aldepcP WoAxQrIq4sgq/KBzSEZaJwY/twXdkZLORHieJJy0JtDzaCvqF3xqMOUyWaTEkeSG0Gz+TLNC/MQC aLDcgdu7W5slZl1mFrNWmrnXxgDUzZfflNmMkPgfGELJUMHs9K3B4TRn7GZdm6jua2sB33hsvOhT uvtmfGK00R7ycY5RDEeHQa50fY9NtPyB1YHVumuR66akpYOIV5iVIcvS7TfSkBSOEyAvsZzE6v8S MoLRGZHUfcdV0a4fW7io5dWZf5HRRv58UjZNq0qJ/I6zWZRG+K5fH4TtPx/qZEOKV1muVRZ2oUE6 L43YM+F3QZYV9tL51lR121zGh9ADZBHsMontC8PxxMctR1/biqtYRsxrdeuWXvDz1GBDy58VlkxS 9caO4a37FNUjLEq92dsGMd7LV9hOURxHWnrgpW6ElhKO62tcbNQfmG3xTF6OmYoRliUBGLcbhQNc rCIPUSOsP0jOKTzSJGcb6juF2vFxQBRamvY68pYjvu+r2mfghKt3MN+uhB2CvmYovNVfEbYHv6vX qiG6FvjeQxFZNYWZGrw3dmsYtj1XbyWKuhIUyAOAQEUpC62kFBDlQQHj2MDjixqt5Xy0mNvkxlec 8xUktbTPqo9louSV1GzTbKABrXSSHhGkuJtyZri818Okn//eZaRQ1RyEO0wfoF4z1vmqD+Agd++m PiV4yU1V+SajWeZjIGElVAtRoTErqsnU7Mfzs6r44cqilita0VH/UGMM5VzNeiCdcV5Px9Se3pQT 4KXwJLFIY5HviMHPXOfqlBnFcdfVwTnpPWOfnchsmj1NihR+J0wMHjU12TtJuScGWmW25WgSEEQt SbdLU5ZJ9oQeDB8gf7k9ioFyBzf+lxT0Wcj05E0QN8I2HYBBu5VBoqMD42y9gSXhNqdg/MKJnLrO dz7iZr8C7W2//UoS2wvIdQCWG+G5PG2nV2Vr91bsfHqrkqbhT3a2yDMUbkn48bTybV1+W9Qd2aGm TI4rMhYatFGCougrjjeVZXtgyA07g4YdC8waiPTJZwSU3LSLyh0efZxC/hRs85wOSMs2hkpML41A TBe3yRWdwqj5eWmNxQQtaiKAtRqQyXIW3DB4Ztv4LMCX6u/8+i2w2dgx2DC0zF9skHXAVz3CtPjG bPURDMwAt4snDBdueNiBHAlQjaW4NoQFdJCxTAfOf6fxNkCZw9m6QLWgdw9zITlIc03YnWk3JwNk dRffgp56GlC+7BRONLv0v3GHK3XnWM4/d2xWGZexqFPMGjmqfZgmDhqTPEDfoDv8e62Wj4Imnt6s sxuRTACo7zZBqOURMQQv0ZqoP5eHI3fh7kBHHBKr6+6gegwkl5SSCunO81WiNWy1VYSd6qtvINpS kSH8BApqIiPttMPCQC3Srv7NFdep9nBnRYKH5YSHT6G60FTyJjsx/7w9ZPHCvzK6beRCZC/YDJzY UsWZIOErNJ9tu0/6fuKVE3+I3agCC2AGyEr2TmQN+j1u6gp0bgtdXwow+NRZaP0xTvQcbOT6yUWC imrJxYqucKaqvg3eyZD9pn6capWd0/N3pjECyMNiorwHKx8uFQbp8nrepoLVgbfmd8sOmZA7c/cZ t4Qdi44SYWpegYlg5FE/DgtEteVE+iZepWc+T+XbydrYoKy0V9KmF09snAW0ct+snAriTwUFtalq 2Cl/GHpVZ/pMJ8Y+bksniAGOyDB8Govp7e9E0eQxIYn1h7OvzYY+RPYsutNYpqiQP8xclvs6oMlk Gd29W9dL5dzRV3NdbqljxTyOgh7Fm2du1Vos+eFikTG0aiAVsv80jKK7hxwvaDsTkDnwWW+91n7h rDTWxlq4iq1h+jkcQ3gH7vcRwY5895vpAOyKg3O/gj4NOm166cPSWLJygWbVjYAXzqnOInDyT2zF lsw4wLcSjZk8+ed2Z1HZ4p0czBq6cDaIsp7nS05ivfEqtprwPFVVB6sJVwKt5miuO+yP1zqaFgbz w9l1ITCTfZmRuQ0zSIjUDrHUR5+XJkICyv6op7oOShZ1byemnsfSlbGK4qM1JlwVoQYYXSoQwhzg hDgRAyOw7+PYBoXwUWSZ4Ay5YL6rWyWymVFDMnYnBo505SmZoF+htS85Q/MiSWB7FoUYy6LXm2C3 T0Ov+vBwvRlXWqZ645gVHLFqAavwOKBHwdXsmq6HNKGHoQSsaH8fQyf0eET/fIxaGOxV1SuXCNN3 728G8U3pNArYGDqxLjIJRSDalbfckM+gj10wD5+YUlvIL846E6N5NZmq5atnQT3iguOvdKT1kdgc 10Lxaft/9bkEBduG4/TezrTZwJ1qNE1Y5ysWgXBTUocUx3mpKFWLyuh8gQqafcWI4RWm/lel3XXK 1X0pH/dsJyKBd8oPp9LU7394r7Z/suAIRi+4XOsX9/CKyqjq7IIBlO5X/PxtB7RtlGMCg5V6CLe4 4jrgJ9DIaxueuu2IoyDM6fxK5EUF/q3PuLkp94h2Y0gnSx1yCDpzuj4PZld+D95W+iKF08wQArsO 3YwpLBuYMebZLeqNiMs0YaLmtvnnKl3IkLhoRGS/c8c5lcTwqnmvbBr+MTWG6GgeUmiUmC2mQNmJ ZX20VEKJiEhqrOcQM4r0XnHY97jo35oIBiByZ74uHn/rB1lBLU6CIHHwTa1CJcfRIUYLbTK/SYKY e1bTwgnkEuYP5mRkT18JFRWt4NGU/v3g5/r0Vt84nJZB1HIJo3I+9EjrjG8jCs2Y9pgOW8lK5IG/ w5Z4YO2ztBLV9MklhyUi8aPtPFAZjDj41YTp+A4uBmb+PnMZS/0wSi+iAF0+j2wMOrNcs9e9TmNO wmYDB5YjG5xhgsBqx4hwsZPDDjoUq/ieBj0q4S8Otzsfxtrq4FeKHz4ci25yLGIysSH1c2+dii+3 erD0e8+90ydvgDFHkJ6yeAav0PExRK0hIeeMwMUZgPB7plCVSNRCz11+SWf3TpUVSTfUnE5fr/VY 7A3RjtxrltxH1adm7vBh0wlAnysWSEYS5R4BYGBnsyhSI0JtNyp/7EKVp3NuucIPA4bavgBPKUgw cOJiAs0PbvFe/umSi0Cr4Kn/4JfAcTfU4qN8RJwLIFMIBWtIHGwIWq/YOjnUrEnJ4DQdhBA+Comk dHDvr2FhJJknfo8NFePPTXB96bRLsroHYWBdcKTQzx2thVCumHB6ISt9LLE2fZAz7y+D/BalyOFZ nX0rVcObymIm185bd1WQJ0/PBvpaLTKshk6/r8ip4dadK/64FO49fz2UrQKrD1jlHgb+KVKoBO6D fkI9aN+dtwhtNImeGnj1hL1ALPMlLD3zOHhTmYv3a5sJNb/oz1SZ0D5bjR51iYUbxufC2WEm/oOw o8ZdDj/oBFxXxuNJ3jwY8lgoZ7bdOaY4Cy4dGIexvWSGqZl9pbHc8zg5dOfcVVjlr8orf3WG44Iy 8xsKVfJgvxm3ZqR2lfk+76Vk/lwHSukpOX4CC6WRmLob7qvIf907lKVRjwmv8TVxy8/LaiLhow/z Gn3npFp/1N+CRQw1F1NtdTkmEqAYD3d1jGy9d65xzoiIRElOOkM2P8eA03kgn2vJuF22wER+QsKn uU4IHCSGguo13UM5+IccgJ3hIy4ORGbVddDllmLk/b/qupVyOMQvBrUW+ADmd7g44kAglbifanWZ WHV+MpWQyOjgTGNYHHVdBaCDHy7F8HZHWeCibkbo9i0f3nQ8XtpNDLoxLkaKcSUEsqL0doGVothZ DtIJuYuct7X6CovJ5NzzwCQQexfN/WRs7ZPcaR4Utjt8AaH+77tWmxhpmU8glirYkJvvA48dOq7y /l4QNH+2k/CW4Y/pPMZQgBvYD5vsE6cGBDaXvz8yjWexK3kJgXskEshrbqujsAvogtUOjt/GWqBG YYzcbC25MjizIIkVsyYcac8uxinmVpcEk9xAhzML5+RKJbRSIkTO0QhvVtAskD6LGIZ80Z/XPLRS hNVWZCALOgboycNNs61pBqIcpg7RGjkb6YYqNXcr+uGkrWDbzICfNdHDR2aN9VQ1gXdrDJfam2IN YRZRRDb9W5aa79JufCACzOx3IiyZgYkVdqbA/6C6jz5mynHglYJ30pLveUqlfuXqo3i3Z7ohnaoM 9VgZHiArgP4ynbRjEzGW6NXYBoJJ47vCj9GN7BClTHUzal3HsXd7s/atO/rDpkd1+JLGVtaVAxc4 oItlEQMpUy/2/cetYbTYLRzYMWFQpKohE+SvqBRdmmGC391dhBw5jM/YeiP830d1Pae70TBF9w83 og+14vn5cIvbxcgOe2aPQW/xpR7cyGX+2PBqkbGdJWocDhLOmZ/cgPbWFinY9+THQ3KwdeWEmGrz VejCKEkRw7PPA80ExYGJtlRet0EpZFNCFcAKSt6R+hlEORgQeSsPAHGM0whmzRLri0/DcFHSy3rF SJZS/5a8j9Ko4iNU+40So1NuKObSaAnh9c5ztFsFBzdAXuCR/AD2tw6BUc3MyIHJ7zmVIpooui4+ bP/zH350kVbCHoTYRuRiWBbOGjfI2g+WuClCWP60K4juILHKIzc8RXeNDXQmnEZHEyXjtuKVxEdx Aw9jGYObTYjKpB3MpqAAmSdEg4C4KbE2QHUhciJ1av0LWnrMtk+HvDln1SkGM0u6konHcPL08nYk g/11agLVcF3+BdBm4IWVSD0uYE7zoAWA+oEWx7w+X9oUlq8QdAIHfWKJdVuU/fSUe0hOCwNdSrZS lii85tBlat2AYUaYAZMQHWs0JBUgWsht9URH8wtv/BomIuO3cHLQC/vIPODahWdxJid1ce4uFnsQ qukicJI4Hjzb+aEmzyEFdC/E0CgxhECoRPySXoYG+piItjFxqgRro5g7w0hqiT8ApyERR/58Kk6B +phTBF0jC5n0v2R/pjjQ/r6iVeUfYTdM9lJBdZCRKoeTz0k0b+d+bw2HzWLAidQMYeTnidFW52SY zriuWS1yKwnenKF5v6Cai/3D3Gg3Vo5GdAGSVo0D3rgpLwcfQ2tTASOWvyEajRrG7a6azNDx7ext g80+km97s22RwHlXHZBtej2HnPzkBtLhSkyUHx6va1VGsRUJGthlfiQeYsHrOy6/g+g5XfP7qxkM kf2IUQHNWA9lDrqCM6wOuouWwAH8W++iTUVeVbHyhKIZVDgV8c3Dy9sRtsgD+hLN5cPNEG5zeFM5 7atzSf33U+kBMrbKG4Rp/fj6ZZkRNHyDutyOSkhu4J9Qj1BwYzcOWD6EJqVcWeYVtQjyJBXog69z WIF8sefzVO9NtidGf+uFuBneHtR/g/84OSBj811Vml/M03QH3nY+k3iVgcAQJUoN6thpBKzA6i6Q vKCD2Oq7+bziRJa8WQITEUc5dTycCsd4fJ6Kytnw0upepDm1j4ZOujG2Z4RRvBsAm0ztycFhxjhX LGztYTzg38K16PIzZhEoHyTp7DrxLl7+8dsUCH8xl8izh8OT/nxvYG3mM8/irzcz4mHlHSkhVn9/ Pk6qsC7W73pFhaOTYrg8Hulot6xaIbb0imbJeWIIruOcdCCUmAGSiHjNS33iVXr2GZ6loOMw4//N ifnVh/YVpNsh1j2qp8wW6L/bgu6oV4sBs9CGC/oqBzFio81UBuzaQavhtD9kjVSZiP1ciRBZpTEw Ytcxc46ZTVPmsLQe3McokretVU1RyILH9oIt7C8tQ5/YLQ== `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block lz3B4KHX5z7HJK6kHiZGMmcEnUqLtTRT/n7HdY7szClNEEBtVq2UQW/wdwwMN27AnOLZPVfuS67c Y2O4fk1xOw== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block OUoXLY9rVEqAKiJgtR19Q8FIQUm9wPmLFXF2sem6w9gJVRflCYIHWjOAqv6eppRvqeqcjaja3KKN iRxsDXzkmdVb18CNyYXYPgZU4MySqAPoAE8BZ3alC446EKqG5bo3Faah4iFiaQ2fsSYQDhznQFWV FIedseAJGSJjdgeT43M= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bHuGx6phwwi065A2gw0E1Tqc2OLDUoohEHY7mOoJcUQwvr9OEJ4yz01Uls3wx2UOc24N+ANXe8aM YdyfwspjYSBviz8nI/XUT5fPMjNbtL8HFChLorcX+K00Sc+A9m1I9+5W+Wd6GLSKBCVYKnWRn9Os rc68y/GTowadTW08aEEccqOavDD8XG+R6gQqGpi5C8xq75oqBRmE5yNpxpBXxQRz9mmAsJcZ773H BpObF8UUngkYlRzDjfxz3vzf6lVAPrLm55l1zEsel1LRtdqlRT8kBTrz1kke43v4c6xNv0u+i1Y0 dvxmNCEmLNrwBuVbcA8l6Jjp0k0WZScEgrEOCA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block 4sCk5d4E+rPjLUhUiUrzCNkXo2ztvWgfU4Ic3n3YDGHZzWC7cjzTKSJroiCXwtIaQEIL5FpdrGOo eHf9JlqikZvG/pLSpSZr6BTZioOpsjgI4CJq9n0wGhpyClKm24hGzYEPH8AkBs4wVmgt4sOHvyYc mYqTUQDFFlehrx6Wh0E= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block cjjanW9F+fseEMt2SDd6R3KYZVrfLHKeq8ULFHbP0E7BiwY4Vkec6zVJkc5FOAAhZdR5Ywc2FOnS jk9bJ37QuAeSdAcrSzysHiIJYxA3kbMVuIa63kiSn3dKlLmPc1gZ2/UtM3HTBff0RPQzxl944kH8 SUid8bQM/bx+7wxLnTLuo6uTok/+c8ipzvZZ5iJ9DgzZyHiiuOtKu8JWNRVw1P5d1QqQT3EZ7Q8j fnqcUNAmoR2w1hlmAhXTJgZbpiKUcMF+Y9/twpUzFl3rdEE6PKGzb5YQ/Re4uf+MJU96/KSTzmBR Xfe8WjI4zLk+NlEm8eNku5cgYGTA1pkwApl+6w== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 6304) `protect data_block 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 `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block lz3B4KHX5z7HJK6kHiZGMmcEnUqLtTRT/n7HdY7szClNEEBtVq2UQW/wdwwMN27AnOLZPVfuS67c Y2O4fk1xOw== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block OUoXLY9rVEqAKiJgtR19Q8FIQUm9wPmLFXF2sem6w9gJVRflCYIHWjOAqv6eppRvqeqcjaja3KKN iRxsDXzkmdVb18CNyYXYPgZU4MySqAPoAE8BZ3alC446EKqG5bo3Faah4iFiaQ2fsSYQDhznQFWV FIedseAJGSJjdgeT43M= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bHuGx6phwwi065A2gw0E1Tqc2OLDUoohEHY7mOoJcUQwvr9OEJ4yz01Uls3wx2UOc24N+ANXe8aM YdyfwspjYSBviz8nI/XUT5fPMjNbtL8HFChLorcX+K00Sc+A9m1I9+5W+Wd6GLSKBCVYKnWRn9Os rc68y/GTowadTW08aEEccqOavDD8XG+R6gQqGpi5C8xq75oqBRmE5yNpxpBXxQRz9mmAsJcZ773H BpObF8UUngkYlRzDjfxz3vzf6lVAPrLm55l1zEsel1LRtdqlRT8kBTrz1kke43v4c6xNv0u+i1Y0 dvxmNCEmLNrwBuVbcA8l6Jjp0k0WZScEgrEOCA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block 4sCk5d4E+rPjLUhUiUrzCNkXo2ztvWgfU4Ic3n3YDGHZzWC7cjzTKSJroiCXwtIaQEIL5FpdrGOo eHf9JlqikZvG/pLSpSZr6BTZioOpsjgI4CJq9n0wGhpyClKm24hGzYEPH8AkBs4wVmgt4sOHvyYc mYqTUQDFFlehrx6Wh0E= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block cjjanW9F+fseEMt2SDd6R3KYZVrfLHKeq8ULFHbP0E7BiwY4Vkec6zVJkc5FOAAhZdR5Ywc2FOnS jk9bJ37QuAeSdAcrSzysHiIJYxA3kbMVuIa63kiSn3dKlLmPc1gZ2/UtM3HTBff0RPQzxl944kH8 SUid8bQM/bx+7wxLnTLuo6uTok/+c8ipzvZZ5iJ9DgzZyHiiuOtKu8JWNRVw1P5d1QqQT3EZ7Q8j fnqcUNAmoR2w1hlmAhXTJgZbpiKUcMF+Y9/twpUzFl3rdEE6PKGzb5YQ/Re4uf+MJU96/KSTzmBR Xfe8WjI4zLk+NlEm8eNku5cgYGTA1pkwApl+6w== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 6304) `protect data_block PKlpisMKFINH4hoELw81Ae+vpIr0xr/BIQZISQh02QmAYRngfWchi+A+2gXJ0ErM+PWm3fbvLHaf UADT/opvnHMCrmwuOuQX48J/a1y0sztlHgsA7XTu3se9+qgRV127kbtAyBeA6eaiyAy+4B81Hnvr iAh0JDvLp7NSQW0lbcIRuBG/192VO83+S0O41kKG1SaE4uICGpv+bvWkk6CgydXtasIvchDvp4dK of6eSL5HebZ8eTtAMZ5PDvKJ2Ue0Be+iqTPh9TdNWoNpcbWZhZRo5EOCi0cDOSw2jNPLiyit/2Co Oa2jf4Dq+HDtFn903XEdm66Ank4FdRu2JfNHnOla7mIVSTQ22279B9zeNdEFFsvacH35WGdwIn+R zVP69CCwCOnzCkWuZxobFCqynlMOguiGITQtamD+mPA1Px+jKnRgm83bQZ6D+6RCfYN1/5M6jAou Q/ijS2pM8j5YFnjNMs8JDfsKFjmRrhSJN/UAklCGmwnDqvBXVwCj4byQHwEomIhha/kumn3ahyqh RNmZ51p9saVpLBQz2zm6RtIS4DaO3zxDFuKOBxdsP9khvWbjjj+xSZE9gTtvXfgW9Dgi3j4Wo6w8 ugi7AbZrrBECs/w7m8QiS7cCO+pG9OBDC8UNoVA0ac9TbwX9UaFrXd7g9JYRu5g1mu62PynLHaDG rIWRs+uTLvIFbovp6MRGL2SKdsg7ISSCYN2NKum6QL4MQEfcimjZlPtE+VkbbOuHonO9vI6vyzM4 8CjqYG0V0PXEeK7rpt324iN15bjrjg+owf0arEg5wvQfHIPAKel9Z9Yq92E0XabGaUc/46n2pG4+ c5MC/YjeM8FEuCjZCd2E6sDOL+AA2f+Vp5sZPaIPJ3w6lZ6dsfAuS71mDkENg0wbS510p+PAw1S6 iOXaJRGM7bH9ObDK1PlKGlFnoFZ+QgvdREwjLRbUxtqd5EiAnhsPO3TzMnqYLhOqbKujg3vd7+1v eRY3dVocy5ZrNFKTzlaZ8faNA1I5jv+yZqTzX8PXV+jqis8ofyYXmzhqgQOXOw6RpWDCkIe0xHml tsJu0VmvA8oIa+fWpo9YLuOGF3GOK5SRBxkscEy4abrLk0BPBQC3JVj4Mp6fc1Ipm/8munucstUq RGQ8tBi/yXcCisK8tOfhryVZGLw9qyc7xvkCLivZGezeGaG9hB+IJktQ92LsyePCpUvu7Nytau/D UoEG6o9/s3/4ZdVHv9ZUhOW249Gco2rk8Iyd0gIP4ijDrfMcMIB6NauowoEDg+eEY+nEdaNQ5t6c FUxC+CDRNTtbQlqmwKlhNeql6C3f2UySbnmzAB2ItHF8nBkAa94R4vVGGhWPwPSMPrMf4tYi5OUB EOxjy2j17g4JZRE5xvVAtkor4yy+yArlT7+lCDcmbFFB4Xg/wo+GljeikDTt4U2FAju4j3Bl+vrm f275DA+1afSeR0frG6ilsG+3dBrZHPTj3DsJU6xz/jaZRFF4Mddlhc9+OmRl32eKaiz2eykL76Z0 vrVH9e/uTbcz5HU8JiUlKnCiIG7WpeIP0a7z+/1KSKc5CLWWoQmqeLYaEabMoqGblBP4YtON5Rfe 5RzJv1tZwDOPNEyQGwlhwY9A17fs1TdOMMvA4rdnXbmpSulLymD6mPH6V5eXy8EDTOeLV8eDWzrU LtkDWtmPX66fwEChoJcSleBZfEpGiapkw9k30YiQOQDL2wpPlunfqGMpaA+GULwr2rksyasvt/pI ezpSyeVcHp0L8Rm+fqxkbWCwwmbQAe8AfzHyjUNNKfAZ2rE490EFMN62rQkURUN7qNNbMYU/AkKt uxL2eWbpMPkY+k24fw4lM/lpBcg5oClwDd76f8cGXixCp44FeZUwqM7KHKKDGgSahjkPjXe3UGvs Jsb0vaS9gCKdHSx77RghzszO/yZEtqaRBN7foDp4PjlNiGfOPEgNmTFbK1egV/hfEU0CbS7/IhVC 4byuMsoy9P70u/2SEVn4QD+NtywoSzkoQj8fYyjLRWOgelyDVfJnhrE7p6JNHJw2MDy41kkMRkm7 IyMUkFZL0irJ5hhPK630SLBy1z7wwAoUAh4zRQ9CQXfqa9Od7zaPHijt8S0kkueSptzEvJ4EjhOY AnmfjOV0W/96oeVhJOwlZSDFOP7uP5jhYLteWxpnfshLxwPkjSwaAUZyz3VdE3I0CArvG3GXfFs5 WPH3+GBRSJ0+2kAP9o1NyIIp9NUGQgBFsle2Ocp69T6gRt78IDkQPc/ZZ9aXd2hSXQcmQOPGlvSq 2yTTIdVAVS5r3lIofzDaOen1UStAgcD42mgZB2O1HI8gveBLU7V+awl24rFisaK2psoni7pgOGRG OYwl/PMvzkApAdeuv2qjAReP4g+EZSNY4He5/z6hfa6fDfi0abtQ9viFVovvGw8a9t8Ly1F1Ipc1 BYczg6/5EcB2R5tSEdhu9UDolhhqBp4ofpmqjE0CdSwjE9+TYcllfwbDncrzNrw3CpLB6BwAVbqa 7/iDVamhUg97y+p50ZWPmM1aoND3qlTYf7gqYTw4sy0OL7oGA0Kd5VeOT8OaGYLmnKPZUm9rE9oy tETGp0GDsqdMWc26tduy3rrG/GuZNyWCKz5R5y84dyKcVO3zSJhixDP48z0f6xlIgx0pWtpfYjqL MYe/qlu6+hE8Hf/YoZB+CZkXCtYIQJhpgMtDF6jT/Q8SHSkmjV1iKeOUwtSjn4/HGFnh7aldepcP WoAxQrIq4sgq/KBzSEZaJwY/twXdkZLORHieJJy0JtDzaCvqF3xqMOUyWaTEkeSG0Gz+TLNC/MQC aLDcgdu7W5slZl1mFrNWmrnXxgDUzZfflNmMkPgfGELJUMHs9K3B4TRn7GZdm6jua2sB33hsvOhT uvtmfGK00R7ycY5RDEeHQa50fY9NtPyB1YHVumuR66akpYOIV5iVIcvS7TfSkBSOEyAvsZzE6v8S MoLRGZHUfcdV0a4fW7io5dWZf5HRRv58UjZNq0qJ/I6zWZRG+K5fH4TtPx/qZEOKV1muVRZ2oUE6 L43YM+F3QZYV9tL51lR121zGh9ADZBHsMontC8PxxMctR1/biqtYRsxrdeuWXvDz1GBDy58VlkxS 9caO4a37FNUjLEq92dsGMd7LV9hOURxHWnrgpW6ElhKO62tcbNQfmG3xTF6OmYoRliUBGLcbhQNc rCIPUSOsP0jOKTzSJGcb6juF2vFxQBRamvY68pYjvu+r2mfghKt3MN+uhB2CvmYovNVfEbYHv6vX qiG6FvjeQxFZNYWZGrw3dmsYtj1XbyWKuhIUyAOAQEUpC62kFBDlQQHj2MDjixqt5Xy0mNvkxlec 8xUktbTPqo9louSV1GzTbKABrXSSHhGkuJtyZri818Okn//eZaRQ1RyEO0wfoF4z1vmqD+Agd++m PiV4yU1V+SajWeZjIGElVAtRoTErqsnU7Mfzs6r44cqilita0VH/UGMM5VzNeiCdcV5Px9Se3pQT 4KXwJLFIY5HviMHPXOfqlBnFcdfVwTnpPWOfnchsmj1NihR+J0wMHjU12TtJuScGWmW25WgSEEQt SbdLU5ZJ9oQeDB8gf7k9ioFyBzf+lxT0Wcj05E0QN8I2HYBBu5VBoqMD42y9gSXhNqdg/MKJnLrO dz7iZr8C7W2//UoS2wvIdQCWG+G5PG2nV2Vr91bsfHqrkqbhT3a2yDMUbkn48bTybV1+W9Qd2aGm TI4rMhYatFGCougrjjeVZXtgyA07g4YdC8waiPTJZwSU3LSLyh0efZxC/hRs85wOSMs2hkpML41A TBe3yRWdwqj5eWmNxQQtaiKAtRqQyXIW3DB4Ztv4LMCX6u/8+i2w2dgx2DC0zF9skHXAVz3CtPjG bPURDMwAt4snDBdueNiBHAlQjaW4NoQFdJCxTAfOf6fxNkCZw9m6QLWgdw9zITlIc03YnWk3JwNk dRffgp56GlC+7BRONLv0v3GHK3XnWM4/d2xWGZexqFPMGjmqfZgmDhqTPEDfoDv8e62Wj4Imnt6s sxuRTACo7zZBqOURMQQv0ZqoP5eHI3fh7kBHHBKr6+6gegwkl5SSCunO81WiNWy1VYSd6qtvINpS kSH8BApqIiPttMPCQC3Srv7NFdep9nBnRYKH5YSHT6G60FTyJjsx/7w9ZPHCvzK6beRCZC/YDJzY UsWZIOErNJ9tu0/6fuKVE3+I3agCC2AGyEr2TmQN+j1u6gp0bgtdXwow+NRZaP0xTvQcbOT6yUWC imrJxYqucKaqvg3eyZD9pn6capWd0/N3pjECyMNiorwHKx8uFQbp8nrepoLVgbfmd8sOmZA7c/cZ t4Qdi44SYWpegYlg5FE/DgtEteVE+iZepWc+T+XbydrYoKy0V9KmF09snAW0ct+snAriTwUFtalq 2Cl/GHpVZ/pMJ8Y+bksniAGOyDB8Govp7e9E0eQxIYn1h7OvzYY+RPYsutNYpqiQP8xclvs6oMlk Gd29W9dL5dzRV3NdbqljxTyOgh7Fm2du1Vos+eFikTG0aiAVsv80jKK7hxwvaDsTkDnwWW+91n7h rDTWxlq4iq1h+jkcQ3gH7vcRwY5895vpAOyKg3O/gj4NOm166cPSWLJygWbVjYAXzqnOInDyT2zF lsw4wLcSjZk8+ed2Z1HZ4p0czBq6cDaIsp7nS05ivfEqtprwPFVVB6sJVwKt5miuO+yP1zqaFgbz w9l1ITCTfZmRuQ0zSIjUDrHUR5+XJkICyv6op7oOShZ1byemnsfSlbGK4qM1JlwVoQYYXSoQwhzg hDgRAyOw7+PYBoXwUWSZ4Ay5YL6rWyWymVFDMnYnBo505SmZoF+htS85Q/MiSWB7FoUYy6LXm2C3 T0Ov+vBwvRlXWqZ645gVHLFqAavwOKBHwdXsmq6HNKGHoQSsaH8fQyf0eET/fIxaGOxV1SuXCNN3 728G8U3pNArYGDqxLjIJRSDalbfckM+gj10wD5+YUlvIL846E6N5NZmq5atnQT3iguOvdKT1kdgc 10Lxaft/9bkEBduG4/TezrTZwJ1qNE1Y5ysWgXBTUocUx3mpKFWLyuh8gQqafcWI4RWm/lel3XXK 1X0pH/dsJyKBd8oPp9LU7394r7Z/suAIRi+4XOsX9/CKyqjq7IIBlO5X/PxtB7RtlGMCg5V6CLe4 4jrgJ9DIaxueuu2IoyDM6fxK5EUF/q3PuLkp94h2Y0gnSx1yCDpzuj4PZld+D95W+iKF08wQArsO 3YwpLBuYMebZLeqNiMs0YaLmtvnnKl3IkLhoRGS/c8c5lcTwqnmvbBr+MTWG6GgeUmiUmC2mQNmJ ZX20VEKJiEhqrOcQM4r0XnHY97jo35oIBiByZ74uHn/rB1lBLU6CIHHwTa1CJcfRIUYLbTK/SYKY e1bTwgnkEuYP5mRkT18JFRWt4NGU/v3g5/r0Vt84nJZB1HIJo3I+9EjrjG8jCs2Y9pgOW8lK5IG/ w5Z4YO2ztBLV9MklhyUi8aPtPFAZjDj41YTp+A4uBmb+PnMZS/0wSi+iAF0+j2wMOrNcs9e9TmNO wmYDB5YjG5xhgsBqx4hwsZPDDjoUq/ieBj0q4S8Otzsfxtrq4FeKHz4ci25yLGIysSH1c2+dii+3 erD0e8+90ydvgDFHkJ6yeAav0PExRK0hIeeMwMUZgPB7plCVSNRCz11+SWf3TpUVSTfUnE5fr/VY 7A3RjtxrltxH1adm7vBh0wlAnysWSEYS5R4BYGBnsyhSI0JtNyp/7EKVp3NuucIPA4bavgBPKUgw cOJiAs0PbvFe/umSi0Cr4Kn/4JfAcTfU4qN8RJwLIFMIBWtIHGwIWq/YOjnUrEnJ4DQdhBA+Comk dHDvr2FhJJknfo8NFePPTXB96bRLsroHYWBdcKTQzx2thVCumHB6ISt9LLE2fZAz7y+D/BalyOFZ nX0rVcObymIm185bd1WQJ0/PBvpaLTKshk6/r8ip4dadK/64FO49fz2UrQKrD1jlHgb+KVKoBO6D fkI9aN+dtwhtNImeGnj1hL1ALPMlLD3zOHhTmYv3a5sJNb/oz1SZ0D5bjR51iYUbxufC2WEm/oOw o8ZdDj/oBFxXxuNJ3jwY8lgoZ7bdOaY4Cy4dGIexvWSGqZl9pbHc8zg5dOfcVVjlr8orf3WG44Iy 8xsKVfJgvxm3ZqR2lfk+76Vk/lwHSukpOX4CC6WRmLob7qvIf907lKVRjwmv8TVxy8/LaiLhow/z Gn3npFp/1N+CRQw1F1NtdTkmEqAYD3d1jGy9d65xzoiIRElOOkM2P8eA03kgn2vJuF22wER+QsKn uU4IHCSGguo13UM5+IccgJ3hIy4ORGbVddDllmLk/b/qupVyOMQvBrUW+ADmd7g44kAglbifanWZ WHV+MpWQyOjgTGNYHHVdBaCDHy7F8HZHWeCibkbo9i0f3nQ8XtpNDLoxLkaKcSUEsqL0doGVothZ DtIJuYuct7X6CovJ5NzzwCQQexfN/WRs7ZPcaR4Utjt8AaH+77tWmxhpmU8glirYkJvvA48dOq7y /l4QNH+2k/CW4Y/pPMZQgBvYD5vsE6cGBDaXvz8yjWexK3kJgXskEshrbqujsAvogtUOjt/GWqBG YYzcbC25MjizIIkVsyYcac8uxinmVpcEk9xAhzML5+RKJbRSIkTO0QhvVtAskD6LGIZ80Z/XPLRS hNVWZCALOgboycNNs61pBqIcpg7RGjkb6YYqNXcr+uGkrWDbzICfNdHDR2aN9VQ1gXdrDJfam2IN YRZRRDb9W5aa79JufCACzOx3IiyZgYkVdqbA/6C6jz5mynHglYJ30pLveUqlfuXqo3i3Z7ohnaoM 9VgZHiArgP4ynbRjEzGW6NXYBoJJ47vCj9GN7BClTHUzal3HsXd7s/atO/rDpkd1+JLGVtaVAxc4 oItlEQMpUy/2/cetYbTYLRzYMWFQpKohE+SvqBRdmmGC391dhBw5jM/YeiP830d1Pae70TBF9w83 og+14vn5cIvbxcgOe2aPQW/xpR7cyGX+2PBqkbGdJWocDhLOmZ/cgPbWFinY9+THQ3KwdeWEmGrz VejCKEkRw7PPA80ExYGJtlRet0EpZFNCFcAKSt6R+hlEORgQeSsPAHGM0whmzRLri0/DcFHSy3rF SJZS/5a8j9Ko4iNU+40So1NuKObSaAnh9c5ztFsFBzdAXuCR/AD2tw6BUc3MyIHJ7zmVIpooui4+ bP/zH350kVbCHoTYRuRiWBbOGjfI2g+WuClCWP60K4juILHKIzc8RXeNDXQmnEZHEyXjtuKVxEdx Aw9jGYObTYjKpB3MpqAAmSdEg4C4KbE2QHUhciJ1av0LWnrMtk+HvDln1SkGM0u6konHcPL08nYk g/11agLVcF3+BdBm4IWVSD0uYE7zoAWA+oEWx7w+X9oUlq8QdAIHfWKJdVuU/fSUe0hOCwNdSrZS lii85tBlat2AYUaYAZMQHWs0JBUgWsht9URH8wtv/BomIuO3cHLQC/vIPODahWdxJid1ce4uFnsQ qukicJI4Hjzb+aEmzyEFdC/E0CgxhECoRPySXoYG+piItjFxqgRro5g7w0hqiT8ApyERR/58Kk6B +phTBF0jC5n0v2R/pjjQ/r6iVeUfYTdM9lJBdZCRKoeTz0k0b+d+bw2HzWLAidQMYeTnidFW52SY zriuWS1yKwnenKF5v6Cai/3D3Gg3Vo5GdAGSVo0D3rgpLwcfQ2tTASOWvyEajRrG7a6azNDx7ext g80+km97s22RwHlXHZBtej2HnPzkBtLhSkyUHx6va1VGsRUJGthlfiQeYsHrOy6/g+g5XfP7qxkM kf2IUQHNWA9lDrqCM6wOuouWwAH8W++iTUVeVbHyhKIZVDgV8c3Dy9sRtsgD+hLN5cPNEG5zeFM5 7atzSf33U+kBMrbKG4Rp/fj6ZZkRNHyDutyOSkhu4J9Qj1BwYzcOWD6EJqVcWeYVtQjyJBXog69z WIF8sefzVO9NtidGf+uFuBneHtR/g/84OSBj811Vml/M03QH3nY+k3iVgcAQJUoN6thpBKzA6i6Q vKCD2Oq7+bziRJa8WQITEUc5dTycCsd4fJ6Kytnw0upepDm1j4ZOujG2Z4RRvBsAm0ztycFhxjhX LGztYTzg38K16PIzZhEoHyTp7DrxLl7+8dsUCH8xl8izh8OT/nxvYG3mM8/irzcz4mHlHSkhVn9/ Pk6qsC7W73pFhaOTYrg8Hulot6xaIbb0imbJeWIIruOcdCCUmAGSiHjNS33iVXr2GZ6loOMw4//N ifnVh/YVpNsh1j2qp8wW6L/bgu6oV4sBs9CGC/oqBzFio81UBuzaQavhtD9kjVSZiP1ciRBZpTEw Ytcxc46ZTVPmsLQe3McokretVU1RyILH9oIt7C8tQ5/YLQ== `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block lz3B4KHX5z7HJK6kHiZGMmcEnUqLtTRT/n7HdY7szClNEEBtVq2UQW/wdwwMN27AnOLZPVfuS67c Y2O4fk1xOw== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block OUoXLY9rVEqAKiJgtR19Q8FIQUm9wPmLFXF2sem6w9gJVRflCYIHWjOAqv6eppRvqeqcjaja3KKN iRxsDXzkmdVb18CNyYXYPgZU4MySqAPoAE8BZ3alC446EKqG5bo3Faah4iFiaQ2fsSYQDhznQFWV FIedseAJGSJjdgeT43M= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bHuGx6phwwi065A2gw0E1Tqc2OLDUoohEHY7mOoJcUQwvr9OEJ4yz01Uls3wx2UOc24N+ANXe8aM YdyfwspjYSBviz8nI/XUT5fPMjNbtL8HFChLorcX+K00Sc+A9m1I9+5W+Wd6GLSKBCVYKnWRn9Os rc68y/GTowadTW08aEEccqOavDD8XG+R6gQqGpi5C8xq75oqBRmE5yNpxpBXxQRz9mmAsJcZ773H BpObF8UUngkYlRzDjfxz3vzf6lVAPrLm55l1zEsel1LRtdqlRT8kBTrz1kke43v4c6xNv0u+i1Y0 dvxmNCEmLNrwBuVbcA8l6Jjp0k0WZScEgrEOCA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block 4sCk5d4E+rPjLUhUiUrzCNkXo2ztvWgfU4Ic3n3YDGHZzWC7cjzTKSJroiCXwtIaQEIL5FpdrGOo eHf9JlqikZvG/pLSpSZr6BTZioOpsjgI4CJq9n0wGhpyClKm24hGzYEPH8AkBs4wVmgt4sOHvyYc mYqTUQDFFlehrx6Wh0E= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block cjjanW9F+fseEMt2SDd6R3KYZVrfLHKeq8ULFHbP0E7BiwY4Vkec6zVJkc5FOAAhZdR5Ywc2FOnS jk9bJ37QuAeSdAcrSzysHiIJYxA3kbMVuIa63kiSn3dKlLmPc1gZ2/UtM3HTBff0RPQzxl944kH8 SUid8bQM/bx+7wxLnTLuo6uTok/+c8ipzvZZ5iJ9DgzZyHiiuOtKu8JWNRVw1P5d1QqQT3EZ7Q8j fnqcUNAmoR2w1hlmAhXTJgZbpiKUcMF+Y9/twpUzFl3rdEE6PKGzb5YQ/Re4uf+MJU96/KSTzmBR Xfe8WjI4zLk+NlEm8eNku5cgYGTA1pkwApl+6w== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 6304) `protect data_block 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 `protect end_protected
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
--======================================================-- -- -- -- NORTHEASTERN UNIVERSITY -- -- DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING -- -- Reconfigurable & GPU Computing Laboratory -- -- -- -- AUTHOR | Pavle Belanovic -- -- -------------+------------------------------------ -- -- DATE | 20 June 2002 -- -- -------------+------------------------------------ -- -- REVISED BY | Haiqian Yu -- -- -------------+------------------------------------ -- -- DATE | 18 Jan. 2003 -- -- -------------+------------------------------------ -- -- REVISED BY | Jainik Kathiara -- -- -------------+------------------------------------ -- -- DATE | 21 Sept. 2010 -- -- -------------------------------------------------- -- -- REVISED BY | Xin Fang -- -- -------------------------------------------------- -- -- DATE | 25 Oct. 2012 -- --======================================================-- --******************************************************************************-- -- -- -- Copyright (C) 2014 -- -- -- -- This program is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License -- -- as published by the Free Software Foundation; either version 3 -- -- of the License, or (at your option) any later version. -- -- -- -- This program 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. See the -- -- GNU General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public License -- -- along with this program. If not, see<http://www.gnu.org/licenses/>. -- -- -- --******************************************************************************-- --======================================================-- -- LIBRARIES -- --======================================================-- -- IEEE Libraries -- library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_arith.all; use IEEE.std_logic_unsigned.all; -- float library fp_lib; use fp_lib.float_pkg.all; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- entity parameterized_mux is generic ( bits : integer := 0 ); port ( --inputs A : in std_logic_vector(bits-1 downto 0); B : in std_logic_vector(bits-1 downto 0); S : in std_logic; --outputs O : out std_logic_vector(bits-1 downto 0) := (others=>'0') ); end parameterized_mux; ---------------------------------------------------------- -- Parameterized multiplexer -- ---------------------------------------------------------- architecture parameterized_mux_arch of parameterized_mux is begin -- single_bits:for i in 0 to bits-1 generate -- single_bit : mux2 -- port map -- ( -- --inputs -- A => A(i), -- B => B(i), -- S => S, -- --outputs -- O => O(i) -- ); -- end generate; --i O <= A when (S = '1') else B; end parameterized_mux_arch; -- end of architecture
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 16:37:59 11/18/2013 -- Design Name: -- Module Name: My_4bitAnd_948282 - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --use IEEE.NUMERIC_STD.ALL; -- Uncomment the following library declaration if instantiating -- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity My_4bitAnd_948282 is Port ( A_in : in STD_LOGIC_VECTOR (3 downto 0); B_in : in STD_LOGIC_VECTOR (3 downto 0); R_in : out STD_LOGIC_VECTOR (3 downto 0)); end My_4bitAnd_948282; architecture Behavioral of My_4bitAnd_948282 is component My_And_948282 is Port ( A : in STD_LOGIC; B : in STD_LOGIC; R : out STD_LOGIC); end component; begin u0: My_And_948282 port map (A=>A_in(0), B=>B_in(0), R=>R_in(0)); u1: My_And_948282 port map (A=>A_in(1), B=>B_in(1), R=>R_in(1)); u2: My_And_948282 port map (A=>A_in(2), B=>B_in(2), R=>R_in(2)); u4: My_And_948282 port map (A=>A_in(3), B=>B_in(3), R=>R_in(3)); end Behavioral;
-- Copyright 1986-2016 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2016.4 (win64) Build 1733598 Wed Dec 14 22:35:39 MST 2016 -- Date : Mon Jun 05 10:58:36 2017 -- Host : GILAMONSTER running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode synth_stub -- C:/ZyboIP/examples/zed_transform_test/zed_transform_test.srcs/sources_1/bd/system/ip/system_vga_hessian_1_0/system_vga_hessian_1_0_stub.vhdl -- Design : system_vga_hessian_1_0 -- Purpose : Stub declaration of top-level module interface -- Device : xc7z020clg484-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity system_vga_hessian_1_0 is Port ( clk_x16 : in STD_LOGIC; active : in STD_LOGIC; rst : in STD_LOGIC; x_addr : in STD_LOGIC_VECTOR ( 9 downto 0 ); y_addr : in STD_LOGIC_VECTOR ( 9 downto 0 ); g_in : in STD_LOGIC_VECTOR ( 7 downto 0 ); hessian_out : out STD_LOGIC_VECTOR ( 31 downto 0 ) ); end system_vga_hessian_1_0; architecture stub of system_vga_hessian_1_0 is attribute syn_black_box : boolean; attribute black_box_pad_pin : string; attribute syn_black_box of stub : architecture is true; attribute black_box_pad_pin of stub : architecture is "clk_x16,active,rst,x_addr[9:0],y_addr[9:0],g_in[7:0],hessian_out[31:0]"; attribute x_core_info : string; attribute x_core_info of stub : architecture is "vga_hessian,Vivado 2016.4"; begin end;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 19:52:49 04/24/2017 -- Design Name: -- Module Name: puf_top - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.std_logic_unsigned.all; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --use IEEE.NUMERIC_STD.ALL; -- Uncomment the following library declaration if instantiating -- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity puf_top is port( sw : in STD_LOGIC_VECTOR (9 downto 0); -- challenge_input: in STD_LOGIC_VECTOR(19 DOWNTO 0); rst : in std_logic; SSEG_AN : out STD_LOGIC_VECTOR (7 downto 0); SSEG_CA : out STD_LOGIC_VECTOR (7 downto 0); clk : in std_logic; tick : in STD_LOGIC; LED : out STD_LOGIC_VECTOR(15 DOWNTO 0); tock : in STD_LOGIC -- unique_sig: out STD_LOGIC_VECTOR(27 DOWNTO 0) ); end puf_top; architecture Behavioral of puf_top is component RO_GENIE is port( ENABLE : in std_logic; RO_OSC_OUT: out std_logic ); end component; signal enable: std_logic; signal RO_1_out: std_logic; signal RO_2_out: std_logic; signal RO_3_out: std_logic; signal RO_4_out: std_logic; signal RO_5_out: std_logic; signal RO_6_out: std_logic; signal RO_7_out: std_logic; signal RO_8_out: std_logic; signal ro_out, clkb : std_logic_vector(7 downto 0); signal count1, count2, count3, count4, count5, count6, count7, count8 : std_logic_vector(5 downto 0); signal challenge_input:STD_LOGIC_VECTOR(19 DOWNTO 0); signal unique_sig: STD_LOGIC_VECTOR(27 DOWNTO 0); component benes8 Port ( a : in STD_LOGIC_VECTOR (7 downto 0); sel : in STD_LOGIC_VECTOR (19 downto 0); b : out STD_LOGIC_VECTOR (7 downto 0)); end component; component Hex2LED port (CLK: in STD_LOGIC; X: in STD_LOGIC_VECTOR (3 downto 0); Y: out STD_LOGIC_VECTOR (7 downto 0)); end component; type arr is array(0 to 22) of std_logic_vector(7 downto 0); signal NAME: arr; constant CNTR_MAX : std_logic_vector(23 downto 0) := x"030D40"; --100,000,000 = clk cycles per second constant VAL_MAX : std_logic_vector(3 downto 0) := "1001"; --9 constant RESET_CNTR_MAX : std_logic_vector(17 downto 0) := "110000110101000000";-- 100,000,000 * 0.002 = 200,000 = clk cycles per 2 ms signal Cntr : std_logic_vector(26 downto 0) := (others => '0'); signal hexval: std_logic_vector(31 downto 0):=x"0123ABCD"; signal clk_cntr_reg : std_logic_vector (4 downto 0) := (others=>'0'); signal Valb : std_logic_vector(3 downto 0) := (others => '0'); begin RO_1: RO_GENIE port map(enable, RO_1_out); RO_2: RO_GENIE port map(enable, RO_2_out); RO_3: RO_GENIE port map(enable, RO_3_out); RO_4: RO_GENIE port map(enable, RO_4_out); RO_5: RO_GENIE port map(enable, RO_5_out); RO_6: RO_GENIE port map(enable, RO_6_out); RO_7: RO_GENIE port map(enable, RO_7_out); RO_8: RO_GENIE port map(enable, RO_8_out); ro_out <= RO_8_out & RO_7_out & RO_6_out & RO_5_out & RO_4_out & RO_3_out & RO_2_out & RO_1_out; beneins : benes8 port map (a => ro_out, sel => challenge_input, b => clkb); process(tick, tock, clk, sw) begin if (clk'event and clk = '1') then if(rst = '1') then challenge_input <= x"00000"; enable <='0'; else enable <= '1'; if(tick = '1') then challenge_input(9 downto 0) <= sw; end if; if(tock = '1') then challenge_input(19 downto 10) <= sw; end if; end if; end if; end process; process(clkb, rst) begin if (clkb(0)'event and clkb(0) = '1') then if(rst = '1') then count1 <= "000000"; else count1 <= count1 + '1'; end if; end if; if (clkb(1)'event and clkb(1) = '1') then if(rst = '1') then count2 <= "000000"; else count2 <= count2 + '1'; end if; end if; if (clkb(2)'event and clkb(2) = '1') then if(rst = '1') then count3 <= "000000"; else count3 <= count3 + '1'; end if; end if; if (clkb(3)'event and clkb(3) = '1') then if(rst = '1') then count4 <= "000000"; else count4 <= count4 + '1'; end if; end if; if (clkb(4)'event and clkb(4) = '1') then if(rst = '1') then count5 <= "000000"; else count5 <= count5 + '1'; end if; end if; if (clkb(5)'event and clkb(5) = '1') then if(rst = '1') then count6 <= "000000"; else count6 <= count6 + '1'; end if; end if; if (clkb(6)'event and clkb(6) = '1') then if(rst = '1') then count7 <= "000000"; else count7 <= count7 + '1'; end if; end if; if (clkb(7)'event and clkb(7) = '1') then if(rst = '1') then count8 <= "000000"; else count8 <= count8 + '1'; end if; end if; end process; process (count1, count2, count3, count4, count5, count6, count7, count8) begin if(count1 >= count2) then unique_sig(0) <= '1'; else unique_sig(0) <= '0'; end if; if(count1 >= count3) then unique_sig(1) <= '1'; else unique_sig(1) <= '0'; end if; if(count1 >= count4) then unique_sig(2) <= '1'; else unique_sig(2) <= '0'; end if; if(count1 >= count5) then unique_sig(3) <= '1'; else unique_sig(3) <= '0'; end if; if(count1 >= count6) then unique_sig(4) <= '1'; else unique_sig(4) <= '0'; end if; if(count1 >= count7) then unique_sig(5) <= '1'; else unique_sig(5) <= '0'; end if; if(count1 >= count8) then unique_sig(6) <= '1'; else unique_sig(6) <= '0'; end if; if(count2 >= count3) then unique_sig(7) <= '1'; else unique_sig(7) <= '0'; end if; if(count2 >= count4) then unique_sig(8) <= '1'; else unique_sig(8) <= '0'; end if; if(count2 >= count5) then unique_sig(9) <= '1'; else unique_sig(9) <= '0'; end if; if(count2 >= count6) then unique_sig(10) <= '1'; else unique_sig(10) <= '0'; end if; if(count2 >= count7) then unique_sig(11) <= '1'; else unique_sig(11) <= '0'; end if; if(count2 >= count8) then unique_sig(12) <= '1'; else unique_sig(12) <= '0'; end if; if(count3 >= count4) then unique_sig(13) <= '1'; else unique_sig(13) <= '0'; end if; if(count3 >= count5) then unique_sig(14) <= '1'; else unique_sig(14) <= '0'; end if; if(count3 >= count6) then unique_sig(15) <= '1'; else unique_sig(15) <= '0'; end if; if(count3 >= count7) then unique_sig(16) <= '1'; else unique_sig(17) <= '0'; end if; if(count3 >= count8) then unique_sig(17) <= '1'; else unique_sig(17) <= '0'; end if; if(count4 >= count5) then unique_sig(18) <= '1'; else unique_sig(18) <= '0'; end if; if(count4 >= count6) then unique_sig(19) <= '1'; else unique_sig(19) <= '0'; end if; if(count4 >= count7) then unique_sig(20) <= '1'; else unique_sig(20) <= '0'; end if; if(count4 >= count8) then unique_sig(21) <= '1'; else unique_sig(21) <= '0'; end if; if(count5 >= count6) then unique_sig(22) <= '1'; else unique_sig(22) <= '0'; end if; if(count5 >= count7) then unique_sig(23) <= '1'; else unique_sig(23) <= '0'; end if; if(count5 >= count8) then unique_sig(24) <= '1'; else unique_sig(24) <= '0'; end if; if(count6 >= count7) then unique_sig(25) <= '1'; else unique_sig(25) <= '0'; end if; if(count6 >= count8) then unique_sig(26) <= '1'; else unique_sig(26) <= '0'; end if; if(count7 >= count8) then unique_sig(27) <= '1'; else unique_sig(27) <= '0'; end if; end process; LED <= unique_sig(15 downto 0) when (tock ='1' or tick = '1'); HexVal <= "0000" & unique_sig when (tock ='1' or tick = '1'); timer_counter_process : process (clk) begin if (rising_edge(clk)) then if ((Cntr = CNTR_MAX) or rst = '1') then Cntr <= (others => '0'); else Cntr <= Cntr + 1; end if; end if; end process; --This process increments the digit being displayed on the --7-segment display every second. timer_inc_process : process (clk) begin if (rising_edge(clk)) then if (rst = '1') then Valb <= (others => '0'); elsif (Cntr = CNTR_MAX) then if (Valb = VAL_MAX) then Valb <= (others => '0'); else Valb <= Valb + 1; end if; end if; end if; end process; --This select statement selects the 7-segment diplay anode. with Valb select SSEG_AN <= "01111111" when "0001", "10111111" when "0010", "11011111" when "0011", "11101111" when "0100", "11110111" when "0101", "11111011" when "0110", "11111101" when "0111", "11111110" when "1000", "11111111" when others; --This select statement selects the value of HexVal to the necessary --cathode signals to display it on the 7-segment with Valb select SSEG_CA <= NAME(0) when "0001", NAME(1) when "0010", NAME(2)when "0011", NAME(3) when "0100", NAME(4) when "0101", NAME(5) when "0110", NAME(6) when "0111", NAME(7) when "1000", NAME(0) when others; CONV1: Hex2LED port map (CLK => clk, X => HexVal(31 downto 28), Y => NAME(0)); CONV2: Hex2LED port map (CLK => clk, X => HexVal(27 downto 24), Y => NAME(1)); CONV3: Hex2LED port map (CLK => clk, X => HexVal(23 downto 20), Y => NAME(2)); CONV4: Hex2LED port map (CLK => clk, X => HexVal(19 downto 16), Y => NAME(3)); CONV5: Hex2LED port map (CLK => clk, X => HexVal(15 downto 12), Y => NAME(4)); CONV6: Hex2LED port map (CLK => clk, X => HexVal(11 downto 8), Y => NAME(5)); CONV7: Hex2LED port map (CLK => clk, X => HexVal(7 downto 4), Y => NAME(6)); CONV8: Hex2LED port map (CLK => clk, X => HexVal(3 downto 0), Y => NAME(7)); end Behavioral;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 19:52:49 04/24/2017 -- Design Name: -- Module Name: puf_top - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.std_logic_unsigned.all; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --use IEEE.NUMERIC_STD.ALL; -- Uncomment the following library declaration if instantiating -- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity puf_top is port( sw : in STD_LOGIC_VECTOR (9 downto 0); -- challenge_input: in STD_LOGIC_VECTOR(19 DOWNTO 0); rst : in std_logic; SSEG_AN : out STD_LOGIC_VECTOR (7 downto 0); SSEG_CA : out STD_LOGIC_VECTOR (7 downto 0); clk : in std_logic; tick : in STD_LOGIC; LED : out STD_LOGIC_VECTOR(15 DOWNTO 0); tock : in STD_LOGIC -- unique_sig: out STD_LOGIC_VECTOR(27 DOWNTO 0) ); end puf_top; architecture Behavioral of puf_top is component RO_GENIE is port( ENABLE : in std_logic; RO_OSC_OUT: out std_logic ); end component; signal enable: std_logic; signal RO_1_out: std_logic; signal RO_2_out: std_logic; signal RO_3_out: std_logic; signal RO_4_out: std_logic; signal RO_5_out: std_logic; signal RO_6_out: std_logic; signal RO_7_out: std_logic; signal RO_8_out: std_logic; signal ro_out, clkb : std_logic_vector(7 downto 0); signal count1, count2, count3, count4, count5, count6, count7, count8 : std_logic_vector(5 downto 0); signal challenge_input:STD_LOGIC_VECTOR(19 DOWNTO 0); signal unique_sig: STD_LOGIC_VECTOR(27 DOWNTO 0); component benes8 Port ( a : in STD_LOGIC_VECTOR (7 downto 0); sel : in STD_LOGIC_VECTOR (19 downto 0); b : out STD_LOGIC_VECTOR (7 downto 0)); end component; component Hex2LED port (CLK: in STD_LOGIC; X: in STD_LOGIC_VECTOR (3 downto 0); Y: out STD_LOGIC_VECTOR (7 downto 0)); end component; type arr is array(0 to 22) of std_logic_vector(7 downto 0); signal NAME: arr; constant CNTR_MAX : std_logic_vector(23 downto 0) := x"030D40"; --100,000,000 = clk cycles per second constant VAL_MAX : std_logic_vector(3 downto 0) := "1001"; --9 constant RESET_CNTR_MAX : std_logic_vector(17 downto 0) := "110000110101000000";-- 100,000,000 * 0.002 = 200,000 = clk cycles per 2 ms signal Cntr : std_logic_vector(26 downto 0) := (others => '0'); signal hexval: std_logic_vector(31 downto 0):=x"0123ABCD"; signal clk_cntr_reg : std_logic_vector (4 downto 0) := (others=>'0'); signal Valb : std_logic_vector(3 downto 0) := (others => '0'); begin RO_1: RO_GENIE port map(enable, RO_1_out); RO_2: RO_GENIE port map(enable, RO_2_out); RO_3: RO_GENIE port map(enable, RO_3_out); RO_4: RO_GENIE port map(enable, RO_4_out); RO_5: RO_GENIE port map(enable, RO_5_out); RO_6: RO_GENIE port map(enable, RO_6_out); RO_7: RO_GENIE port map(enable, RO_7_out); RO_8: RO_GENIE port map(enable, RO_8_out); ro_out <= RO_8_out & RO_7_out & RO_6_out & RO_5_out & RO_4_out & RO_3_out & RO_2_out & RO_1_out; beneins : benes8 port map (a => ro_out, sel => challenge_input, b => clkb); process(tick, tock, clk, sw) begin if (clk'event and clk = '1') then if(rst = '1') then challenge_input <= x"00000"; enable <='0'; else enable <= '1'; if(tick = '1') then challenge_input(9 downto 0) <= sw; end if; if(tock = '1') then challenge_input(19 downto 10) <= sw; end if; end if; end if; end process; process(clkb, rst) begin if (clkb(0)'event and clkb(0) = '1') then if(rst = '1') then count1 <= "000000"; else count1 <= count1 + '1'; end if; end if; if (clkb(1)'event and clkb(1) = '1') then if(rst = '1') then count2 <= "000000"; else count2 <= count2 + '1'; end if; end if; if (clkb(2)'event and clkb(2) = '1') then if(rst = '1') then count3 <= "000000"; else count3 <= count3 + '1'; end if; end if; if (clkb(3)'event and clkb(3) = '1') then if(rst = '1') then count4 <= "000000"; else count4 <= count4 + '1'; end if; end if; if (clkb(4)'event and clkb(4) = '1') then if(rst = '1') then count5 <= "000000"; else count5 <= count5 + '1'; end if; end if; if (clkb(5)'event and clkb(5) = '1') then if(rst = '1') then count6 <= "000000"; else count6 <= count6 + '1'; end if; end if; if (clkb(6)'event and clkb(6) = '1') then if(rst = '1') then count7 <= "000000"; else count7 <= count7 + '1'; end if; end if; if (clkb(7)'event and clkb(7) = '1') then if(rst = '1') then count8 <= "000000"; else count8 <= count8 + '1'; end if; end if; end process; process (count1, count2, count3, count4, count5, count6, count7, count8) begin if(count1 >= count2) then unique_sig(0) <= '1'; else unique_sig(0) <= '0'; end if; if(count1 >= count3) then unique_sig(1) <= '1'; else unique_sig(1) <= '0'; end if; if(count1 >= count4) then unique_sig(2) <= '1'; else unique_sig(2) <= '0'; end if; if(count1 >= count5) then unique_sig(3) <= '1'; else unique_sig(3) <= '0'; end if; if(count1 >= count6) then unique_sig(4) <= '1'; else unique_sig(4) <= '0'; end if; if(count1 >= count7) then unique_sig(5) <= '1'; else unique_sig(5) <= '0'; end if; if(count1 >= count8) then unique_sig(6) <= '1'; else unique_sig(6) <= '0'; end if; if(count2 >= count3) then unique_sig(7) <= '1'; else unique_sig(7) <= '0'; end if; if(count2 >= count4) then unique_sig(8) <= '1'; else unique_sig(8) <= '0'; end if; if(count2 >= count5) then unique_sig(9) <= '1'; else unique_sig(9) <= '0'; end if; if(count2 >= count6) then unique_sig(10) <= '1'; else unique_sig(10) <= '0'; end if; if(count2 >= count7) then unique_sig(11) <= '1'; else unique_sig(11) <= '0'; end if; if(count2 >= count8) then unique_sig(12) <= '1'; else unique_sig(12) <= '0'; end if; if(count3 >= count4) then unique_sig(13) <= '1'; else unique_sig(13) <= '0'; end if; if(count3 >= count5) then unique_sig(14) <= '1'; else unique_sig(14) <= '0'; end if; if(count3 >= count6) then unique_sig(15) <= '1'; else unique_sig(15) <= '0'; end if; if(count3 >= count7) then unique_sig(16) <= '1'; else unique_sig(17) <= '0'; end if; if(count3 >= count8) then unique_sig(17) <= '1'; else unique_sig(17) <= '0'; end if; if(count4 >= count5) then unique_sig(18) <= '1'; else unique_sig(18) <= '0'; end if; if(count4 >= count6) then unique_sig(19) <= '1'; else unique_sig(19) <= '0'; end if; if(count4 >= count7) then unique_sig(20) <= '1'; else unique_sig(20) <= '0'; end if; if(count4 >= count8) then unique_sig(21) <= '1'; else unique_sig(21) <= '0'; end if; if(count5 >= count6) then unique_sig(22) <= '1'; else unique_sig(22) <= '0'; end if; if(count5 >= count7) then unique_sig(23) <= '1'; else unique_sig(23) <= '0'; end if; if(count5 >= count8) then unique_sig(24) <= '1'; else unique_sig(24) <= '0'; end if; if(count6 >= count7) then unique_sig(25) <= '1'; else unique_sig(25) <= '0'; end if; if(count6 >= count8) then unique_sig(26) <= '1'; else unique_sig(26) <= '0'; end if; if(count7 >= count8) then unique_sig(27) <= '1'; else unique_sig(27) <= '0'; end if; end process; LED <= unique_sig(15 downto 0) when (tock ='1' or tick = '1'); HexVal <= "0000" & unique_sig when (tock ='1' or tick = '1'); timer_counter_process : process (clk) begin if (rising_edge(clk)) then if ((Cntr = CNTR_MAX) or rst = '1') then Cntr <= (others => '0'); else Cntr <= Cntr + 1; end if; end if; end process; --This process increments the digit being displayed on the --7-segment display every second. timer_inc_process : process (clk) begin if (rising_edge(clk)) then if (rst = '1') then Valb <= (others => '0'); elsif (Cntr = CNTR_MAX) then if (Valb = VAL_MAX) then Valb <= (others => '0'); else Valb <= Valb + 1; end if; end if; end if; end process; --This select statement selects the 7-segment diplay anode. with Valb select SSEG_AN <= "01111111" when "0001", "10111111" when "0010", "11011111" when "0011", "11101111" when "0100", "11110111" when "0101", "11111011" when "0110", "11111101" when "0111", "11111110" when "1000", "11111111" when others; --This select statement selects the value of HexVal to the necessary --cathode signals to display it on the 7-segment with Valb select SSEG_CA <= NAME(0) when "0001", NAME(1) when "0010", NAME(2)when "0011", NAME(3) when "0100", NAME(4) when "0101", NAME(5) when "0110", NAME(6) when "0111", NAME(7) when "1000", NAME(0) when others; CONV1: Hex2LED port map (CLK => clk, X => HexVal(31 downto 28), Y => NAME(0)); CONV2: Hex2LED port map (CLK => clk, X => HexVal(27 downto 24), Y => NAME(1)); CONV3: Hex2LED port map (CLK => clk, X => HexVal(23 downto 20), Y => NAME(2)); CONV4: Hex2LED port map (CLK => clk, X => HexVal(19 downto 16), Y => NAME(3)); CONV5: Hex2LED port map (CLK => clk, X => HexVal(15 downto 12), Y => NAME(4)); CONV6: Hex2LED port map (CLK => clk, X => HexVal(11 downto 8), Y => NAME(5)); CONV7: Hex2LED port map (CLK => clk, X => HexVal(7 downto 4), Y => NAME(6)); CONV8: Hex2LED port map (CLK => clk, X => HexVal(3 downto 0), Y => NAME(7)); end Behavioral;
--********************************************************************** -- Copyright (c) 2012-2014 by XESS Corp <http://www.xess.com>. -- All rights reserved. -- -- This library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 3.0 of the License, or (at your option) any later version. -- -- This library 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. See the GNU -- Lesser General Public License for more details. -- -- You should have received a copy of the GNU Lesser General Public -- License along with this library. If not, see -- <http://www.gnu.org/licenses/>. --********************************************************************** --********************************************************************* -- SD MEMORY CARD INTERFACE -- -- Reads/writes a single or multiple blocks of data to/from an SD Flash card. -- -- Based on XESS by by Steven J. Merrifield, June 2008: -- http : //stevenmerrifield.com/tools/sd.vhd -- -- Most of what I learned about interfacing to SD/SDHC cards came from here: -- http://elm-chan.org/docs/mmc/mmc_e.html -- -- OPERATION -- -- Set-up: -- First of all, you have to give the controller a clock signal on the clk_i -- input with a higher frequency than the serial clock sent to the SD card -- through the sclk_o output. You can set generic parameters for the -- controller to tell it the master clock frequency (100 MHz), the SCLK -- frequency for initialization (400 KHz), the SCLK frequency for normal -- operation (25MHz), the size of data sectors in the Flash memory (512bytes), -- and the type of card (either SD or SDHC). I typically use a 100 MHz -- clock if I'm running an SD card with a 25 Mbps serial data stream. -- -- Initialize it: -- Pulsing the reset_i input high and then bringing it low again will make -- the controller initialize the SD card so it will XESS in SPI mode. -- Basically, it sends the card the commands CMD0, CMD8 and then ACMD41 (which -- is CMD55 followed by CMD41). The busy_o output will be high during the -- initialization and will go low once it is done. -- -- After the initialization command sequence, the SD card will send back an R1 -- response byte. If only the IDLE bit of the R1 response is set, then the -- controller will repeatedly re-try the ACMD41 command while busy_o remains -- high. -- -- If any other bit of the R1 response is set, then an error occurred. The -- controller will stall, lower busy_o, and output the R1 response code on the -- error_o bus. You'll have to pulse reset_i to unfreeze the controller. -- -- If the R1 response is all zeroes (i.e., no errors occurred during the -- initialization), then the controller will lower busy_o and wait for a -- read or write operation from the host. The controller will only accept new -- operations when busy_o is low. -- -- Write data: -- To write a data block to the SD card, the address of a block is placed -- on the addr_i input bus and the wr_i input is raised. The address and -- write strobe can be removed once busy_o goes high to indicate the write -- operation is underway. The data to be written to the SD card is passed as -- follows: -- -- 1. The controller requests a byte of data by raising the hndShk_o output. -- 2. The host applies the next byte to the data_i input bus and raises the -- hndShk_i input. -- 3. The controller accepts the byte and lowers the hndShk_o output. -- 4. The host lowers the hndShk_i input. -- -- This sequence of steps is repeated until all BLOCK_SIZE_G bytes of the -- data block are passed from the host to the controller. Once all the data -- is passed, the sector on the SD card will be written and the busy_o output -- will be lowered. -- -- Read data: -- To read a block of data from the SD card, the address of a block is -- placed on the addr_i input bus and the rd_i input is raised. The address -- and read strobe can be removed once busy_o goes high to indicate the read -- operation is underway. The data read from the SD card is passed to the -- host as follows: -- -- 1. The controller raises the hndShk_o output when the next data byte -- is available. -- 2. The host reads the byte from the data_o output bus and raises the -- hndShk_i input. -- 3. The controller lowers the hndShk_o output. -- 4. The host lowers the hndShk_i input. -- -- This sequence of steps is repeated until all BLOCK_SIZE_G bytes of the -- data block are passed from the controller to the host. Once all the data -- is read, the busy_o output will be lowered. -- -- Handle errors: -- If an error is detected during either a read or write operation, then the -- controller will stall, lower busy_o, and output an error code on the -- error_o bus. You'll have to pulse reset_i to unfreeze the controller. That -- may seem a bit excessive, but it does guarantee that you can't ignore any -- errors that occur. -- -- TODO: -- -- * Implement multi-block read and write commands. -- * Allow host to send/receive SPI commands/data directly to -- the SD card through the controller. -- ********************************************************************* ------------------------------------------------------------------------------ -- Commonly-used functions and constants. ------------------------------------------------------------------------------ library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; package CommonPckg is -- constant YES : std_logic := '1'; -- constant NO : std_logic := '0'; -- constant HI : std_logic := '1'; -- constant LO : std_logic := '0'; -- constant ONE : std_logic := '1'; -- constant ZERO : std_logic := '0'; constant HIZ : std_logic := 'Z'; -- FPGA chip families. type FpgaFamily_t is (SPARTAN3A_E, SPARTAN6_E); -- XESS FPGA boards. type XessBoard_t is (XULA_E, XULA2_E); -- Convert a Boolean to a std_logic. function BooleanToStdLogic(b : in boolean) return std_logic; -- Find the base-2 logarithm of a number. function Log2(v : in natural) return natural; -- Select one of two integers based on a Boolean. function IntSelect(s : in boolean; a : in integer; b : in integer) return integer; -- Select one of two reals based on a Boolean. function RealSelect(s : in boolean; a : in real; b : in real) return real; -- Convert a binary number to a graycode number. function BinaryToGray(b : in std_logic_vector) return std_logic_vector; -- Convert a graycode number to a binary number. function GrayToBinary(g : in std_logic_vector) return std_logic_vector; -- Find the maximum of two integers. function IntMax(a : in integer; b : in integer) return integer; end package; library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; package body CommonPckg is -- Convert a Boolean to a std_logic. function BooleanToStdLogic(b : in boolean) return std_logic is variable s : std_logic; begin if b then s := '1'; else s := '0'; end if; return s; end function BooleanToStdLogic; -- Find the base 2 logarithm of a number. function Log2(v : in natural) return natural is variable n : natural; variable logn : natural; begin n := 1; for i in 0 to 128 loop logn := i; exit when (n >= v); n := n * 2; end loop; return logn; end function Log2; -- Select one of two integers based on a Boolean. function IntSelect(s : in boolean; a : in integer; b : in integer) return integer is begin if s then return a; else return b; end if; return a; end function IntSelect; -- Select one of two reals based on a Boolean. function RealSelect(s : in boolean; a : in real; b : in real) return real is begin if s then return a; else return b; end if; return a; end function RealSelect; -- Convert a binary number to a graycode number. function BinaryToGray(b : in std_logic_vector) return std_logic_vector is variable g : std_logic_vector(b'range); begin for i in b'low to b'high-1 loop g(i) := b(i) xor b(i+1); end loop; g(b'high) := b(b'high); return g; end function BinaryToGray; -- Convert a graycode number to a binary number. function GrayToBinary(g : in std_logic_vector) return std_logic_vector is variable b : std_logic_vector(g'range); begin b(b'high) := g(b'high); for i in g'high-1 downto g'low loop b(i) := b(i+1) xor g(i); end loop; return b; end function GrayToBinary; -- Find the maximum of two integers. function IntMax(a : in integer; b : in integer) return integer is begin if a > b then return a; else return b; end if; return a; end function IntMax; end package body; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use work.CommonPckg.all; use work.p_wires.all; package SdCardPckg is type CardType_t is (SD_CARD_E, SDHC_CARD_E); -- Define the different types of SD cards. component SdCardCtrl is generic ( FREQ_G : real := 100.0; -- Master clock frequency (MHz). INIT_SPI_FREQ_G : real := 0.4; -- Slow SPI clock freq. during initialization (MHz). SPI_FREQ_G : real := 25.0; -- Operational SPI freq. to the SD card (MHz). BLOCK_SIZE_G : natural := 512; -- Number of bytes in an SD card block or sector. CARD_TYPE_G : CardType_t := SD_CARD_E -- Type of SD card connected to this controller. ); port ( -- Host-side interface signals. clk_i : in std_logic; -- Master clock. reset_i : in std_logic := NO; -- active-high, synchronous reset. rd_i : in std_logic := NO; -- active-high read block request. wr_i : in std_logic := NO; -- active-high write block request. continue_i : in std_logic := NO; -- If true, inc address and continue R/W. addr_i : in std_logic_vector(31 downto 0) := x"00000000"; -- Block address. data_i : in std_logic_vector(7 downto 0) := x"00"; -- Data to write to block. data_o : out std_logic_vector(7 downto 0) := x"00"; -- Data read from block. busy_o : out std_logic; -- High when controller is busy performing some operation. hndShk_i : in std_logic; -- High when host has data to give or has taken data. hndShk_o : out std_logic; -- High when controller has taken data or has data to give. error_o : out std_logic_vector(15 downto 0) := (others => NO); -- I/O signals to the external SD card. cs_bo : out std_logic := HI; -- Active-low chip-select. sclk_o : out std_logic := LO; -- Serial clock to SD card. mosi_o : out std_logic := HI; -- Serial data output to SD card. miso_i : in std_logic := ZERO; -- Serial data input from SD card. state : out std_logic_vector(4 downto 0) -- state debugging only ); end component; end package; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ library IEEE; use IEEE.math_real.all; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use work.CommonPckg.all; use work.SdCardPckg.all; use work.p_wires.all; entity SdCardCtrl is generic ( FREQ_G : real := 100.0; -- Master clock frequency (MHz). INIT_SPI_FREQ_G : real := 0.4; -- Slow SPI clock freq. during initialization (MHz). SPI_FREQ_G : real := 25.0; -- Operational SPI freq. to the SD card (MHz). BLOCK_SIZE_G : natural := 512; -- Number of bytes in an SD card block or sector. CARD_TYPE_G : CardType_t := SD_CARD_E -- Type of SD card connected to this controller. ); port ( -- Host-side interface signals. clk_i : in std_logic; -- Master clock. reset_i : in std_logic := NO; -- active-high, synchronous reset. rd_i : in std_logic := NO; -- active-high read block request. wr_i : in std_logic := NO; -- active-high write block request. continue_i : in std_logic := NO; -- If true, inc address and continue R/W. addr_i : in std_logic_vector(31 downto 0) := x"00000000"; -- Block address. data_i : in std_logic_vector(7 downto 0) := x"00"; -- Data to write to block. data_o : out std_logic_vector(7 downto 0) := x"00"; -- Data read from block. busy_o : out std_logic; -- High when controller is busy performing some operation. hndShk_i : in std_logic; -- High when host has data to give or has taken data. hndShk_o : out std_logic; -- High when controller has taken data or has data to give. error_o : out std_logic_vector(15 downto 0) := (others => NO); -- I/O signals to the external SD card. cs_bo : out std_logic := HI; -- Active-low chip-select. sclk_o : out std_logic := LO; -- Serial clock to SD card. mosi_o : out std_logic := HI; -- Serial data output to SD card. miso_i : in std_logic := ZERO; -- Serial data input from SD card. state : out std_logic_vector(4 downto 0) -- state debugging only ); end entity; architecture rtl of SdCardCtrl is signal sclk_r : std_logic := ZERO; -- Register output drives SD card clock. signal hndShk_r : std_logic := NO; -- Register output drives handshake output to host. signal sd_state_dbg : integer:= 0; -- debugging only begin process(clk_i) -- FSM process for the SD card controller. type FsmState_t is ( -- States of the SD card controller FSM. START_INIT, -- 0 Send initialization clock pulses to the deselected SD card. SEND_CMD0, -- 1 Put the SD card in the IDLE state. CHK_CMD0_RESPONSE, -- 2 Check card's R1 response to the CMD0. SEND_CMD8, -- 3 This command is needed to initialize SDHC cards. GET_CMD8_RESPONSE, -- 4 Get the R7 response to CMD8. SEND_CMD55, -- 5 Send CMD55 to the SD card. SEND_CMD41, -- 6 Send CMD41 to the SD card. CHK_ACMD41_RESPONSE, -- 7 Check if the SD card has left the IDLE state. WAIT_FOR_HOST_RW, -- 8 Wait for the host to issue a read or write command. RD_BLK, -- 9 Read a block of data from the SD card. WR_BLK, -- 10 Write a block of data to the SD card. WR_WAIT, -- 11 Wait for SD card to finish writing the data block. START_TX, -- 12 Start sending command/data. TX_BITS, -- 13 Shift out remaining command/data bits. GET_CMD_RESPONSE, -- 14 Get the R1 response of the SD card to a command. RX_BITS, -- 15 Receive response/data from the SD card. DESELECT, -- 16 De-select the SD card and send some clock pulses (Must enter with sclk at zero.) PULSE_SCLK, -- 17 Issue some clock pulses. (Must enter with sclk at zero.) REPORT_ERROR -- 18 Report error and stall until reset. ); attribute SYN_ENCODING of FsmState_t : type is "safe"; variable state_v : FsmState_t := START_INIT; -- Current state of the FSM. variable rtnState_v : FsmState_t; -- State FSM returns to when FSM subroutine completes. -- Timing constants based on the master clock frequency and the SPI SCLK frequencies. constant CLKS_PER_INIT_SCLK_C : real := FREQ_G / INIT_SPI_FREQ_G; constant CLKS_PER_SCLK_C : real := FREQ_G / SPI_FREQ_G; constant MAX_CLKS_PER_SCLK_C : real := realmax(CLKS_PER_INIT_SCLK_C, CLKS_PER_SCLK_C); constant MAX_CLKS_PER_SCLK_PHASE_C : natural := integer(round(MAX_CLKS_PER_SCLK_C / 2.0)); constant INIT_SCLK_PHASE_PERIOD_C : natural := integer(round(CLKS_PER_INIT_SCLK_C / 2.0)); constant SCLK_PHASE_PERIOD_C : natural := integer(round(CLKS_PER_SCLK_C / 2.0)); constant DELAY_BETWEEN_BLOCK_RW_C : natural := SCLK_PHASE_PERIOD_C; -- Registers for generating slow SPI SCLK from the faster master clock. variable clkDivider_v : natural range 0 to MAX_CLKS_PER_SCLK_PHASE_C; -- Holds the SCLK period. variable sclkPhaseTimer_v : natural range 0 to MAX_CLKS_PER_SCLK_PHASE_C; -- Counts down to zero, then SCLK toggles. constant NUM_INIT_CLKS_C : natural := 160; -- Number of initialization clocks to SD card. variable bitCnt_v : natural range 0 to NUM_INIT_CLKS_C; -- Tx/Rx bit counter. constant CRC_SZ_C : natural := 2; -- Number of CRC bytes for read/write blocks. -- When reading blocks of data, get 0xFE + [DATA_BLOCK] + [CRC]. constant RD_BLK_SZ_C : natural := 1 + BLOCK_SIZE_G + CRC_SZ_C; -- When writing blocks of data, send 0xFF + 0xFE + [DATA BLOCK] + [CRC] then receive response byte. constant WR_BLK_SZ_C : natural := 1 + 1 + BLOCK_SIZE_G + CRC_SZ_C + 1; variable byteCnt_v : natural range 0 to IntMax(WR_BLK_SZ_C, RD_BLK_SZ_C); -- Tx/Rx byte counter. -- Command bytes for various SD card operations. subtype Cmd_t is std_logic_vector(7 downto 0); constant CMD0_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 0, Cmd_t'length)); constant CMD8_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 8, Cmd_t'length)); constant CMD55_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 55, Cmd_t'length)); constant CMD41_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 41, Cmd_t'length)); constant READ_BLK_CMD_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 17, Cmd_t'length)); constant WRITE_BLK_CMD_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 24, Cmd_t'length)); -- Except for CMD0 and CMD8, SD card ops don't need a CRC, so use a fake one for that slot in the command. constant FAKE_CRC_C : std_logic_vector(7 downto 0) := x"FF"; variable addr_v : unsigned(addr_i'range); -- Address of current block for R/W operations. -- Maximum Tx to SD card consists of command + address + CRC. Data Tx is just a single byte. variable tx_v : std_logic_vector(CMD0_C'length + addr_v'length + FAKE_CRC_C'length - 1 downto 0); -- Data/command to SD card. alias txCmd_v is tx_v; -- Command transmission shift register. alias txData_v is tx_v(tx_v'high downto tx_v'high - data_i'length + 1); -- Data byte transmission shift register. variable rx_v : std_logic_vector(data_i'range); -- Data/response byte received from SD card. -- Various response codes. subtype Response_t is std_logic_vector(rx_v'range); constant ACTIVE_NO_ERRORS_C : Response_t := "00000000"; -- Normal R1 code after initialization. constant IDLE_NO_ERRORS_C : Response_t := "00000001"; -- Normal R1 code after CMD0. constant DATA_ACCEPTED_C : Response_t := "---00101"; -- SD card accepts data block from host. constant DATA_REJ_CRC_C : Response_t := "---01011"; -- SD card rejects data block from host due to CRC error. constant DATA_REJ_WERR_C : Response_t := "---01101"; -- SD card rejects data block from host due to write error. -- Various tokens. subtype Token_t is std_logic_vector(rx_v'range); constant NO_TOKEN_C : Token_t := x"FF"; -- Received before the SD card responds to a block read command. constant START_TOKEN_C : Token_t := x"FE"; -- Starting byte preceding a data block. -- Flags that are set/cleared to affect the operation of the FSM. variable getCmdResponse_v : boolean; -- When true, get R1 response to command sent to SD card. variable rtnData_v : boolean; -- When true, signal to host when a data byte arrives from SD card. variable doDeselect_v : boolean; -- When true, de-select SD card after a command is issued. begin sd_state_dbg <= FsmState_t'pos(state_v); -- debugging only state <= std_logic_vector(to_unsigned(sd_state_dbg, 5)); if rising_edge(clk_i) then if reset_i = YES then -- Perform a reset. state_v := START_INIT; -- Send the FSM to the initialization entry-point. sclkPhaseTimer_v := 0; -- Don't delay the initialization right after reset. busy_o <= YES; -- Busy while the SD card interface is being initialized. elsif sclkPhaseTimer_v /= 0 then -- Setting the clock phase timer to a non-zero value delays any further actions -- and generates the slower SPI clock from the faster master clock. sclkPhaseTimer_v := sclkPhaseTimer_v - 1; -- Clock phase timer has reached zero, so check handshaking sync. between host and controller. -- Handshaking lets the host control the flow of data to/from the SD card controller. -- Handshaking between the SD card controller and the host proceeds as follows: -- 1: Controller raises its handshake and waits. -- 2: Host sees controller handshake and raises its handshake in acknowledgement. -- 3: Controller sees host handshake acknowledgement and lowers its handshake. -- 4: Host sees controller lower its handshake and removes its handshake. -- -- Handshaking is bypassed when the controller FSM is initializing the SD card. elsif state_v /= START_INIT and hndShk_r = HI and hndShk_i = LO then null; -- Waiting for the host to acknowledge handshake. elsif state_v /= START_INIT and hndShk_r = HI and hndShk_i = HI then txData_v := data_i; -- Get any data passed from the host. hndShk_r <= LO; -- The host acknowledged, so lower the controller handshake. elsif state_v /= START_INIT and hndShk_r = LO and hndShk_i = HI then null; -- Waiting for the host to lower its handshake. elsif (state_v = START_INIT) or (hndShk_r = LO and hndShk_i = LO) then -- Both handshakes are low, so the controller operations can proceed. busy_o <= YES; -- Busy by default. Only false when waiting for R/W from host or stalled by error. case state_v is when START_INIT => -- Deselect the SD card and send it a bunch of clock pulses with MOSI high. error_o <= (others => ZERO); -- Clear error flags. clkDivider_v := INIT_SCLK_PHASE_PERIOD_C - 1; -- Use slow SPI clock freq during init. sclkPhaseTimer_v := INIT_SCLK_PHASE_PERIOD_C - 1; -- and set the duration of the next clock phase. sclk_r <= LO; -- Start with low clock to the SD card. hndShk_r <= LO; -- Initialize handshake signal. addr_v := (others => ZERO); -- Initialize address. rtnData_v := false; -- No data is returned to host during initialization. bitCnt_v := NUM_INIT_CLKS_C; -- Generate this many clock pulses. state_v := DESELECT; -- De-select the SD card and pulse SCLK. rtnState_v := SEND_CMD0; -- Then go to this state after the clock pulses are done. when SEND_CMD0 => -- Put the SD card in the IDLE state. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD0_C & x"00000000" & x"95"; -- 0x95 is the correct CRC for this command. bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := true; -- De-select SD card after this command finishes. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := CHK_CMD0_RESPONSE; -- Then check the response to the command. when CHK_CMD0_RESPONSE => -- Check card's R1 response to the CMD0. if rx_v = IDLE_NO_ERRORS_C then state_v := SEND_CMD8; -- Continue init if SD card is in IDLE state with no errors else state_v := SEND_CMD0; -- Otherwise, try CMD0 again. end if; when SEND_CMD8 => -- This command is needed to initialize SDHC cards. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD8_C & x"000001aa" & x"87"; -- 0x87 is the correct CRC for this command. bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := false; -- Don't de-select, need to get the R7 response sent from the SD card. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := GET_CMD8_RESPONSE; -- Then go to this state after the command is sent. when GET_CMD8_RESPONSE => -- Get the R7 response to CMD8. cs_bo <= LO; -- The SD card should already be enabled, but let's be explicit. bitCnt_v := 31; -- Four bytes (32 bits) in R7 response. getCmdResponse_v := false; -- Not sending a command that generates a response. doDeselect_v := true; -- De-select card to end the command after getting the four bytes. state_v := RX_BITS; -- Go to FSM subroutine to get the R7 response. rtnState_v := SEND_CMD55; -- Then go here (we don't care what the actual R7 response is). when SEND_CMD55 => -- Send CMD55 as preamble of ACMD41 initialization command. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD55_C & x"00000000" & FAKE_CRC_C; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := true; -- De-select SD card after this command finishes. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := SEND_CMD41; -- Then go to this state after the command is sent. when SEND_CMD41 => -- Send the SD card the initialization command. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD41_C & x"40000000" & FAKE_CRC_C; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := true; -- De-select SD card after this command finishes. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := CHK_ACMD41_RESPONSE; -- Then check the response to the command. when CHK_ACMD41_RESPONSE => -- The CMD55, CMD41 sequence should cause the SD card to leave the IDLE state -- and become ready for SPI read/write operations. If still IDLE, then repeat the CMD55, CMD41 sequence. -- If one of the R1 error flags is set, then report the error and stall. if rx_v = ACTIVE_NO_ERRORS_C then -- Not IDLE, no errors. state_v := WAIT_FOR_HOST_RW; -- Start processing R/W commands from the host. elsif rx_v = IDLE_NO_ERRORS_C then -- Still IDLE but no errors. state_v := SEND_CMD55; -- Repeat the CMD55, CMD41 sequence. else -- Some error occurred. state_v := REPORT_ERROR; -- Report the error and stall. end if; when WAIT_FOR_HOST_RW => -- Wait for the host to read or write a block of data from the SD card. clkDivider_v := SCLK_PHASE_PERIOD_C - 1; -- Set SPI clock frequency for normal operation. getCmdResponse_v := true; -- Get R1 response to any commands issued to the SD card. if rd_i = YES then -- send READ command and address to the SD card. cs_bo <= LO; -- Enable the SD card. if continue_i = YES then -- Multi-block read. Use stored address. if CARD_TYPE_G = SD_CARD_E then -- SD cards use byte-addressing, addr_v := addr_v + BLOCK_SIZE_G; -- so add block-size to get next block address. else -- SDHC cards use block-addressing, addr_v := addr_v + 1; -- so just increment current block address. end if; txCmd_v := READ_BLK_CMD_C & std_logic_vector(addr_v) & FAKE_CRC_C; else -- Single-block read. txCmd_v := READ_BLK_CMD_C & addr_i & FAKE_CRC_C; -- Use address supplied by host. addr_v := unsigned(addr_i); -- Store address for multi-block operations. end if; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. byteCnt_v := RD_BLK_SZ_C; state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := RD_BLK; -- Then go to this state to read the data block. elsif wr_i = YES then -- send WRITE command and address to the SD card. cs_bo <= LO; -- Enable the SD card. if continue_i = YES then -- Multi-block write. Use stored address. if CARD_TYPE_G = SD_CARD_E then -- SD cards use byte-addressing, addr_v := addr_v + BLOCK_SIZE_G; -- so add block-size to get next block address. else -- SDHC cards use block-addressing, addr_v := addr_v + 1; -- so just increment current block address. end if; txCmd_v := WRITE_BLK_CMD_C & std_logic_vector(addr_v) & FAKE_CRC_C; else -- Single-block write. txCmd_v := WRITE_BLK_CMD_C & addr_i & FAKE_CRC_C; -- Use address supplied by host. addr_v := unsigned(addr_i); -- Store address for multi-block operations. end if; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. byteCnt_v := WR_BLK_SZ_C; -- Set number of bytes to write. state_v := START_TX; -- Go to this FSM subroutine to send the command rtnState_v := WR_BLK; -- then go to this state to write the data block. else -- Do nothing and wait for command from host. cs_bo <= HI; -- Deselect the SD card. busy_o <= NO; -- SD card interface is waiting for R/W from host, so it's not busy. state_v := WAIT_FOR_HOST_RW; -- Keep waiting for command from host. end if; when RD_BLK => -- Read a block of data from the SD card. -- Some default values for these... rtnData_v := false; -- Data is only returned to host in one place. bitCnt_v := rx_v'length - 1; -- Receiving byte-sized data. state_v := RX_BITS; -- Call the bit receiver routine. rtnState_v := RD_BLK; -- Return here when done receiving a byte. if byteCnt_v = RD_BLK_SZ_C then -- Initial read to prime the pump. byteCnt_v := byteCnt_v - 1; elsif byteCnt_v = RD_BLK_SZ_C -1 then -- Then look for the data block start token. if rx_v = NO_TOKEN_C then -- Receiving 0xFF means the card hasn't responded yet. Keep trying. null; elsif rx_v = START_TOKEN_C then rtnData_v := true; -- Found the start token, so now start returning data byes to the host. byteCnt_v := byteCnt_v - 1; else -- Getting anything else means something strange has happened. state_v := REPORT_ERROR; end if; elsif byteCnt_v >= 3 then -- Now bytes of data from the SD card are received. rtnData_v := true; -- Return this data to the host. byteCnt_v := byteCnt_v - 1; elsif byteCnt_v = 2 then -- Receive the 1st CRC byte at the end of the data block. byteCnt_v := byteCnt_v - 1; elsif byteCnt_v = 1 then -- Receive the 2nd byteCnt_v := byteCnt_v - 1; else -- Reading is done, so deselect the SD card. sclk_r <= LO; bitCnt_v := 2; state_v := DESELECT; rtnState_v := WAIT_FOR_HOST_RW; end if; when WR_BLK => -- Write a block of data to the SD card. -- Some default values for these... getCmdResponse_v := false; -- Sending data bytes so there's no command response from SD card. bitCnt_v := txData_v'length; -- Transmitting byte-sized data. state_v := START_TX; -- Call the bit transmitter routine. rtnState_v := WR_BLK; -- Return here when done transmitting a byte. if byteCnt_v = WR_BLK_SZ_C then txData_v := NO_TOKEN_C; -- Hold MOSI high for one byte before data block goes out. elsif byteCnt_v = WR_BLK_SZ_C - 1 then -- Send start token. txData_v := START_TOKEN_C; -- Starting token for data block. elsif byteCnt_v >= 4 then -- Now send bytes in the data block. hndShk_r <= HI; -- Signal host to provide data. -- The transmit shift register is loaded with data from host in the handshaking section above. elsif byteCnt_v = 3 or byteCnt_v = 2 then -- Send two phony CRC bytes at end of packet. txData_v := FAKE_CRC_C; elsif byteCnt_v = 1 then bitCnt_v := rx_v'length - 1; state_v := RX_BITS; -- Get response of SD card to the write operation. rtnState_v := WR_WAIT; else -- Check received response byte. if std_match(rx_v, DATA_ACCEPTED_C) then -- Data block was accepted. state_v := WR_WAIT; -- Wait for the SD card to finish writing the data into Flash. else -- Data block was rejected. error_o(15 downto 8) <= rx_v; state_v := REPORT_ERROR; -- Report the error. end if; end if; byteCnt_v := byteCnt_v - 1; when WR_WAIT => -- Wait for SD card to finish writing the data block. -- The SD card will pull MISO low while it is busy, and raise it when it is done. sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. if sclk_r = HI and miso_i = HI then -- Data block has been written, so deselect the SD card. bitCnt_v := 2; state_v := DESELECT; rtnState_v := WAIT_FOR_HOST_RW; end if; when START_TX => -- Start sending command/data by lowering SCLK and outputing MSB of command/data -- so it has plenty of setup before the rising edge of SCLK. sclk_r <= LO; -- Lower the SCLK (although it should already be low). sclkPhaseTimer_v := clkDivider_v; -- Set the duration of the low SCLK. mosi_o <= tx_v(tx_v'high); -- Output MSB of command/data. tx_v := tx_v(tx_v'high-1 downto 0) & ONE; -- Shift command/data register by one bit. bitCnt_v := bitCnt_v - 1; -- The first bit has been sent, so decrement bit counter. state_v := TX_BITS; -- Go here to shift out the rest of the command/data bits. when TX_BITS => -- Shift out remaining command/data bits and (possibly) get response from SD card. sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. if sclk_r = HI then -- SCLK is going to be flipped from high to low, so output the next command/data bit -- so it can setup while SCLK is low. if bitCnt_v /= 0 then -- Keep sending bits until the bit counter hits zero. mosi_o <= tx_v(tx_v'high); tx_v := tx_v(tx_v'high-1 downto 0) & ONE; bitCnt_v := bitCnt_v - 1; else if getCmdResponse_v then state_v := GET_CMD_RESPONSE; -- Get a response to the command from the SD card. bitCnt_v := Response_t'length - 1; -- Length of the expected response. else state_v := rtnState_v; -- Return to calling state (no need to get a response). sclkPhaseTimer_v := 0; -- Clear timer so next SPI op can begin ASAP with SCLK low. end if; end if; end if; when GET_CMD_RESPONSE => -- Get the response of the SD card to a command. if sclk_r = HI and miso_i = LO then -- MISO will be held high by SD card until 1st bit -- of R1 response, which is 0. rx_v := rx_v(rx_v'high-1 downto 0) & miso_i; -- Shift in the MSB bit of the response. bitCnt_v := bitCnt_v - 1; state_v := RX_BITS; -- Now receive the reset of the response. end if; sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. when RX_BITS => -- Receive bits from the SD card. if sclk_r = HI then -- Bits enter after the rising edge of SCLK. rx_v := rx_v(rx_v'high-1 downto 0) & miso_i; if bitCnt_v /= 0 then -- More bits left to receive. bitCnt_v := bitCnt_v - 1; else -- Last bit has been received. if rtnData_v then -- Send the received data to the host. data_o <= rx_v; -- Output received data to the host. hndShk_r <= HI; -- Signal to the host that the data is ready. end if; if doDeselect_v then bitCnt_v := 1; state_v := DESELECT; -- De-select SD card before returning. else state_v := rtnState_v; -- Otherwise, return to calling state without de-selecting. end if; end if; end if; sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. when DESELECT => -- De-select the SD card and send some clock pulses (Must enter with sclk at zero.) doDeselect_v := false; -- Once the de-select is done, clear the flag that caused it. cs_bo <= HI; -- De-select the SD card. mosi_o <= HI; -- Keep the data input of the SD card pulled high. state_v := PULSE_SCLK; -- Pulse the clock so the SD card will see the de-select. sclk_r <= LO; -- Clock is set low so the next rising edge will see the new CS and MOSI sclkPhaseTimer_v := clkDivider_v; -- Set the duration of the next clock phase. when PULSE_SCLK => -- Issue some clock pulses. (Must enter with sclk at zero.) if sclk_r = HI then if bitCnt_v /= 0 then bitCnt_v := bitCnt_v - 1; else -- Return to the calling routine when the pulse counter reaches zero. state_v := rtnState_v; end if; end if; sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. when REPORT_ERROR => -- Report the error code and stall here until a reset occurs. error_o(rx_v'range) <= rx_v; -- Output the SD card response as the error code. busy_o <= NO; -- Not busy. when others => state_v := START_INIT; end case; end if; end if; end process; sclk_o <= sclk_r; -- Output the generated SPI clock for the SD card. hndShk_o <= hndShk_r; -- Output the generated handshake to the host. end architecture rtl; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ architecture fake of SdCardCtrl is begin data_o <= (others => 'X'); -- Data read from block. busy_o <= LO; -- High when controller is busy performing some operation. cs_bo <= HI; -- Active-low chip-select. sclk_o <= LO; -- Serial clock to SD card. mosi_o <= HI; -- Serial data output to SD card. state <= (others => 'X'); -- state debugging only end architecture fake; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--********************************************************************** -- Copyright (c) 2012-2014 by XESS Corp <http://www.xess.com>. -- All rights reserved. -- -- This library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 3.0 of the License, or (at your option) any later version. -- -- This library 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. See the GNU -- Lesser General Public License for more details. -- -- You should have received a copy of the GNU Lesser General Public -- License along with this library. If not, see -- <http://www.gnu.org/licenses/>. --********************************************************************** --********************************************************************* -- SD MEMORY CARD INTERFACE -- -- Reads/writes a single or multiple blocks of data to/from an SD Flash card. -- -- Based on XESS by by Steven J. Merrifield, June 2008: -- http : //stevenmerrifield.com/tools/sd.vhd -- -- Most of what I learned about interfacing to SD/SDHC cards came from here: -- http://elm-chan.org/docs/mmc/mmc_e.html -- -- OPERATION -- -- Set-up: -- First of all, you have to give the controller a clock signal on the clk_i -- input with a higher frequency than the serial clock sent to the SD card -- through the sclk_o output. You can set generic parameters for the -- controller to tell it the master clock frequency (100 MHz), the SCLK -- frequency for initialization (400 KHz), the SCLK frequency for normal -- operation (25MHz), the size of data sectors in the Flash memory (512bytes), -- and the type of card (either SD or SDHC). I typically use a 100 MHz -- clock if I'm running an SD card with a 25 Mbps serial data stream. -- -- Initialize it: -- Pulsing the reset_i input high and then bringing it low again will make -- the controller initialize the SD card so it will XESS in SPI mode. -- Basically, it sends the card the commands CMD0, CMD8 and then ACMD41 (which -- is CMD55 followed by CMD41). The busy_o output will be high during the -- initialization and will go low once it is done. -- -- After the initialization command sequence, the SD card will send back an R1 -- response byte. If only the IDLE bit of the R1 response is set, then the -- controller will repeatedly re-try the ACMD41 command while busy_o remains -- high. -- -- If any other bit of the R1 response is set, then an error occurred. The -- controller will stall, lower busy_o, and output the R1 response code on the -- error_o bus. You'll have to pulse reset_i to unfreeze the controller. -- -- If the R1 response is all zeroes (i.e., no errors occurred during the -- initialization), then the controller will lower busy_o and wait for a -- read or write operation from the host. The controller will only accept new -- operations when busy_o is low. -- -- Write data: -- To write a data block to the SD card, the address of a block is placed -- on the addr_i input bus and the wr_i input is raised. The address and -- write strobe can be removed once busy_o goes high to indicate the write -- operation is underway. The data to be written to the SD card is passed as -- follows: -- -- 1. The controller requests a byte of data by raising the hndShk_o output. -- 2. The host applies the next byte to the data_i input bus and raises the -- hndShk_i input. -- 3. The controller accepts the byte and lowers the hndShk_o output. -- 4. The host lowers the hndShk_i input. -- -- This sequence of steps is repeated until all BLOCK_SIZE_G bytes of the -- data block are passed from the host to the controller. Once all the data -- is passed, the sector on the SD card will be written and the busy_o output -- will be lowered. -- -- Read data: -- To read a block of data from the SD card, the address of a block is -- placed on the addr_i input bus and the rd_i input is raised. The address -- and read strobe can be removed once busy_o goes high to indicate the read -- operation is underway. The data read from the SD card is passed to the -- host as follows: -- -- 1. The controller raises the hndShk_o output when the next data byte -- is available. -- 2. The host reads the byte from the data_o output bus and raises the -- hndShk_i input. -- 3. The controller lowers the hndShk_o output. -- 4. The host lowers the hndShk_i input. -- -- This sequence of steps is repeated until all BLOCK_SIZE_G bytes of the -- data block are passed from the controller to the host. Once all the data -- is read, the busy_o output will be lowered. -- -- Handle errors: -- If an error is detected during either a read or write operation, then the -- controller will stall, lower busy_o, and output an error code on the -- error_o bus. You'll have to pulse reset_i to unfreeze the controller. That -- may seem a bit excessive, but it does guarantee that you can't ignore any -- errors that occur. -- -- TODO: -- -- * Implement multi-block read and write commands. -- * Allow host to send/receive SPI commands/data directly to -- the SD card through the controller. -- ********************************************************************* ------------------------------------------------------------------------------ -- Commonly-used functions and constants. ------------------------------------------------------------------------------ library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; package CommonPckg is -- constant YES : std_logic := '1'; -- constant NO : std_logic := '0'; -- constant HI : std_logic := '1'; -- constant LO : std_logic := '0'; -- constant ONE : std_logic := '1'; -- constant ZERO : std_logic := '0'; constant HIZ : std_logic := 'Z'; -- FPGA chip families. type FpgaFamily_t is (SPARTAN3A_E, SPARTAN6_E); -- XESS FPGA boards. type XessBoard_t is (XULA_E, XULA2_E); -- Convert a Boolean to a std_logic. function BooleanToStdLogic(b : in boolean) return std_logic; -- Find the base-2 logarithm of a number. function Log2(v : in natural) return natural; -- Select one of two integers based on a Boolean. function IntSelect(s : in boolean; a : in integer; b : in integer) return integer; -- Select one of two reals based on a Boolean. function RealSelect(s : in boolean; a : in real; b : in real) return real; -- Convert a binary number to a graycode number. function BinaryToGray(b : in std_logic_vector) return std_logic_vector; -- Convert a graycode number to a binary number. function GrayToBinary(g : in std_logic_vector) return std_logic_vector; -- Find the maximum of two integers. function IntMax(a : in integer; b : in integer) return integer; end package; library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; package body CommonPckg is -- Convert a Boolean to a std_logic. function BooleanToStdLogic(b : in boolean) return std_logic is variable s : std_logic; begin if b then s := '1'; else s := '0'; end if; return s; end function BooleanToStdLogic; -- Find the base 2 logarithm of a number. function Log2(v : in natural) return natural is variable n : natural; variable logn : natural; begin n := 1; for i in 0 to 128 loop logn := i; exit when (n >= v); n := n * 2; end loop; return logn; end function Log2; -- Select one of two integers based on a Boolean. function IntSelect(s : in boolean; a : in integer; b : in integer) return integer is begin if s then return a; else return b; end if; return a; end function IntSelect; -- Select one of two reals based on a Boolean. function RealSelect(s : in boolean; a : in real; b : in real) return real is begin if s then return a; else return b; end if; return a; end function RealSelect; -- Convert a binary number to a graycode number. function BinaryToGray(b : in std_logic_vector) return std_logic_vector is variable g : std_logic_vector(b'range); begin for i in b'low to b'high-1 loop g(i) := b(i) xor b(i+1); end loop; g(b'high) := b(b'high); return g; end function BinaryToGray; -- Convert a graycode number to a binary number. function GrayToBinary(g : in std_logic_vector) return std_logic_vector is variable b : std_logic_vector(g'range); begin b(b'high) := g(b'high); for i in g'high-1 downto g'low loop b(i) := b(i+1) xor g(i); end loop; return b; end function GrayToBinary; -- Find the maximum of two integers. function IntMax(a : in integer; b : in integer) return integer is begin if a > b then return a; else return b; end if; return a; end function IntMax; end package body; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use work.CommonPckg.all; use work.p_wires.all; package SdCardPckg is type CardType_t is (SD_CARD_E, SDHC_CARD_E); -- Define the different types of SD cards. component SdCardCtrl is generic ( FREQ_G : real := 100.0; -- Master clock frequency (MHz). INIT_SPI_FREQ_G : real := 0.4; -- Slow SPI clock freq. during initialization (MHz). SPI_FREQ_G : real := 25.0; -- Operational SPI freq. to the SD card (MHz). BLOCK_SIZE_G : natural := 512; -- Number of bytes in an SD card block or sector. CARD_TYPE_G : CardType_t := SD_CARD_E -- Type of SD card connected to this controller. ); port ( -- Host-side interface signals. clk_i : in std_logic; -- Master clock. reset_i : in std_logic := NO; -- active-high, synchronous reset. rd_i : in std_logic := NO; -- active-high read block request. wr_i : in std_logic := NO; -- active-high write block request. continue_i : in std_logic := NO; -- If true, inc address and continue R/W. addr_i : in std_logic_vector(31 downto 0) := x"00000000"; -- Block address. data_i : in std_logic_vector(7 downto 0) := x"00"; -- Data to write to block. data_o : out std_logic_vector(7 downto 0) := x"00"; -- Data read from block. busy_o : out std_logic; -- High when controller is busy performing some operation. hndShk_i : in std_logic; -- High when host has data to give or has taken data. hndShk_o : out std_logic; -- High when controller has taken data or has data to give. error_o : out std_logic_vector(15 downto 0) := (others => NO); -- I/O signals to the external SD card. cs_bo : out std_logic := HI; -- Active-low chip-select. sclk_o : out std_logic := LO; -- Serial clock to SD card. mosi_o : out std_logic := HI; -- Serial data output to SD card. miso_i : in std_logic := ZERO; -- Serial data input from SD card. state : out std_logic_vector(4 downto 0) -- state debugging only ); end component; end package; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ library IEEE; use IEEE.math_real.all; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use work.CommonPckg.all; use work.SdCardPckg.all; use work.p_wires.all; entity SdCardCtrl is generic ( FREQ_G : real := 100.0; -- Master clock frequency (MHz). INIT_SPI_FREQ_G : real := 0.4; -- Slow SPI clock freq. during initialization (MHz). SPI_FREQ_G : real := 25.0; -- Operational SPI freq. to the SD card (MHz). BLOCK_SIZE_G : natural := 512; -- Number of bytes in an SD card block or sector. CARD_TYPE_G : CardType_t := SD_CARD_E -- Type of SD card connected to this controller. ); port ( -- Host-side interface signals. clk_i : in std_logic; -- Master clock. reset_i : in std_logic := NO; -- active-high, synchronous reset. rd_i : in std_logic := NO; -- active-high read block request. wr_i : in std_logic := NO; -- active-high write block request. continue_i : in std_logic := NO; -- If true, inc address and continue R/W. addr_i : in std_logic_vector(31 downto 0) := x"00000000"; -- Block address. data_i : in std_logic_vector(7 downto 0) := x"00"; -- Data to write to block. data_o : out std_logic_vector(7 downto 0) := x"00"; -- Data read from block. busy_o : out std_logic; -- High when controller is busy performing some operation. hndShk_i : in std_logic; -- High when host has data to give or has taken data. hndShk_o : out std_logic; -- High when controller has taken data or has data to give. error_o : out std_logic_vector(15 downto 0) := (others => NO); -- I/O signals to the external SD card. cs_bo : out std_logic := HI; -- Active-low chip-select. sclk_o : out std_logic := LO; -- Serial clock to SD card. mosi_o : out std_logic := HI; -- Serial data output to SD card. miso_i : in std_logic := ZERO; -- Serial data input from SD card. state : out std_logic_vector(4 downto 0) -- state debugging only ); end entity; architecture rtl of SdCardCtrl is signal sclk_r : std_logic := ZERO; -- Register output drives SD card clock. signal hndShk_r : std_logic := NO; -- Register output drives handshake output to host. signal sd_state_dbg : integer:= 0; -- debugging only begin process(clk_i) -- FSM process for the SD card controller. type FsmState_t is ( -- States of the SD card controller FSM. START_INIT, -- 0 Send initialization clock pulses to the deselected SD card. SEND_CMD0, -- 1 Put the SD card in the IDLE state. CHK_CMD0_RESPONSE, -- 2 Check card's R1 response to the CMD0. SEND_CMD8, -- 3 This command is needed to initialize SDHC cards. GET_CMD8_RESPONSE, -- 4 Get the R7 response to CMD8. SEND_CMD55, -- 5 Send CMD55 to the SD card. SEND_CMD41, -- 6 Send CMD41 to the SD card. CHK_ACMD41_RESPONSE, -- 7 Check if the SD card has left the IDLE state. WAIT_FOR_HOST_RW, -- 8 Wait for the host to issue a read or write command. RD_BLK, -- 9 Read a block of data from the SD card. WR_BLK, -- 10 Write a block of data to the SD card. WR_WAIT, -- 11 Wait for SD card to finish writing the data block. START_TX, -- 12 Start sending command/data. TX_BITS, -- 13 Shift out remaining command/data bits. GET_CMD_RESPONSE, -- 14 Get the R1 response of the SD card to a command. RX_BITS, -- 15 Receive response/data from the SD card. DESELECT, -- 16 De-select the SD card and send some clock pulses (Must enter with sclk at zero.) PULSE_SCLK, -- 17 Issue some clock pulses. (Must enter with sclk at zero.) REPORT_ERROR -- 18 Report error and stall until reset. ); attribute SYN_ENCODING of FsmState_t : type is "safe"; variable state_v : FsmState_t := START_INIT; -- Current state of the FSM. variable rtnState_v : FsmState_t; -- State FSM returns to when FSM subroutine completes. -- Timing constants based on the master clock frequency and the SPI SCLK frequencies. constant CLKS_PER_INIT_SCLK_C : real := FREQ_G / INIT_SPI_FREQ_G; constant CLKS_PER_SCLK_C : real := FREQ_G / SPI_FREQ_G; constant MAX_CLKS_PER_SCLK_C : real := realmax(CLKS_PER_INIT_SCLK_C, CLKS_PER_SCLK_C); constant MAX_CLKS_PER_SCLK_PHASE_C : natural := integer(round(MAX_CLKS_PER_SCLK_C / 2.0)); constant INIT_SCLK_PHASE_PERIOD_C : natural := integer(round(CLKS_PER_INIT_SCLK_C / 2.0)); constant SCLK_PHASE_PERIOD_C : natural := integer(round(CLKS_PER_SCLK_C / 2.0)); constant DELAY_BETWEEN_BLOCK_RW_C : natural := SCLK_PHASE_PERIOD_C; -- Registers for generating slow SPI SCLK from the faster master clock. variable clkDivider_v : natural range 0 to MAX_CLKS_PER_SCLK_PHASE_C; -- Holds the SCLK period. variable sclkPhaseTimer_v : natural range 0 to MAX_CLKS_PER_SCLK_PHASE_C; -- Counts down to zero, then SCLK toggles. constant NUM_INIT_CLKS_C : natural := 160; -- Number of initialization clocks to SD card. variable bitCnt_v : natural range 0 to NUM_INIT_CLKS_C; -- Tx/Rx bit counter. constant CRC_SZ_C : natural := 2; -- Number of CRC bytes for read/write blocks. -- When reading blocks of data, get 0xFE + [DATA_BLOCK] + [CRC]. constant RD_BLK_SZ_C : natural := 1 + BLOCK_SIZE_G + CRC_SZ_C; -- When writing blocks of data, send 0xFF + 0xFE + [DATA BLOCK] + [CRC] then receive response byte. constant WR_BLK_SZ_C : natural := 1 + 1 + BLOCK_SIZE_G + CRC_SZ_C + 1; variable byteCnt_v : natural range 0 to IntMax(WR_BLK_SZ_C, RD_BLK_SZ_C); -- Tx/Rx byte counter. -- Command bytes for various SD card operations. subtype Cmd_t is std_logic_vector(7 downto 0); constant CMD0_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 0, Cmd_t'length)); constant CMD8_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 8, Cmd_t'length)); constant CMD55_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 55, Cmd_t'length)); constant CMD41_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 41, Cmd_t'length)); constant READ_BLK_CMD_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 17, Cmd_t'length)); constant WRITE_BLK_CMD_C : Cmd_t := std_logic_vector(to_unsigned(16#40# + 24, Cmd_t'length)); -- Except for CMD0 and CMD8, SD card ops don't need a CRC, so use a fake one for that slot in the command. constant FAKE_CRC_C : std_logic_vector(7 downto 0) := x"FF"; variable addr_v : unsigned(addr_i'range); -- Address of current block for R/W operations. -- Maximum Tx to SD card consists of command + address + CRC. Data Tx is just a single byte. variable tx_v : std_logic_vector(CMD0_C'length + addr_v'length + FAKE_CRC_C'length - 1 downto 0); -- Data/command to SD card. alias txCmd_v is tx_v; -- Command transmission shift register. alias txData_v is tx_v(tx_v'high downto tx_v'high - data_i'length + 1); -- Data byte transmission shift register. variable rx_v : std_logic_vector(data_i'range); -- Data/response byte received from SD card. -- Various response codes. subtype Response_t is std_logic_vector(rx_v'range); constant ACTIVE_NO_ERRORS_C : Response_t := "00000000"; -- Normal R1 code after initialization. constant IDLE_NO_ERRORS_C : Response_t := "00000001"; -- Normal R1 code after CMD0. constant DATA_ACCEPTED_C : Response_t := "---00101"; -- SD card accepts data block from host. constant DATA_REJ_CRC_C : Response_t := "---01011"; -- SD card rejects data block from host due to CRC error. constant DATA_REJ_WERR_C : Response_t := "---01101"; -- SD card rejects data block from host due to write error. -- Various tokens. subtype Token_t is std_logic_vector(rx_v'range); constant NO_TOKEN_C : Token_t := x"FF"; -- Received before the SD card responds to a block read command. constant START_TOKEN_C : Token_t := x"FE"; -- Starting byte preceding a data block. -- Flags that are set/cleared to affect the operation of the FSM. variable getCmdResponse_v : boolean; -- When true, get R1 response to command sent to SD card. variable rtnData_v : boolean; -- When true, signal to host when a data byte arrives from SD card. variable doDeselect_v : boolean; -- When true, de-select SD card after a command is issued. begin sd_state_dbg <= FsmState_t'pos(state_v); -- debugging only state <= std_logic_vector(to_unsigned(sd_state_dbg, 5)); if rising_edge(clk_i) then if reset_i = YES then -- Perform a reset. state_v := START_INIT; -- Send the FSM to the initialization entry-point. sclkPhaseTimer_v := 0; -- Don't delay the initialization right after reset. busy_o <= YES; -- Busy while the SD card interface is being initialized. elsif sclkPhaseTimer_v /= 0 then -- Setting the clock phase timer to a non-zero value delays any further actions -- and generates the slower SPI clock from the faster master clock. sclkPhaseTimer_v := sclkPhaseTimer_v - 1; -- Clock phase timer has reached zero, so check handshaking sync. between host and controller. -- Handshaking lets the host control the flow of data to/from the SD card controller. -- Handshaking between the SD card controller and the host proceeds as follows: -- 1: Controller raises its handshake and waits. -- 2: Host sees controller handshake and raises its handshake in acknowledgement. -- 3: Controller sees host handshake acknowledgement and lowers its handshake. -- 4: Host sees controller lower its handshake and removes its handshake. -- -- Handshaking is bypassed when the controller FSM is initializing the SD card. elsif state_v /= START_INIT and hndShk_r = HI and hndShk_i = LO then null; -- Waiting for the host to acknowledge handshake. elsif state_v /= START_INIT and hndShk_r = HI and hndShk_i = HI then txData_v := data_i; -- Get any data passed from the host. hndShk_r <= LO; -- The host acknowledged, so lower the controller handshake. elsif state_v /= START_INIT and hndShk_r = LO and hndShk_i = HI then null; -- Waiting for the host to lower its handshake. elsif (state_v = START_INIT) or (hndShk_r = LO and hndShk_i = LO) then -- Both handshakes are low, so the controller operations can proceed. busy_o <= YES; -- Busy by default. Only false when waiting for R/W from host or stalled by error. case state_v is when START_INIT => -- Deselect the SD card and send it a bunch of clock pulses with MOSI high. error_o <= (others => ZERO); -- Clear error flags. clkDivider_v := INIT_SCLK_PHASE_PERIOD_C - 1; -- Use slow SPI clock freq during init. sclkPhaseTimer_v := INIT_SCLK_PHASE_PERIOD_C - 1; -- and set the duration of the next clock phase. sclk_r <= LO; -- Start with low clock to the SD card. hndShk_r <= LO; -- Initialize handshake signal. addr_v := (others => ZERO); -- Initialize address. rtnData_v := false; -- No data is returned to host during initialization. bitCnt_v := NUM_INIT_CLKS_C; -- Generate this many clock pulses. state_v := DESELECT; -- De-select the SD card and pulse SCLK. rtnState_v := SEND_CMD0; -- Then go to this state after the clock pulses are done. when SEND_CMD0 => -- Put the SD card in the IDLE state. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD0_C & x"00000000" & x"95"; -- 0x95 is the correct CRC for this command. bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := true; -- De-select SD card after this command finishes. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := CHK_CMD0_RESPONSE; -- Then check the response to the command. when CHK_CMD0_RESPONSE => -- Check card's R1 response to the CMD0. if rx_v = IDLE_NO_ERRORS_C then state_v := SEND_CMD8; -- Continue init if SD card is in IDLE state with no errors else state_v := SEND_CMD0; -- Otherwise, try CMD0 again. end if; when SEND_CMD8 => -- This command is needed to initialize SDHC cards. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD8_C & x"000001aa" & x"87"; -- 0x87 is the correct CRC for this command. bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := false; -- Don't de-select, need to get the R7 response sent from the SD card. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := GET_CMD8_RESPONSE; -- Then go to this state after the command is sent. when GET_CMD8_RESPONSE => -- Get the R7 response to CMD8. cs_bo <= LO; -- The SD card should already be enabled, but let's be explicit. bitCnt_v := 31; -- Four bytes (32 bits) in R7 response. getCmdResponse_v := false; -- Not sending a command that generates a response. doDeselect_v := true; -- De-select card to end the command after getting the four bytes. state_v := RX_BITS; -- Go to FSM subroutine to get the R7 response. rtnState_v := SEND_CMD55; -- Then go here (we don't care what the actual R7 response is). when SEND_CMD55 => -- Send CMD55 as preamble of ACMD41 initialization command. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD55_C & x"00000000" & FAKE_CRC_C; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := true; -- De-select SD card after this command finishes. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := SEND_CMD41; -- Then go to this state after the command is sent. when SEND_CMD41 => -- Send the SD card the initialization command. cs_bo <= LO; -- Enable the SD card. txCmd_v := CMD41_C & x"40000000" & FAKE_CRC_C; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. getCmdResponse_v := true; -- Sending a command that generates a response. doDeselect_v := true; -- De-select SD card after this command finishes. state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := CHK_ACMD41_RESPONSE; -- Then check the response to the command. when CHK_ACMD41_RESPONSE => -- The CMD55, CMD41 sequence should cause the SD card to leave the IDLE state -- and become ready for SPI read/write operations. If still IDLE, then repeat the CMD55, CMD41 sequence. -- If one of the R1 error flags is set, then report the error and stall. if rx_v = ACTIVE_NO_ERRORS_C then -- Not IDLE, no errors. state_v := WAIT_FOR_HOST_RW; -- Start processing R/W commands from the host. elsif rx_v = IDLE_NO_ERRORS_C then -- Still IDLE but no errors. state_v := SEND_CMD55; -- Repeat the CMD55, CMD41 sequence. else -- Some error occurred. state_v := REPORT_ERROR; -- Report the error and stall. end if; when WAIT_FOR_HOST_RW => -- Wait for the host to read or write a block of data from the SD card. clkDivider_v := SCLK_PHASE_PERIOD_C - 1; -- Set SPI clock frequency for normal operation. getCmdResponse_v := true; -- Get R1 response to any commands issued to the SD card. if rd_i = YES then -- send READ command and address to the SD card. cs_bo <= LO; -- Enable the SD card. if continue_i = YES then -- Multi-block read. Use stored address. if CARD_TYPE_G = SD_CARD_E then -- SD cards use byte-addressing, addr_v := addr_v + BLOCK_SIZE_G; -- so add block-size to get next block address. else -- SDHC cards use block-addressing, addr_v := addr_v + 1; -- so just increment current block address. end if; txCmd_v := READ_BLK_CMD_C & std_logic_vector(addr_v) & FAKE_CRC_C; else -- Single-block read. txCmd_v := READ_BLK_CMD_C & addr_i & FAKE_CRC_C; -- Use address supplied by host. addr_v := unsigned(addr_i); -- Store address for multi-block operations. end if; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. byteCnt_v := RD_BLK_SZ_C; state_v := START_TX; -- Go to FSM subroutine to send the command. rtnState_v := RD_BLK; -- Then go to this state to read the data block. elsif wr_i = YES then -- send WRITE command and address to the SD card. cs_bo <= LO; -- Enable the SD card. if continue_i = YES then -- Multi-block write. Use stored address. if CARD_TYPE_G = SD_CARD_E then -- SD cards use byte-addressing, addr_v := addr_v + BLOCK_SIZE_G; -- so add block-size to get next block address. else -- SDHC cards use block-addressing, addr_v := addr_v + 1; -- so just increment current block address. end if; txCmd_v := WRITE_BLK_CMD_C & std_logic_vector(addr_v) & FAKE_CRC_C; else -- Single-block write. txCmd_v := WRITE_BLK_CMD_C & addr_i & FAKE_CRC_C; -- Use address supplied by host. addr_v := unsigned(addr_i); -- Store address for multi-block operations. end if; bitCnt_v := txCmd_v'length; -- Set bit counter to the size of the command. byteCnt_v := WR_BLK_SZ_C; -- Set number of bytes to write. state_v := START_TX; -- Go to this FSM subroutine to send the command rtnState_v := WR_BLK; -- then go to this state to write the data block. else -- Do nothing and wait for command from host. cs_bo <= HI; -- Deselect the SD card. busy_o <= NO; -- SD card interface is waiting for R/W from host, so it's not busy. state_v := WAIT_FOR_HOST_RW; -- Keep waiting for command from host. end if; when RD_BLK => -- Read a block of data from the SD card. -- Some default values for these... rtnData_v := false; -- Data is only returned to host in one place. bitCnt_v := rx_v'length - 1; -- Receiving byte-sized data. state_v := RX_BITS; -- Call the bit receiver routine. rtnState_v := RD_BLK; -- Return here when done receiving a byte. if byteCnt_v = RD_BLK_SZ_C then -- Initial read to prime the pump. byteCnt_v := byteCnt_v - 1; elsif byteCnt_v = RD_BLK_SZ_C -1 then -- Then look for the data block start token. if rx_v = NO_TOKEN_C then -- Receiving 0xFF means the card hasn't responded yet. Keep trying. null; elsif rx_v = START_TOKEN_C then rtnData_v := true; -- Found the start token, so now start returning data byes to the host. byteCnt_v := byteCnt_v - 1; else -- Getting anything else means something strange has happened. state_v := REPORT_ERROR; end if; elsif byteCnt_v >= 3 then -- Now bytes of data from the SD card are received. rtnData_v := true; -- Return this data to the host. byteCnt_v := byteCnt_v - 1; elsif byteCnt_v = 2 then -- Receive the 1st CRC byte at the end of the data block. byteCnt_v := byteCnt_v - 1; elsif byteCnt_v = 1 then -- Receive the 2nd byteCnt_v := byteCnt_v - 1; else -- Reading is done, so deselect the SD card. sclk_r <= LO; bitCnt_v := 2; state_v := DESELECT; rtnState_v := WAIT_FOR_HOST_RW; end if; when WR_BLK => -- Write a block of data to the SD card. -- Some default values for these... getCmdResponse_v := false; -- Sending data bytes so there's no command response from SD card. bitCnt_v := txData_v'length; -- Transmitting byte-sized data. state_v := START_TX; -- Call the bit transmitter routine. rtnState_v := WR_BLK; -- Return here when done transmitting a byte. if byteCnt_v = WR_BLK_SZ_C then txData_v := NO_TOKEN_C; -- Hold MOSI high for one byte before data block goes out. elsif byteCnt_v = WR_BLK_SZ_C - 1 then -- Send start token. txData_v := START_TOKEN_C; -- Starting token for data block. elsif byteCnt_v >= 4 then -- Now send bytes in the data block. hndShk_r <= HI; -- Signal host to provide data. -- The transmit shift register is loaded with data from host in the handshaking section above. elsif byteCnt_v = 3 or byteCnt_v = 2 then -- Send two phony CRC bytes at end of packet. txData_v := FAKE_CRC_C; elsif byteCnt_v = 1 then bitCnt_v := rx_v'length - 1; state_v := RX_BITS; -- Get response of SD card to the write operation. rtnState_v := WR_WAIT; else -- Check received response byte. if std_match(rx_v, DATA_ACCEPTED_C) then -- Data block was accepted. state_v := WR_WAIT; -- Wait for the SD card to finish writing the data into Flash. else -- Data block was rejected. error_o(15 downto 8) <= rx_v; state_v := REPORT_ERROR; -- Report the error. end if; end if; byteCnt_v := byteCnt_v - 1; when WR_WAIT => -- Wait for SD card to finish writing the data block. -- The SD card will pull MISO low while it is busy, and raise it when it is done. sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. if sclk_r = HI and miso_i = HI then -- Data block has been written, so deselect the SD card. bitCnt_v := 2; state_v := DESELECT; rtnState_v := WAIT_FOR_HOST_RW; end if; when START_TX => -- Start sending command/data by lowering SCLK and outputing MSB of command/data -- so it has plenty of setup before the rising edge of SCLK. sclk_r <= LO; -- Lower the SCLK (although it should already be low). sclkPhaseTimer_v := clkDivider_v; -- Set the duration of the low SCLK. mosi_o <= tx_v(tx_v'high); -- Output MSB of command/data. tx_v := tx_v(tx_v'high-1 downto 0) & ONE; -- Shift command/data register by one bit. bitCnt_v := bitCnt_v - 1; -- The first bit has been sent, so decrement bit counter. state_v := TX_BITS; -- Go here to shift out the rest of the command/data bits. when TX_BITS => -- Shift out remaining command/data bits and (possibly) get response from SD card. sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. if sclk_r = HI then -- SCLK is going to be flipped from high to low, so output the next command/data bit -- so it can setup while SCLK is low. if bitCnt_v /= 0 then -- Keep sending bits until the bit counter hits zero. mosi_o <= tx_v(tx_v'high); tx_v := tx_v(tx_v'high-1 downto 0) & ONE; bitCnt_v := bitCnt_v - 1; else if getCmdResponse_v then state_v := GET_CMD_RESPONSE; -- Get a response to the command from the SD card. bitCnt_v := Response_t'length - 1; -- Length of the expected response. else state_v := rtnState_v; -- Return to calling state (no need to get a response). sclkPhaseTimer_v := 0; -- Clear timer so next SPI op can begin ASAP with SCLK low. end if; end if; end if; when GET_CMD_RESPONSE => -- Get the response of the SD card to a command. if sclk_r = HI and miso_i = LO then -- MISO will be held high by SD card until 1st bit -- of R1 response, which is 0. rx_v := rx_v(rx_v'high-1 downto 0) & miso_i; -- Shift in the MSB bit of the response. bitCnt_v := bitCnt_v - 1; state_v := RX_BITS; -- Now receive the reset of the response. end if; sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. when RX_BITS => -- Receive bits from the SD card. if sclk_r = HI then -- Bits enter after the rising edge of SCLK. rx_v := rx_v(rx_v'high-1 downto 0) & miso_i; if bitCnt_v /= 0 then -- More bits left to receive. bitCnt_v := bitCnt_v - 1; else -- Last bit has been received. if rtnData_v then -- Send the received data to the host. data_o <= rx_v; -- Output received data to the host. hndShk_r <= HI; -- Signal to the host that the data is ready. end if; if doDeselect_v then bitCnt_v := 1; state_v := DESELECT; -- De-select SD card before returning. else state_v := rtnState_v; -- Otherwise, return to calling state without de-selecting. end if; end if; end if; sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. when DESELECT => -- De-select the SD card and send some clock pulses (Must enter with sclk at zero.) doDeselect_v := false; -- Once the de-select is done, clear the flag that caused it. cs_bo <= HI; -- De-select the SD card. mosi_o <= HI; -- Keep the data input of the SD card pulled high. state_v := PULSE_SCLK; -- Pulse the clock so the SD card will see the de-select. sclk_r <= LO; -- Clock is set low so the next rising edge will see the new CS and MOSI sclkPhaseTimer_v := clkDivider_v; -- Set the duration of the next clock phase. when PULSE_SCLK => -- Issue some clock pulses. (Must enter with sclk at zero.) if sclk_r = HI then if bitCnt_v /= 0 then bitCnt_v := bitCnt_v - 1; else -- Return to the calling routine when the pulse counter reaches zero. state_v := rtnState_v; end if; end if; sclk_r <= not sclk_r; -- Toggle the SPI clock... sclkPhaseTimer_v := clkDivider_v; -- and set the duration of the next clock phase. when REPORT_ERROR => -- Report the error code and stall here until a reset occurs. error_o(rx_v'range) <= rx_v; -- Output the SD card response as the error code. busy_o <= NO; -- Not busy. when others => state_v := START_INIT; end case; end if; end if; end process; sclk_o <= sclk_r; -- Output the generated SPI clock for the SD card. hndShk_o <= hndShk_r; -- Output the generated handshake to the host. end architecture rtl; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ architecture fake of SdCardCtrl is begin data_o <= (others => 'X'); -- Data read from block. busy_o <= LO; -- High when controller is busy performing some operation. cs_bo <= HI; -- Active-low chip-select. sclk_o <= LO; -- Serial clock to SD card. mosi_o <= HI; -- Serial data output to SD card. state <= (others => 'X'); -- state debugging only end architecture fake; -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
------------------------------------------------------------------------------ -- -- Id : $Id: $ -- File : $Url: $ -- Author : Christian Plessl <plessl@tik.ee.ethz.ch> -- Company : Swiss Federal Institute of Technology (ETH) Zurich -- Created : 2004/10/27 -- Changed : $LastChangedDate: 2004-10-26 14:50:34 +0200 (Tue, 26 Oct 2004) $ ------------------------------------------------------------------------------ library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.archConfigPkg.all; use work.ZArchPkg.all; use work.ConfigPkg.all; ------------------------------------------------------------------------------ -- Package Declaration ------------------------------------------------------------------------------ package CfgLib_TSTPASS_VIRT is function tstpasscfg_p0 return engineConfigRec; function tstpasscfg_p1 return engineConfigRec; end CfgLib_TSTPASS_VIRT; ------------------------------------------------------------------------------ -- Package Body ------------------------------------------------------------------------------ package body CfgLib_TSTPASS_VIRT is ---------------------------------------------------------------------------- -- tstpass partition p0 configuration ---------------------------------------------------------------------------- function tstpasscfg_p0 return engineConfigRec is variable cfg : engineConfigRec := init_engineConfig; begin -- c_0_0 op0 cfg.gridConf(0)(0).procConf.AluOpxS := ALU_OP_ADD; -- i.0 cfg.gridConf(0)(0).procConf.OpMuxS(0) := I_NOREG; cfg.gridConf(0)(0).routConf.i(0).HBusNxE(0) := '1'; -- i.1 cfg.gridConf(0)(0).procConf.OpMuxS(1) := I_NOREG; cfg.gridConf(0)(0).routConf.i(1).LocalxE(LOCAL_S) := '1'; -- o.0 cfg.gridConf(0)(0).procConf.OutMuxS := O_NOREG; -- c_0_1 opt01 cfg.gridConf(0)(1).procConf.AluOpxS := ALU_OP_PASS0; -- i.0 cfg.gridConf(0)(1).procConf.OpMuxS(0) := I_NOREG; cfg.gridConf(0)(1).routConf.i(0).LocalxE(LOCAL_W) := '1'; -- o.0 --cfg.gridConf(0)(1).procConf.OpMuxS(0) := O_REG_CTX_THIS; -- superfluous, result is registered anyway. ?? -- none, transfer register from ctx0 to ctx1 -- c_1_0 opt10 --cfg.gridConf(0)(1).procConf.AluOpxS := alu_pass0; -- i.0 -- none, transfer register from ctx1 to ctx0 -- o.0 cfg.gridConf(1)(0).procConf.OutMuxS := O_REG_CTX_OTHER; cfg.gridConf(1)(0).procConf.OutCtxRegSelxS := i2ctx(1); -- input drivers cfg.inputDriverConf(0)(0)(0) := '1'; -- output drivers -- none -- IO port configuration cfg.inportConf(0).LUT4FunctxD := CFG_IOPORT_ON; cfg.inportConf(1).LUT4FunctxD := CFG_IOPORT_OFF; cfg.outportConf(0).LUT4FunctxD := CFG_IOPORT_OFF; cfg.outportConf(1).LUT4FunctxD := CFG_IOPORT_OFF; return cfg; end tstpasscfg_p0; ---------------------------------------------------------------------------- -- tstpass partition p1 configuration ---------------------------------------------------------------------------- function tstpasscfg_p1 return engineConfigRec is variable cfg : engineConfigRec := init_engineConfig; begin -- c_0_1 opt01 -- i.0 -- none transfer from ctx0 to ctx1 -- o.0 cfg.gridConf(0)(1).procConf.OutMuxS := O_REG_CTX_OTHER; cfg.gridConf(0)(1).procConf.OutCtxRegSelxS := i2ctx(0); -- drive hbusn_1.0, which is connected to outport cfg.gridConf(0)(1).routConf.o.HBusNxE(0) := '1'; -- c_1_0 opt10 cfg.gridConf(1)(0).procConf.AluOpxS := ALU_OP_PASS0; -- i.0 cfg.gridConf(1)(0).procConf.OpMuxS(0) := I_NOREG; cfg.gridConf(1)(0).routConf.i(0).LocalxE(LOCAL_NE) := '1'; -- o.0 -- none, transfer register from ctx1 to ctx0 -- input drivers -- none -- output drivers cfg.outputDriverConf(1)(1)(0) := '1'; -- IO port configuration cfg.inportConf(0).LUT4FunctxD := CFG_IOPORT_OFF; cfg.inportConf(1).LUT4FunctxD := CFG_IOPORT_OFF; cfg.outportConf(0).LUT4FunctxD := CFG_IOPORT_OFF; cfg.outportConf(1).LUT4FunctxD := CFG_IOPORT_ON; return cfg; end tstpasscfg_p1; end CfgLib_TSTPASS_VIRT;
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.numeric_std.all; use IEEE.STD_LOGIC_UNSIGNED.ALL; use work.custom_pkg.all; -- num_neurons defined in the custom_package -- entity controller is port ( clk : in std_logic; reset : in std_logic; output : out std_logic_vector(7 downto 0) ); end controller; architecture Behavioral of controller is signal num_operations, input, dina_image, image, output_temp, predict : std_logic_vector(7 downto 0); signal in_weight_hid, out_weight_hid, in_weight_out, out_weight_out : std_logic_vector((num_neurons*8)-1 downto 0); signal addr_weight_hid, addra_image : std_logic_vector(7 downto 0); signal addr_weight_out : std_logic_vector(5 downto 0); signal layer : layer_type; signal weight : eight_bit(num_neurons-1 downto 0); signal output_hid : eight_bit(num_neurons-1 downto 0); signal layer_output : eight_bit(num_neurons downto 0); signal shift_over_flag, active_activation, rst_layer, predict_en : std_logic; signal curr_state,next_state : layer_type; COMPONENT test_image PORT ( clka : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(7 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(7 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) ); END COMPONENT; COMPONENT weight_hid PORT ( clka : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(7 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(319 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(319 DOWNTO 0) ); END COMPONENT; COMPONENT weight_out PORT ( clka : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(5 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(319 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(319 DOWNTO 0) ); END COMPONENT; COMPONENT hidden_layer generic ( N : Integer ); port ( clk : in std_logic ; num_operations : in std_logic_vector(7 downto 0); layer : in layer_type; rst : in std_logic ; input : in std_logic_vector(7 downto 0); weight : in eight_bit(N-1 downto 0); shift_over_flag : out std_logic; active_activation : out std_logic; output_hid : out eight_bit(N-1 downto 0) ); END COMPONENT; COMPONENT prediction is port (clk : in std_logic; enable : in std_logic; output_hid : in eight_bit(num_neurons-1 downto 0); predict : out std_logic_vector(7 downto 0) ); END COMPONENT; begin ------------------------------------------------------------------------------------------------------------- output <= predict; ------------------------------------------------------------------------------------------------------------- test_image_map : test_image PORT MAP (clk, "0", addra_image, dina_image, image); layer_map : hidden_layer GENERIC MAP ( N => num_neurons ) PORT MAP (clk, num_operations, layer, rst_layer, input, weight, shift_over_flag, active_activation, output_hid); weight_hid_map: weight_hid PORT MAP (clk, "0", addr_weight_hid, in_weight_hid, out_weight_hid); weight_out_map: weight_out PORT MAP (clk, "0", addr_weight_out, in_weight_out, out_weight_out); prediction_map : prediction PORT MAP (clk, predict_en, output_hid, predict); ------------------------------------------------------------------------------------------------------------- transition : process (clk,reset,curr_state) variable num : Integer; begin if reset = '1' then curr_state <= idle; addra_image <= (others=>'0'); addr_weight_hid <= (others=>'0'); addr_weight_out <= (others=>'0'); layer_output <= (others=> (others=>'0')); output_temp <= (others=>'0'); in_weight_hid <= (others=>'0'); in_weight_out <= (others=>'0'); dina_image <= (others=>'0'); num := 0; elsif rising_edge(clk) then if curr_state = weighted_sum_layer1 then addra_image <= addra_image + 1; addr_weight_hid <= addr_weight_hid + 1; addr_weight_out <= (others=>'0'); elsif curr_state = weighted_sum_layer2 then addra_image <= (others=>'0'); addr_weight_hid <= (others=>'0'); output_temp <= layer_output(num); if num < num_neurons then num := num + 1; else num := 0; end if ; addr_weight_out <= addr_weight_out + 1; elsif curr_state = activate_layer1 then layer_output(0) <= (others=>'0'); layer_output(num_neurons downto 1) <= output_hid; addra_image <= (others=>'0'); addr_weight_hid <= (others=>'0'); addr_weight_out <= (others=>'0'); elsif curr_state = activate_layer2 then layer_output(0) <= (others=>'0'); layer_output(num_neurons downto 1) <= output_hid; addra_image <= (others=>'0'); addr_weight_hid <= (others=>'0'); addr_weight_out <= (others=>'0'); else addra_image <= (others=>'0'); addr_weight_hid <= (others=>'0'); addr_weight_out <= (others=>'0') ; end if; curr_state <= next_state; end if; end process; --------------------------------------------------------------------------------------------------------- image_weight_allocate : process (curr_state, image, out_weight_hid, out_weight_out, output_temp) begin if curr_state = weighted_sum_layer1 then input <= image; for i in num_neurons-1 downto 0 loop weight(i) <= out_weight_hid(((i+1)*8)-1 downto i*8); end loop; elsif curr_state = weighted_sum_layer2 then input <= output_temp; for i in num_neurons-1 downto 0 loop weight(i) <= out_weight_out(((i+1)*8)-1 downto i*8); end loop; else input <= (others=>'0'); weight <= ((others=> (others=>'0'))); end if; end process; --------------------------------------------------------------------------------------------------------- next_state_logic : process (curr_state, shift_over_flag, active_activation) begin case curr_state is when idle => if active_activation = '0' then next_state <= weighted_sum_layer1; else next_state <= idle; end if; when weighted_sum_layer1 => if active_activation = '1' then next_state <= activate_layer1; else next_state <= weighted_sum_layer1; end if; when activate_layer1 => if shift_over_flag = '1' then next_state <= reset_layer; else next_state <= activate_layer1; end if; when reset_layer => if active_activation = '0' then next_state <= weighted_sum_layer2; else next_state <= reset_layer; end if; when weighted_sum_layer2 => if active_activation = '1' then next_state <= activate_layer2; else next_state <= weighted_sum_layer2; end if; when activate_layer2 => if shift_over_flag = '1' then next_state <= predict_layer; else next_state <= activate_layer2; end if; when predict_layer => next_state <= predict_layer; end case; end process; ----------------------------------------------------------------------------------------------------------- Output_process: process (curr_state) begin case curr_state is when idle => rst_layer <= '1'; num_operations <= (others=>'0'); layer <= idle; predict_en <= '0'; when weighted_sum_layer1 => rst_layer <= '0'; num_operations <= "11100000"; layer <= weighted_sum_layer1; predict_en <= '0'; when activate_layer1 => rst_layer <= '0'; num_operations <= "11100000"; layer <= activate_layer1; predict_en <= '0'; when reset_layer => rst_layer <= '1'; num_operations <= (others=>'0'); layer <= idle; predict_en <= '0'; when weighted_sum_layer2 => rst_layer <= '0'; num_operations <= "00101000"; layer <= weighted_sum_layer2; predict_en <= '0'; when activate_layer2 => rst_layer <= '0'; num_operations <= "00101000"; layer <= activate_layer2; predict_en <= '0'; when predict_layer => rst_layer <= '1'; num_operations <= (others=>'0'); layer <= idle; predict_en <= '1'; end case; end process; -------------------------------------------------------------------------------------------------------- end Behavioral;
-- NEED RESULT: ARCH00308: Access types passed ------------------------------------------------------------------------------- -- -- Copyright (c) 1989 by Intermetrics, Inc. -- All rights reserved. -- ------------------------------------------------------------------------------- -- -- TEST NAME: -- -- CT00308 -- -- AUTHOR: -- -- D. Hyman -- -- TEST OBJECTIVES: -- -- 3.3 (1) -- 3.3 (2) -- 3.3 (3) -- 3.3 (4) -- 3.3 (5) -- 3.3 (6) -- 3.3 (7) -- 3.3.1 (1) -- 3.3.1 (2) -- 3.3.2 (1) -- -- DESIGN UNIT ORDERING: -- -- ENT00308(ARCH00308) -- ENT00308_Test_Bench(ARCH00308_Test_Bench) -- -- REVISION HISTORY: -- -- 27-JUL-1987 - initial revision -- -- NOTES: -- -- self-checking -- -- ONLY 3.3 (1) IS DYNAMICALLY TESTED. -- -- use WORK.STANDARD_TYPES.all ; entity ENT00308 is generic ( gen1, gen2 : integer := 5 ) ; begin end ENT00308 ; architecture ARCH00308 of ENT00308 is -- this tests 3.3 (7) procedure proc ( v1, v2 : integer ) is type t1 is array (v1 to 10) of boolean; type t2 is array (v1 to v2) of bit; type t3 is array (1 to v2) of integer; type rec is record a1 : t1 ; a2 : t2 ; a3 : t3 ; end record ; type access_t1 is access t1 ; type access_t2 is access t2 ; type access_t3 is access t3 ; type access_rec is access rec ; variable a_t1 : access_t1 ; -- this tests 3.3 (2) variable a_t2 : access_t1 ; variable a_t3 : access_t1 ; variable a_r : access_t1 ; begin end proc ; begin P : process -- 3.3 (3), 3.3 (4), and 3.3 (5) are tested by the access types -- declared in STANDARD_TYPES, except for access of access types, -- which is the following: type access_access is access WORK.STANDARD_TYPES.a_bit ; -- these will test 3.3 (6) type t1 is array (1 to 10) of boolean; type t2 is array (gen1 to gen2) of bit; type record_with_array_elements is record a1 : t1 ; a2 : t2 ; end record ; type access_t1 is access t1 ; type access_record is access record_with_array_elements ; variable a_a : access_access ; variable a_t : access_t1 ; variable a_r : access_record ; -- these test 3.3.1 (1) and 3.3.2 (2) type object_1 ; type object_2 ; type access_object_1 is access object_1 ; type access_object_2 is access object_2 ; type object_1 is ('*') ; type object_2 is ('*') ; type array_1 is array ( integer range <> ) of access_object_1 ; type array_2 is array ( integer range <> ) of access_object_2 ; type access_array_1 is access array_1 ; type access_array_2 is access array_2 ; type structure_1 is record data1 : integer ; data2 : integer ; link : access_array_2 ; end record ; type structure_2 is record data1 : integer ; data2 : integer ; link : access_array_1 ; end record ; variable a_o_1 : access_object_1 ; variable a_o_2 : access_object_2 ; variable a_a_1 : access_array_1 ; variable a_a_2 : access_array_2 ; begin test_report ( "ARCH00308" , "Access types" , (a_a = null) and -- this tests 3.3 (1) (a_t = null) and (a_r = null) and (a_o_1 = null) and (a_o_2 = null) and (a_a_1 = null) and (a_a_2 = null) ) ; -- these test 3.3.2 (1) deallocate (a_a) ; deallocate (a_t) ; deallocate (a_r) ; deallocate (a_o_1) ; deallocate (a_o_2) ; deallocate (a_a_1) ; deallocate (a_a_2) ; wait ; end process P ; end ARCH00308 ; entity ENT00308_Test_Bench is end ENT00308_Test_Bench ; architecture ARCH00308_Test_Bench of ENT00308_Test_Bench is begin L1: block component UUT end component ; for CIS1 : UUT use entity WORK.ENT00308 ( ARCH00308 ) ; begin CIS1 : UUT ; end block L1 ; end ARCH00308_Test_Bench ;
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003, Gaisler Research -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ----------------------------------------------------------------------------- -- Entity: grspwc_unisim -- File: grspwc_unisim.vhd -- Author: Jiri Gaisler - Gaisler Research -- Description: tech wrapper for xilinx/unisim grspwc netlist ------------------------------------------------------------------------------ library ieee; use ieee.std_logic_1164.all; library unisim; use unisim.all; entity grspwc_unisim is generic( sysfreq : integer := 40000; usegen : integer range 0 to 1 := 1; nsync : integer range 1 to 2 := 1; rmap : integer range 0 to 1 := 0; rmapcrc : integer range 0 to 1 := 0; fifosize1 : integer range 4 to 32 := 32; fifosize2 : integer range 16 to 64 := 64; rxunaligned : integer range 0 to 1 := 0; rmapbufs : integer range 2 to 8 := 4; scantest : integer range 0 to 1 := 0 ); port( rst : in std_ulogic; clk : in std_ulogic; txclk : in std_ulogic; --ahb mst in hgrant : in std_ulogic; hready : in std_ulogic; hresp : in std_logic_vector(1 downto 0); hrdata : in std_logic_vector(31 downto 0); --ahb mst out hbusreq : out std_ulogic; hlock : out std_ulogic; htrans : out std_logic_vector(1 downto 0); haddr : out std_logic_vector(31 downto 0); hwrite : out std_ulogic; hsize : out std_logic_vector(2 downto 0); hburst : out std_logic_vector(2 downto 0); hprot : out std_logic_vector(3 downto 0); hwdata : out std_logic_vector(31 downto 0); --apb slv in psel : in std_ulogic; penable : in std_ulogic; paddr : in std_logic_vector(31 downto 0); pwrite : in std_ulogic; pwdata : in std_logic_vector(31 downto 0); --apb slv out prdata : out std_logic_vector(31 downto 0); di : in std_logic_vector(1 downto 0); si : in std_logic_vector(1 downto 0); do : out std_logic_vector(1 downto 0); so : out std_logic_vector(1 downto 0); --time iface tickin : in std_ulogic; tickout : out std_ulogic; --irq irq : out std_logic; --misc clkdiv10 : in std_logic_vector(7 downto 0); dcrstval : in std_logic_vector(9 downto 0); timerrstval : in std_logic_vector(11 downto 0); --rmapen rmapen : in std_ulogic; --clk bufs rxclki : in std_logic_vector(1 downto 0); nrxclki : in std_logic_vector(1 downto 0); rxclko : out std_logic_vector(1 downto 0); --rx ahb fifo rxrenable : out std_ulogic; rxraddress : out std_logic_vector(4 downto 0); rxwrite : out std_ulogic; rxwdata : out std_logic_vector(31 downto 0); rxwaddress : out std_logic_vector(4 downto 0); rxrdata : in std_logic_vector(31 downto 0); --tx ahb fifo txrenable : out std_ulogic; txraddress : out std_logic_vector(4 downto 0); txwrite : out std_ulogic; txwdata : out std_logic_vector(31 downto 0); txwaddress : out std_logic_vector(4 downto 0); txrdata : in std_logic_vector(31 downto 0); --nchar fifo ncrenable : out std_ulogic; ncraddress : out std_logic_vector(5 downto 0); ncwrite : out std_ulogic; ncwdata : out std_logic_vector(8 downto 0); ncwaddress : out std_logic_vector(5 downto 0); ncrdata : in std_logic_vector(8 downto 0); --rmap buf rmrenable : out std_ulogic; rmraddress : out std_logic_vector(7 downto 0); rmwrite : out std_ulogic; rmwdata : out std_logic_vector(7 downto 0); rmwaddress : out std_logic_vector(7 downto 0); rmrdata : in std_logic_vector(7 downto 0); linkdis : out std_ulogic; testclk : in std_ulogic := '0'; testrst : in std_ulogic := '0'; testen : in std_ulogic := '0' ); end entity; architecture rtl of grspwc_unisim is component grspwc_unisim_16_16 is port( rst : in std_logic; clk : in std_logic; txclk : in std_logic; hgrant : in std_logic; hready : in std_logic; hresp : in std_logic_vector(1 downto 0); hrdata : in std_logic_vector(31 downto 0); hbusreq : out std_logic; hlock : out std_logic; htrans : out std_logic_vector(1 downto 0); haddr : out std_logic_vector(31 downto 0); hwrite : out std_logic; hsize : out std_logic_vector(2 downto 0); hburst : out std_logic_vector(2 downto 0); hprot : out std_logic_vector(3 downto 0); hwdata : out std_logic_vector(31 downto 0); psel : in std_logic; penable : in std_logic; paddr : in std_logic_vector(31 downto 0); pwrite : in std_logic; pwdata : in std_logic_vector(31 downto 0); prdata : out std_logic_vector(31 downto 0); di : in std_logic_vector(1 downto 0); si : in std_logic_vector(1 downto 0); do : out std_logic_vector(1 downto 0); so : out std_logic_vector(1 downto 0); tickin : in std_logic; tickout : out std_logic; irq : out std_logic; clkdiv10 : in std_logic_vector(7 downto 0); dcrstval : in std_logic_vector(9 downto 0); timerrstval : in std_logic_vector(11 downto 0); rmapen : in std_logic; rxclki : in std_logic_vector(1 downto 0); nrxclki : in std_logic_vector(1 downto 0); rxclko : out std_logic_vector(1 downto 0); rxrenable : out std_logic; rxraddress : out std_logic_vector(4 downto 0); rxwrite : out std_logic; rxwdata : out std_logic_vector(31 downto 0); rxwaddress : out std_logic_vector(4 downto 0); rxrdata : in std_logic_vector(31 downto 0); txrenable : out std_logic; txraddress : out std_logic_vector(4 downto 0); txwrite : out std_logic; txwdata : out std_logic_vector(31 downto 0); txwaddress : out std_logic_vector(4 downto 0); txrdata : in std_logic_vector(31 downto 0); ncrenable : out std_logic; ncraddress : out std_logic_vector(5 downto 0); ncwrite : out std_logic; ncwdata : out std_logic_vector(8 downto 0); ncwaddress : out std_logic_vector(5 downto 0); ncrdata : in std_logic_vector(8 downto 0); rmrenable : out std_logic; rmraddress : out std_logic_vector(7 downto 0); rmwrite : out std_logic; rmwdata : out std_logic_vector(7 downto 0); rmwaddress : out std_logic_vector(7 downto 0); rmrdata : in std_logic_vector(7 downto 0); linkdis : out std_logic; testclk : in std_logic; testrst : in std_logic; testen : in std_logic); end component; component grspwc_unisim_rmap_16_16 port( rst : in std_logic; clk : in std_logic; txclk : in std_logic; hgrant : in std_logic; hready : in std_logic; hresp : in std_logic_vector(1 downto 0); hrdata : in std_logic_vector(31 downto 0); hbusreq : out std_logic; hlock : out std_logic; htrans : out std_logic_vector(1 downto 0); haddr : out std_logic_vector(31 downto 0); hwrite : out std_logic; hsize : out std_logic_vector(2 downto 0); hburst : out std_logic_vector(2 downto 0); hprot : out std_logic_vector(3 downto 0); hwdata : out std_logic_vector(31 downto 0); psel : in std_logic; penable : in std_logic; paddr : in std_logic_vector(31 downto 0); pwrite : in std_logic; pwdata : in std_logic_vector(31 downto 0); prdata : out std_logic_vector(31 downto 0); di : in std_logic_vector(1 downto 0); si : in std_logic_vector(1 downto 0); do : out std_logic_vector(1 downto 0); so : out std_logic_vector(1 downto 0); tickin : in std_logic; tickout : out std_logic; irq : out std_logic; clkdiv10 : in std_logic_vector(7 downto 0); dcrstval : in std_logic_vector(9 downto 0); timerrstval : in std_logic_vector(11 downto 0); rmapen : in std_logic; rxclki : in std_logic_vector(1 downto 0); nrxclki : in std_logic_vector(1 downto 0); rxclko : out std_logic_vector(1 downto 0); rxrenable : out std_logic; rxraddress : out std_logic_vector(4 downto 0); rxwrite : out std_logic; rxwdata : out std_logic_vector(31 downto 0); rxwaddress : out std_logic_vector(4 downto 0); rxrdata : in std_logic_vector(31 downto 0); txrenable : out std_logic; txraddress : out std_logic_vector(4 downto 0); txwrite : out std_logic; txwdata : out std_logic_vector(31 downto 0); txwaddress : out std_logic_vector(4 downto 0); txrdata : in std_logic_vector(31 downto 0); ncrenable : out std_logic; ncraddress : out std_logic_vector(5 downto 0); ncwrite : out std_logic; ncwdata : out std_logic_vector(8 downto 0); ncwaddress : out std_logic_vector(5 downto 0); ncrdata : in std_logic_vector(8 downto 0); rmrenable : out std_logic; rmraddress : out std_logic_vector(7 downto 0); rmwrite : out std_logic; rmwdata : out std_logic_vector(7 downto 0); rmwaddress : out std_logic_vector(7 downto 0); rmrdata : in std_logic_vector(7 downto 0); linkdis : out std_logic; testclk : in std_logic; testrst : in std_logic; testen : in std_logic); end component; begin f16_16 : if (fifosize1 = 16) and (fifosize2 = 16) and (rmap = 0) generate grspwc0 : grspwc_unisim_16_16 port map( rst => rst, clk => clk, txclk => txclk, --ahb mst in hgrant => hgrant, hready => hready, hresp => hresp, hrdata => hrdata, --ahb mst out hbusreq => hbusreq, hlock => hlock, htrans => htrans, haddr => haddr, hwrite => hwrite, hsize => hsize, hburst => hburst, hprot => hprot, hwdata => hwdata, --apb slv in psel => psel, penable => penable, paddr => paddr, pwrite => pwrite, pwdata => pwdata, --apb slv out prdata => prdata, --spw in di => di, si => si, --spw out do => do, so => so, --time iface tickin => tickin, tickout => tickout, --clk bufs rxclki => rxclki, nrxclki => nrxclki, rxclko => rxclko, --irq irq => irq, --misc clkdiv10 => clkdiv10, dcrstval => dcrstval, timerrstval => timerrstval, --rmapen rmapen => rmapen, --rx ahb fifo rxrenable => rxrenable, rxraddress => rxraddress, rxwrite => rxwrite, rxwdata => rxwdata, rxwaddress => rxwaddress, rxrdata => rxrdata, --tx ahb fifo txrenable => txrenable, txraddress => txraddress, txwrite => txwrite, txwdata => txwdata, txwaddress => txwaddress, txrdata => txrdata, --nchar fifo ncrenable => ncrenable, ncraddress => ncraddress, ncwrite => ncwrite, ncwdata => ncwdata, ncwaddress => ncwaddress, ncrdata => ncrdata, --rmap buf rmrenable => rmrenable, rmraddress => rmraddress, rmwrite => rmwrite, rmwdata => rmwdata, rmwaddress => rmwaddress, rmrdata => rmrdata, linkdis => linkdis, testclk => testclk, testrst => testrst, testen => testen ); end generate; rmap_f16_16 : if (fifosize1 = 16) and (fifosize2 = 16) and (rmap /= 0) generate grspwc0 : grspwc_unisim_rmap_16_16 port map( rst => rst, clk => clk, txclk => txclk, --ahb mst in hgrant => hgrant, hready => hready, hresp => hresp, hrdata => hrdata, --ahb mst out hbusreq => hbusreq, hlock => hlock, htrans => htrans, haddr => haddr, hwrite => hwrite, hsize => hsize, hburst => hburst, hprot => hprot, hwdata => hwdata, --apb slv in psel => psel, penable => penable, paddr => paddr, pwrite => pwrite, pwdata => pwdata, --apb slv out prdata => prdata, --spw in di => di, si => si, --spw out do => do, so => so, --time iface tickin => tickin, tickout => tickout, --clk bufs rxclki => rxclki, nrxclki => nrxclki, rxclko => rxclko, --irq irq => irq, --misc clkdiv10 => clkdiv10, dcrstval => dcrstval, timerrstval => timerrstval, --rmapen rmapen => rmapen, --rx ahb fifo rxrenable => rxrenable, rxraddress => rxraddress, rxwrite => rxwrite, rxwdata => rxwdata, rxwaddress => rxwaddress, rxrdata => rxrdata, --tx ahb fifo txrenable => txrenable, txraddress => txraddress, txwrite => txwrite, txwdata => txwdata, txwaddress => txwaddress, txrdata => txrdata, --nchar fifo ncrenable => ncrenable, ncraddress => ncraddress, ncwrite => ncwrite, ncwdata => ncwdata, ncwaddress => ncwaddress, ncrdata => ncrdata, --rmap buf rmrenable => rmrenable, rmraddress => rmraddress, rmwrite => rmwrite, rmwdata => rmwdata, rmwaddress => rmwaddress, rmrdata => rmrdata, linkdis => linkdis, testclk => testclk, testrst => testrst, testen => testen ); end generate; -- pragma translate_off nomap : if not ((fifosize1 = 16) and (fifosize2 = 16)) generate err : process begin assert false report "ERROR : AHB and RX fifos must be 16!" severity failure; wait; end process; end generate; -- pragma translate_on end architecture;
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003, Gaisler Research -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ----------------------------------------------------------------------------- -- Entity: grspwc_unisim -- File: grspwc_unisim.vhd -- Author: Jiri Gaisler - Gaisler Research -- Description: tech wrapper for xilinx/unisim grspwc netlist ------------------------------------------------------------------------------ library ieee; use ieee.std_logic_1164.all; library unisim; use unisim.all; entity grspwc_unisim is generic( sysfreq : integer := 40000; usegen : integer range 0 to 1 := 1; nsync : integer range 1 to 2 := 1; rmap : integer range 0 to 1 := 0; rmapcrc : integer range 0 to 1 := 0; fifosize1 : integer range 4 to 32 := 32; fifosize2 : integer range 16 to 64 := 64; rxunaligned : integer range 0 to 1 := 0; rmapbufs : integer range 2 to 8 := 4; scantest : integer range 0 to 1 := 0 ); port( rst : in std_ulogic; clk : in std_ulogic; txclk : in std_ulogic; --ahb mst in hgrant : in std_ulogic; hready : in std_ulogic; hresp : in std_logic_vector(1 downto 0); hrdata : in std_logic_vector(31 downto 0); --ahb mst out hbusreq : out std_ulogic; hlock : out std_ulogic; htrans : out std_logic_vector(1 downto 0); haddr : out std_logic_vector(31 downto 0); hwrite : out std_ulogic; hsize : out std_logic_vector(2 downto 0); hburst : out std_logic_vector(2 downto 0); hprot : out std_logic_vector(3 downto 0); hwdata : out std_logic_vector(31 downto 0); --apb slv in psel : in std_ulogic; penable : in std_ulogic; paddr : in std_logic_vector(31 downto 0); pwrite : in std_ulogic; pwdata : in std_logic_vector(31 downto 0); --apb slv out prdata : out std_logic_vector(31 downto 0); di : in std_logic_vector(1 downto 0); si : in std_logic_vector(1 downto 0); do : out std_logic_vector(1 downto 0); so : out std_logic_vector(1 downto 0); --time iface tickin : in std_ulogic; tickout : out std_ulogic; --irq irq : out std_logic; --misc clkdiv10 : in std_logic_vector(7 downto 0); dcrstval : in std_logic_vector(9 downto 0); timerrstval : in std_logic_vector(11 downto 0); --rmapen rmapen : in std_ulogic; --clk bufs rxclki : in std_logic_vector(1 downto 0); nrxclki : in std_logic_vector(1 downto 0); rxclko : out std_logic_vector(1 downto 0); --rx ahb fifo rxrenable : out std_ulogic; rxraddress : out std_logic_vector(4 downto 0); rxwrite : out std_ulogic; rxwdata : out std_logic_vector(31 downto 0); rxwaddress : out std_logic_vector(4 downto 0); rxrdata : in std_logic_vector(31 downto 0); --tx ahb fifo txrenable : out std_ulogic; txraddress : out std_logic_vector(4 downto 0); txwrite : out std_ulogic; txwdata : out std_logic_vector(31 downto 0); txwaddress : out std_logic_vector(4 downto 0); txrdata : in std_logic_vector(31 downto 0); --nchar fifo ncrenable : out std_ulogic; ncraddress : out std_logic_vector(5 downto 0); ncwrite : out std_ulogic; ncwdata : out std_logic_vector(8 downto 0); ncwaddress : out std_logic_vector(5 downto 0); ncrdata : in std_logic_vector(8 downto 0); --rmap buf rmrenable : out std_ulogic; rmraddress : out std_logic_vector(7 downto 0); rmwrite : out std_ulogic; rmwdata : out std_logic_vector(7 downto 0); rmwaddress : out std_logic_vector(7 downto 0); rmrdata : in std_logic_vector(7 downto 0); linkdis : out std_ulogic; testclk : in std_ulogic := '0'; testrst : in std_ulogic := '0'; testen : in std_ulogic := '0' ); end entity; architecture rtl of grspwc_unisim is component grspwc_unisim_16_16 is port( rst : in std_logic; clk : in std_logic; txclk : in std_logic; hgrant : in std_logic; hready : in std_logic; hresp : in std_logic_vector(1 downto 0); hrdata : in std_logic_vector(31 downto 0); hbusreq : out std_logic; hlock : out std_logic; htrans : out std_logic_vector(1 downto 0); haddr : out std_logic_vector(31 downto 0); hwrite : out std_logic; hsize : out std_logic_vector(2 downto 0); hburst : out std_logic_vector(2 downto 0); hprot : out std_logic_vector(3 downto 0); hwdata : out std_logic_vector(31 downto 0); psel : in std_logic; penable : in std_logic; paddr : in std_logic_vector(31 downto 0); pwrite : in std_logic; pwdata : in std_logic_vector(31 downto 0); prdata : out std_logic_vector(31 downto 0); di : in std_logic_vector(1 downto 0); si : in std_logic_vector(1 downto 0); do : out std_logic_vector(1 downto 0); so : out std_logic_vector(1 downto 0); tickin : in std_logic; tickout : out std_logic; irq : out std_logic; clkdiv10 : in std_logic_vector(7 downto 0); dcrstval : in std_logic_vector(9 downto 0); timerrstval : in std_logic_vector(11 downto 0); rmapen : in std_logic; rxclki : in std_logic_vector(1 downto 0); nrxclki : in std_logic_vector(1 downto 0); rxclko : out std_logic_vector(1 downto 0); rxrenable : out std_logic; rxraddress : out std_logic_vector(4 downto 0); rxwrite : out std_logic; rxwdata : out std_logic_vector(31 downto 0); rxwaddress : out std_logic_vector(4 downto 0); rxrdata : in std_logic_vector(31 downto 0); txrenable : out std_logic; txraddress : out std_logic_vector(4 downto 0); txwrite : out std_logic; txwdata : out std_logic_vector(31 downto 0); txwaddress : out std_logic_vector(4 downto 0); txrdata : in std_logic_vector(31 downto 0); ncrenable : out std_logic; ncraddress : out std_logic_vector(5 downto 0); ncwrite : out std_logic; ncwdata : out std_logic_vector(8 downto 0); ncwaddress : out std_logic_vector(5 downto 0); ncrdata : in std_logic_vector(8 downto 0); rmrenable : out std_logic; rmraddress : out std_logic_vector(7 downto 0); rmwrite : out std_logic; rmwdata : out std_logic_vector(7 downto 0); rmwaddress : out std_logic_vector(7 downto 0); rmrdata : in std_logic_vector(7 downto 0); linkdis : out std_logic; testclk : in std_logic; testrst : in std_logic; testen : in std_logic); end component; component grspwc_unisim_rmap_16_16 port( rst : in std_logic; clk : in std_logic; txclk : in std_logic; hgrant : in std_logic; hready : in std_logic; hresp : in std_logic_vector(1 downto 0); hrdata : in std_logic_vector(31 downto 0); hbusreq : out std_logic; hlock : out std_logic; htrans : out std_logic_vector(1 downto 0); haddr : out std_logic_vector(31 downto 0); hwrite : out std_logic; hsize : out std_logic_vector(2 downto 0); hburst : out std_logic_vector(2 downto 0); hprot : out std_logic_vector(3 downto 0); hwdata : out std_logic_vector(31 downto 0); psel : in std_logic; penable : in std_logic; paddr : in std_logic_vector(31 downto 0); pwrite : in std_logic; pwdata : in std_logic_vector(31 downto 0); prdata : out std_logic_vector(31 downto 0); di : in std_logic_vector(1 downto 0); si : in std_logic_vector(1 downto 0); do : out std_logic_vector(1 downto 0); so : out std_logic_vector(1 downto 0); tickin : in std_logic; tickout : out std_logic; irq : out std_logic; clkdiv10 : in std_logic_vector(7 downto 0); dcrstval : in std_logic_vector(9 downto 0); timerrstval : in std_logic_vector(11 downto 0); rmapen : in std_logic; rxclki : in std_logic_vector(1 downto 0); nrxclki : in std_logic_vector(1 downto 0); rxclko : out std_logic_vector(1 downto 0); rxrenable : out std_logic; rxraddress : out std_logic_vector(4 downto 0); rxwrite : out std_logic; rxwdata : out std_logic_vector(31 downto 0); rxwaddress : out std_logic_vector(4 downto 0); rxrdata : in std_logic_vector(31 downto 0); txrenable : out std_logic; txraddress : out std_logic_vector(4 downto 0); txwrite : out std_logic; txwdata : out std_logic_vector(31 downto 0); txwaddress : out std_logic_vector(4 downto 0); txrdata : in std_logic_vector(31 downto 0); ncrenable : out std_logic; ncraddress : out std_logic_vector(5 downto 0); ncwrite : out std_logic; ncwdata : out std_logic_vector(8 downto 0); ncwaddress : out std_logic_vector(5 downto 0); ncrdata : in std_logic_vector(8 downto 0); rmrenable : out std_logic; rmraddress : out std_logic_vector(7 downto 0); rmwrite : out std_logic; rmwdata : out std_logic_vector(7 downto 0); rmwaddress : out std_logic_vector(7 downto 0); rmrdata : in std_logic_vector(7 downto 0); linkdis : out std_logic; testclk : in std_logic; testrst : in std_logic; testen : in std_logic); end component; begin f16_16 : if (fifosize1 = 16) and (fifosize2 = 16) and (rmap = 0) generate grspwc0 : grspwc_unisim_16_16 port map( rst => rst, clk => clk, txclk => txclk, --ahb mst in hgrant => hgrant, hready => hready, hresp => hresp, hrdata => hrdata, --ahb mst out hbusreq => hbusreq, hlock => hlock, htrans => htrans, haddr => haddr, hwrite => hwrite, hsize => hsize, hburst => hburst, hprot => hprot, hwdata => hwdata, --apb slv in psel => psel, penable => penable, paddr => paddr, pwrite => pwrite, pwdata => pwdata, --apb slv out prdata => prdata, --spw in di => di, si => si, --spw out do => do, so => so, --time iface tickin => tickin, tickout => tickout, --clk bufs rxclki => rxclki, nrxclki => nrxclki, rxclko => rxclko, --irq irq => irq, --misc clkdiv10 => clkdiv10, dcrstval => dcrstval, timerrstval => timerrstval, --rmapen rmapen => rmapen, --rx ahb fifo rxrenable => rxrenable, rxraddress => rxraddress, rxwrite => rxwrite, rxwdata => rxwdata, rxwaddress => rxwaddress, rxrdata => rxrdata, --tx ahb fifo txrenable => txrenable, txraddress => txraddress, txwrite => txwrite, txwdata => txwdata, txwaddress => txwaddress, txrdata => txrdata, --nchar fifo ncrenable => ncrenable, ncraddress => ncraddress, ncwrite => ncwrite, ncwdata => ncwdata, ncwaddress => ncwaddress, ncrdata => ncrdata, --rmap buf rmrenable => rmrenable, rmraddress => rmraddress, rmwrite => rmwrite, rmwdata => rmwdata, rmwaddress => rmwaddress, rmrdata => rmrdata, linkdis => linkdis, testclk => testclk, testrst => testrst, testen => testen ); end generate; rmap_f16_16 : if (fifosize1 = 16) and (fifosize2 = 16) and (rmap /= 0) generate grspwc0 : grspwc_unisim_rmap_16_16 port map( rst => rst, clk => clk, txclk => txclk, --ahb mst in hgrant => hgrant, hready => hready, hresp => hresp, hrdata => hrdata, --ahb mst out hbusreq => hbusreq, hlock => hlock, htrans => htrans, haddr => haddr, hwrite => hwrite, hsize => hsize, hburst => hburst, hprot => hprot, hwdata => hwdata, --apb slv in psel => psel, penable => penable, paddr => paddr, pwrite => pwrite, pwdata => pwdata, --apb slv out prdata => prdata, --spw in di => di, si => si, --spw out do => do, so => so, --time iface tickin => tickin, tickout => tickout, --clk bufs rxclki => rxclki, nrxclki => nrxclki, rxclko => rxclko, --irq irq => irq, --misc clkdiv10 => clkdiv10, dcrstval => dcrstval, timerrstval => timerrstval, --rmapen rmapen => rmapen, --rx ahb fifo rxrenable => rxrenable, rxraddress => rxraddress, rxwrite => rxwrite, rxwdata => rxwdata, rxwaddress => rxwaddress, rxrdata => rxrdata, --tx ahb fifo txrenable => txrenable, txraddress => txraddress, txwrite => txwrite, txwdata => txwdata, txwaddress => txwaddress, txrdata => txrdata, --nchar fifo ncrenable => ncrenable, ncraddress => ncraddress, ncwrite => ncwrite, ncwdata => ncwdata, ncwaddress => ncwaddress, ncrdata => ncrdata, --rmap buf rmrenable => rmrenable, rmraddress => rmraddress, rmwrite => rmwrite, rmwdata => rmwdata, rmwaddress => rmwaddress, rmrdata => rmrdata, linkdis => linkdis, testclk => testclk, testrst => testrst, testen => testen ); end generate; -- pragma translate_off nomap : if not ((fifosize1 = 16) and (fifosize2 = 16)) generate err : process begin assert false report "ERROR : AHB and RX fifos must be 16!" severity failure; wait; end process; end generate; -- pragma translate_on end architecture;
-- megafunction wizard: %RAM: 2-PORT% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altsyncram -- ============================================================ -- File Name: buff_spi_ram.vhd -- Megafunction Name(s): -- altsyncram -- -- Simulation Library Files(s): -- altera_mf -- ============================================================ -- ************************************************************ -- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE! -- -- 18.1.0 Build 625 09/12/2018 SJ Lite Edition -- ************************************************************ --Copyright (C) 2018 Intel Corporation. All rights reserved. --Your use of Intel Corporation's design tools, logic functions --and other software and tools, and its AMPP partner logic --functions, and any output files from any of the foregoing --(including device programming or simulation files), and any --associated documentation or information are expressly subject --to the terms and conditions of the Intel Program License --Subscription Agreement, the Intel Quartus Prime License Agreement, --the Intel FPGA IP License Agreement, or other applicable license --agreement, including, without limitation, that your use is for --the sole purpose of programming logic devices manufactured by --Intel and sold by Intel or its authorized distributors. Please --refer to the applicable agreement for further details. LIBRARY ieee; USE ieee.std_logic_1164.all; LIBRARY altera_mf; USE altera_mf.altera_mf_components.all; ENTITY buff_spi_ram IS PORT ( address_a : IN STD_LOGIC_VECTOR (8 DOWNTO 0); address_b : IN STD_LOGIC_VECTOR (8 DOWNTO 0); clock : IN STD_LOGIC := '1'; data_a : IN STD_LOGIC_VECTOR (15 DOWNTO 0); data_b : IN STD_LOGIC_VECTOR (15 DOWNTO 0); wren_a : IN STD_LOGIC := '0'; wren_b : IN STD_LOGIC := '0'; q_a : OUT STD_LOGIC_VECTOR (15 DOWNTO 0); q_b : OUT STD_LOGIC_VECTOR (15 DOWNTO 0) ); END buff_spi_ram; ARCHITECTURE SYN OF buff_spi_ram IS SIGNAL sub_wire0 : STD_LOGIC_VECTOR (15 DOWNTO 0); SIGNAL sub_wire1 : STD_LOGIC_VECTOR (15 DOWNTO 0); BEGIN q_a <= sub_wire0(15 DOWNTO 0); q_b <= sub_wire1(15 DOWNTO 0); altsyncram_component : altsyncram GENERIC MAP ( address_reg_b => "CLOCK0", clock_enable_input_a => "BYPASS", clock_enable_input_b => "BYPASS", clock_enable_output_a => "BYPASS", clock_enable_output_b => "BYPASS", indata_reg_b => "CLOCK0", intended_device_family => "MAX 10", lpm_type => "altsyncram", numwords_a => 512, numwords_b => 512, operation_mode => "BIDIR_DUAL_PORT", outdata_aclr_a => "NONE", outdata_aclr_b => "NONE", outdata_reg_a => "UNREGISTERED", outdata_reg_b => "UNREGISTERED", power_up_uninitialized => "FALSE", read_during_write_mode_mixed_ports => "DONT_CARE", read_during_write_mode_port_a => "NEW_DATA_WITH_NBE_READ", read_during_write_mode_port_b => "NEW_DATA_WITH_NBE_READ", widthad_a => 9, widthad_b => 9, width_a => 16, width_b => 16, width_byteena_a => 1, width_byteena_b => 1, wrcontrol_wraddress_reg_b => "CLOCK0" ) PORT MAP ( address_a => address_a, address_b => address_b, clock0 => clock, data_a => data_a, data_b => data_b, wren_a => wren_a, wren_b => wren_b, q_a => sub_wire0, q_b => sub_wire1 ); END SYN; -- ============================================================ -- CNX file retrieval info -- ============================================================ -- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0" -- Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0" -- Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0" -- Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0" -- Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0" -- Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0" -- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8" -- Retrieval info: PRIVATE: BlankMemory NUMERIC "1" -- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0" -- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0" -- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0" -- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0" -- Retrieval info: PRIVATE: CLRdata NUMERIC "0" -- Retrieval info: PRIVATE: CLRq NUMERIC "0" -- Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0" -- Retrieval info: PRIVATE: CLRrren NUMERIC "0" -- Retrieval info: PRIVATE: CLRwraddress NUMERIC "0" -- Retrieval info: PRIVATE: CLRwren NUMERIC "0" -- Retrieval info: PRIVATE: Clock NUMERIC "0" -- Retrieval info: PRIVATE: Clock_A NUMERIC "0" -- Retrieval info: PRIVATE: Clock_B NUMERIC "0" -- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0" -- Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0" -- Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "1" -- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A" -- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0" -- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10" -- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0" -- Retrieval info: PRIVATE: JTAG_ID STRING "NONE" -- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0" -- Retrieval info: PRIVATE: MEMSIZE NUMERIC "8192" -- Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0" -- Retrieval info: PRIVATE: MIFfilename STRING "" -- Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "3" -- Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0" -- Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "0" -- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0" -- Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2" -- Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "4" -- Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "4" -- Retrieval info: PRIVATE: REGdata NUMERIC "1" -- Retrieval info: PRIVATE: REGq NUMERIC "0" -- Retrieval info: PRIVATE: REGrdaddress NUMERIC "0" -- Retrieval info: PRIVATE: REGrren NUMERIC "0" -- Retrieval info: PRIVATE: REGwraddress NUMERIC "1" -- Retrieval info: PRIVATE: REGwren NUMERIC "1" -- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0" -- Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0" -- Retrieval info: PRIVATE: UseDPRAM NUMERIC "1" -- Retrieval info: PRIVATE: VarWidth NUMERIC "0" -- Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "16" -- Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "16" -- Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "16" -- Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "16" -- Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0" -- Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "1" -- Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0" -- Retrieval info: PRIVATE: enable NUMERIC "0" -- Retrieval info: PRIVATE: rden NUMERIC "0" -- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all -- Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK0" -- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS" -- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS" -- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS" -- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS" -- Retrieval info: CONSTANT: INDATA_REG_B STRING "CLOCK0" -- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10" -- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram" -- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "512" -- Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "512" -- Retrieval info: CONSTANT: OPERATION_MODE STRING "BIDIR_DUAL_PORT" -- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE" -- Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE" -- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "UNREGISTERED" -- Retrieval info: CONSTANT: OUTDATA_REG_B STRING "UNREGISTERED" -- Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE" -- Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_MIXED_PORTS STRING "DONT_CARE" -- Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_PORT_A STRING "NEW_DATA_WITH_NBE_READ" -- Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_PORT_B STRING "NEW_DATA_WITH_NBE_READ" -- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "9" -- Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "9" -- Retrieval info: CONSTANT: WIDTH_A NUMERIC "16" -- Retrieval info: CONSTANT: WIDTH_B NUMERIC "16" -- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1" -- Retrieval info: CONSTANT: WIDTH_BYTEENA_B NUMERIC "1" -- Retrieval info: CONSTANT: WRCONTROL_WRADDRESS_REG_B STRING "CLOCK0" -- Retrieval info: USED_PORT: address_a 0 0 9 0 INPUT NODEFVAL "address_a[8..0]" -- Retrieval info: USED_PORT: address_b 0 0 9 0 INPUT NODEFVAL "address_b[8..0]" -- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock" -- Retrieval info: USED_PORT: data_a 0 0 16 0 INPUT NODEFVAL "data_a[15..0]" -- Retrieval info: USED_PORT: data_b 0 0 16 0 INPUT NODEFVAL "data_b[15..0]" -- Retrieval info: USED_PORT: q_a 0 0 16 0 OUTPUT NODEFVAL "q_a[15..0]" -- Retrieval info: USED_PORT: q_b 0 0 16 0 OUTPUT NODEFVAL "q_b[15..0]" -- Retrieval info: USED_PORT: wren_a 0 0 0 0 INPUT GND "wren_a" -- Retrieval info: USED_PORT: wren_b 0 0 0 0 INPUT GND "wren_b" -- Retrieval info: CONNECT: @address_a 0 0 9 0 address_a 0 0 9 0 -- Retrieval info: CONNECT: @address_b 0 0 9 0 address_b 0 0 9 0 -- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0 -- Retrieval info: CONNECT: @data_a 0 0 16 0 data_a 0 0 16 0 -- Retrieval info: CONNECT: @data_b 0 0 16 0 data_b 0 0 16 0 -- Retrieval info: CONNECT: @wren_a 0 0 0 0 wren_a 0 0 0 0 -- Retrieval info: CONNECT: @wren_b 0 0 0 0 wren_b 0 0 0 0 -- Retrieval info: CONNECT: q_a 0 0 16 0 @q_a 0 0 16 0 -- Retrieval info: CONNECT: q_b 0 0 16 0 @q_b 0 0 16 0 -- Retrieval info: GEN_FILE: TYPE_NORMAL buff_spi_ram.vhd TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL buff_spi_ram.inc FALSE -- Retrieval info: GEN_FILE: TYPE_NORMAL buff_spi_ram.cmp TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL buff_spi_ram.bsf FALSE -- Retrieval info: GEN_FILE: TYPE_NORMAL buff_spi_ram_inst.vhd FALSE -- Retrieval info: LIB_FILE: altera_mf
--------------------------------------------------------------- -- Title : Bus Buffer Gates with 3-state outputs -- Project : --------------------------------------------------------------- -- File : SN74ABT125.vhd -- Author : Michael Miehling -- Email : miehling@men.de -- Organization : MEN Mikroelektronik Nuernberg GmbH -- Created : 09/02/12 --------------------------------------------------------------- -- Simulator : -- Synthesis : --------------------------------------------------------------- -- Description : -- -- --------------------------------------------------------------- -- Hierarchy: -- -- --------------------------------------------------------------- -- Copyright (C) 2001, MEN Mikroelektronik Nuernberg GmbH -- -- All rights reserved. Reproduction in whole or part is -- prohibited without the written permission of the -- copyright owner. --------------------------------------------------------------- -- History --------------------------------------------------------------- -- $Revision: 1.1 $ -- -- $Log: SN74ABT125.vhd,v $ -- Revision 1.1 2012/03/29 10:28:41 MMiehling -- Initial Revision -- -- --------------------------------------------------------------- LIBRARY ieee; USE ieee.std_logic_1164.ALL; ENTITY SN74ABT125 IS GENERIC ( OP_COND : integer:=1; -- 0=min, 1=typ, 2=max WIDTH : integer:=8 ); PORT ( oe_n : IN std_logic_vector(WIDTH-1 DOWNTO 0); -- output enable: 0= driver is active, 1= tri-state a : IN std_logic_vector(WIDTH-1 DOWNTO 0); -- port A b : OUT std_logic_vector(WIDTH-1 DOWNTO 0) -- port B ); END SN74ABT125; ARCHITECTURE SN74ABT125_arch OF SN74ABT125 IS CONSTANT tPLH_max : time:= 4.9 ns; CONSTANT tPHL_max : time:= 4.9 ns; CONSTANT tPZH_max : time:= 5.9 ns; CONSTANT tPZL_max : time:= 6.8 ns; CONSTANT tPHZ_max : time:= 6.2 ns; CONSTANT tPLZ_max : time:= 6.2 ns; CONSTANT tPLH_min : time:= 1 ns; CONSTANT tPHL_min : time:= 1 ns; CONSTANT tPZH_min : time:= 1 ns; CONSTANT tPZL_min : time:= 1 ns; CONSTANT tPHZ_min : time:= 1 ns; CONSTANT tPLZ_min : time:= 1 ns; CONSTANT tPLH_typ : time:= 3.2 ns; CONSTANT tPHL_typ : time:= 2.5 ns; CONSTANT tPZH_typ : time:= 3.6 ns; CONSTANT tPZL_typ : time:= 2.5 ns; CONSTANT tPHZ_typ : time:= 3.8 ns; CONSTANT tPLZ_typ : time:= 3.3 ns; SIGNAL b_out : std_logic_vector(WIDTH-1 DOWNTO 0); SIGNAL oe_n_in : std_logic_vector(WIDTH-1 DOWNTO 0); SIGNAL a_in : std_logic_vector(WIDTH-1 DOWNTO 0); SIGNAL tPLH : time; SIGNAL tPHL : time; SIGNAL tPZH : time; SIGNAL tPZL : time; SIGNAL tPHZ : time; SIGNAL tPLZ : time; SIGNAL pwr_rst : std_logic; BEGIN tPLH <= tPLH_min WHEN OP_COND = 0 ELSE tPLH_typ WHEN OP_COND = 1 ELSE tPLH_max; tPHL <= tPHL_min WHEN OP_COND = 0 ELSE tPHL_typ WHEN OP_COND = 1 ELSE tPHL_max; tPZH <= tPZH_min WHEN OP_COND = 0 ELSE tPZH_typ WHEN OP_COND = 1 ELSE tPZH_max; tPZL <= tPZL_min WHEN OP_COND = 0 ELSE tPZL_typ WHEN OP_COND = 1 ELSE tPZL_max; tPHZ <= tPHZ_min WHEN OP_COND = 0 ELSE tPHZ_typ WHEN OP_COND = 1 ELSE tPHZ_max; tPLZ <= tPLZ_min WHEN OP_COND = 0 ELSE tPLZ_typ WHEN OP_COND = 1 ELSE tPLZ_max; oe_n_in <= to_x01(oe_n); a_in <= to_x01(a); pwr_rst <= '1', '0' AFTER 2 ps; b <= b_out; gen: FOR i IN 0 TO WIDTH-1 GENERATE PROCESS(pwr_rst, oe_n_in(i), a_in(i), b_out(i)) BEGIN IF pwr_rst'event AND oe_n_in(i) = '1' THEN b_out(i) <= 'H'; ELSIF pwr_rst'event AND oe_n_in(i) = '0' THEN b_out(i) <= a_in(i); ELSIF (a_in(i)'event AND a_in(i) = '1' AND oe_n_in(i) = '0' ) THEN -- a 0->1 b_out(i) <= transport a_in(i) AFTER tPLH; ELSIF (a_in(i)'event AND a_in(i) = '0' AND oe_n_in(i) = '0') THEN -- a 1->0 b_out(i) <= transport a_in(i) AFTER tPHL; ELSIF (oe_n_in'event AND oe_n_in(i) = '0' AND a_in(i) = '1') THEN -- oe_n_in 1->0 a=1 b_out(i) <= transport a_in(i) AFTER tPZH; ELSIF (oe_n_in'event AND oe_n_in(i) = '0' AND a(i) = '0') THEN -- oe_n_in 1->0 a=0 b_out(i) <= transport a_in(i) AFTER tPZL; ELSIF (oe_n_in'event AND oe_n_in(i) = '1' AND b_out(i) = '1') THEN -- oe_n_in 0->1 b=1 b_out(i) <= transport 'H' AFTER tPHZ; ELSIF (oe_n_in'event AND oe_n_in(i) = '1' AND b_out(i) = '0') THEN -- oe_n_in 0->1 b=0 b_out(i) <= transport 'H' AFTER tPLZ; END IF; END PROCESS; END GENERATE gen; END SN74ABT125_arch;
-- User-Encoded State Machine library ieee; use ieee.std_logic_1164.all; library work; entity passage_a_niveau is port( clock: in std_logic; reset: in std_logic; capteur_droite: in std_logic; capteur_gauche: in std_logic; ampoule: out std_logic; alert: out std_logic ); end entity; architecture rtl of passage_a_niveau is -- a type declaration to make the following easier to read subtype state is std_logic_vector(2 downto 0); -- State encoding: constant pdt: state := "000"; constant tvdd: state := "001"; constant tvdd2: state := "010"; constant tvdg: state := "101"; constant tvdg2: state := "110"; constant cata: state := "111"; signal current_state, next_state: state; begin -- transition function -- next_state <= pdt when current_state = pdt and capteur_gauche = '0' and capteur_droite = '0' else tvdd when current_state = pdt and capteur_gauche = '0' and capteur_droite = '1' else tvdg when current_state = pdt and capteur_gauche = '1' and capteur_droite = '0' else tvdd when current_state = tvdd and capteur_gauche = '0' else tvdd2 when current_state = tvdd and capteur_gauche = '1' else tvdd2 when current_state = tvdd2 and capteur_gauche = '1' else pdt when current_state = tvdd2 and capteur_gauche = '0' else tvdg when current_state = tvdg and capteur_droite = '0' else tvdg2 when current_state = tvdg and capteur_droite = '1' else tvdg2 when current_state = tvdg2 and capteur_droite = '1' else pdt when current_state = tvdg2 and capteur_droite = '0' else cata; -- all the other cases -- output function -- ampoule <= '0' when current_state = pdt else '1'; -- the state register -- process (clock) begin if (rising_edge(clock)) then if (current_state = cata) then alert <= '1'; else alert <= '0'; end if; if (reset = '1') then current_state <= pdt; --initial state else current_state <= next_state; end if; end if; end process; end architecture;
--_________________________________________________________________________________________________ -- | -- |The nanoFIP| | -- | -- CERN,BE/CO-HT | --________________________________________________________________________________________________| --------------------------------------------------------------------------------------------------- -- | -- wf_status_bytes_gen | -- | --------------------------------------------------------------------------------------------------- -- File wf_status_bytes_gen.vhd | -- | -- Description Generation of the nanoFIP status and MPS status bytes. | -- The unit is also responsible for outputting the "nanoFIP User Interface, | -- NON_WISHBONE" signals U_CACER, U_PACER, R_TLER, R_FCSER, that correspond to | -- nanoFIP status bits 2 to 5. | -- | -- The information contained in the nanoFIP status byte is coming from : | -- o the wf_consumption unit, for the bits 4 and 5 | -- o the "nanoFIP FIELDRIVE" inputs FD_WDGN and FD_TXER, for the bits 6 and 7 | -- o the "nanoFIP User Interface, NON_WISHBONE" inputs (VAR_ACC) and outputs | -- (VAR_RDY), for the bits 2 and 3. | -- | -- For the MPS byte, in memory mode, the refreshment and significance bits are set to| -- 1 if the user has updated the produced variable var3 since its last transmission; | -- the signal "nanoFIP User Interface, NON_WISHBONE" input VAR3_ACC,is used for this.| -- In stand-alone mode the MPS status byte has the refreshment and significance set | -- to 1. The same happens for the JTAG produced variable var_5, regardless of the | -- mode. | -- | -- The MPS and the nanoFIP status byte are reset after having been sent or after a | -- nanoFIP internal reset. | -- | -- Reminder: | -- ______________________ __________ ____________________________________________ | -- | nanoFIP STATUS BIT | NAME | CONTENTS | | -- |______________________|__________|____________________________________________| | -- | 0 | r1 | reserved | | -- |______________________|__________|____________________________________________| | -- | 1 | r2 | reserved | | -- |______________________|__________|____________________________________________| | -- | 2 | u_cacer | user cons var access error | | -- |______________________|__________|____________________________________________| | -- | 3 | u_pacer | user prod var access error | | -- |______________________|__________|____________________________________________| | -- | 4 | r_tler | received CTRL, PDU_TYPE or LGTH error | | -- |______________________|__________|____________________________________________| | -- | 5 | r_fcser | received FCS or bit number error | | -- |______________________|__________|____________________________________________| | -- | 6 | t_txer | transmit error (FIELDRIVE) | | -- |______________________|__________|____________________________________________| | -- | 7 | t_wder | watchdog error (FIELDRIVE) | | -- |______________________|__________|____________________________________________| | -- | -- --------------------------------------------------------------------------- | -- __________________ ______________ ______________ | -- | MPS STATUS BIT | NAME | CONTENTS | | -- |__________________|______________|______________| | -- | 0 | refreshment | 1/0 | | -- |__________________|______________|______________| | -- | 1 | | 0 | | -- |__________________|______________|______________| | -- | 2 | significance | 1/0 | | -- |__________________|______________|______________| | -- | 3 | | 0 | | -- |__________________|_____________ |______________| | -- | 4-7 | | 000 | | -- |__________________|_____________ |______________| | -- | -- | -- Authors Pablo Alvarez Sanchez (Pablo.Alvarez.Sanchez@cern.ch) | -- Evangelia Gousiou (Evangelia.Gousiou@cern.ch) | -- Date 06/2011 | -- Version v0.04 | -- Depends on wf_reset_unit | -- wf_consumption | -- wf_prod_bytes_retriever | -- wf_prod_permit | ---------------- | -- Last changes | -- 07/07/2009 v0.01 PA First version | -- 08/2010 v0.02 EG Internal extention of the var_rdy signals to avoid nanoFIP status | -- errors few cycles after var_rdy deactivation | -- 01/2011 v0.03 EG u_cacer,pacer etc outputs added; new input nfip_status_r_tler_p_i | -- for nanoFIP status bit 4; var_i input not needed as the signals | -- nfip_status_r_fcser_p_i and nfip_status_r_tler_p_i check the var | -- 06/2011 v0.04 EG all bits of nanoFIP status byte are reset upon rst_status_bytes_p_i | -- var_i added for the jtag_var1 treatment; | -- r_fcser, r_tler_o considered only for a cons variable (bf a wrong | -- crc on an id-dat could give r_fcser) | -- 11/2011 v0.042 EG the var3_acc_a_i and not the s_var3_acc_synch(3) was used for | -- the refreshment:s | --------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------- -- GNU LESSER GENERAL PUBLIC LICENSE | -- ------------------------------------ | -- This source file is free software; you can redistribute it and/or modify it under the terms of | -- the GNU Lesser General Public License as published by the Free Software Foundation; either | -- version 2.1 of the License, or (at your option) any later version. | -- This source 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. | -- See the GNU Lesser General Public License for more details. | -- You should have received a copy of the GNU Lesser General Public License along with this | -- source; if not, download it from http://www.gnu.org/licenses/lgpl-2.1.html | --------------------------------------------------------------------------------------------------- --================================================================================================= -- Libraries & Packages --================================================================================================= -- Standard library library IEEE; use IEEE.STD_LOGIC_1164.all; -- std_logic definitions use IEEE.NUMERIC_STD.all; -- conversion functions -- Specific library library work; use work.WF_PACKAGE.all; -- definitions of types, constants, entities --================================================================================================= -- Entity declaration for wf_status_bytes_gen --================================================================================================= entity wf_status_bytes_gen is port( -- INPUTS -- nanoFIP User Interface, General signals uclk_i : in std_logic; -- 40 MHz Clock slone_i : in std_logic; -- stand-alone mode -- Signal from the wf_reset_unit nfip_rst_i : in std_logic; -- nanaoFIP internal reset -- nanoFIP FIELDRIVE fd_txer_a_i : in std_logic; -- transmitter error fd_wdgn_a_i : in std_logic; -- watchdog on transmitter -- nanoFIP User Interface, NON-WISHBONE var1_acc_a_i : in std_logic; -- variable 1 access var2_acc_a_i : in std_logic; -- variable 2 access var3_acc_a_i : in std_logic; -- variable 3 access -- Signals from the wf_consumption unit nfip_status_r_fcser_p_i : in std_logic; -- wrong CRC bytes received nfip_status_r_tler_p_i : in std_logic; -- wrong PDU_TYPE, CTRL or LGTH bytes received var1_rdy_i : in std_logic; -- variable 1 ready var2_rdy_i : in std_logic; -- variable 2 ready -- Signals from the wf_prod_bytes_retriever unit rst_status_bytes_p_i : in std_logic; -- reset for both status bytes; -- they are reset right after having been delivered -- Signals from the wf_prod_permit unit var3_rdy_i : in std_logic; -- variable 3 ready -- Signal from the wf_engine_control unit var_i : in t_var; -- variable type that is being treated -- OUTPUTS -- nanoFIP User Interface, NON-WISHBONE outputs r_fcser_o : out std_logic; -- nanoFIP status byte, bit 5 r_tler_o : out std_logic; -- nanoFIP status byte, bit 4 u_cacer_o : out std_logic; -- nanoFIP status byte, bit 2 u_pacer_o : out std_logic; -- nanoFIP status byte, bit 3 -- Signal to the wf_prod_bytes_retriever mps_status_byte_o : out std_logic_vector (7 downto 0); -- MPS status byte nFIP_status_byte_o : out std_logic_vector (7 downto 0));-- nanoFIP status byte end entity wf_status_bytes_gen; --================================================================================================= -- architecture declaration --================================================================================================= architecture rtl of wf_status_bytes_gen is -- synchronizers signal s_fd_txer_synch, s_fd_wdg_synch, s_var1_acc_synch : std_logic_vector (2 downto 0); signal s_var2_acc_synch, s_var3_acc_synch : std_logic_vector (2 downto 0); -- MPS refreshment/ significance bit signal s_refreshment : std_logic; -- nanoFIP status byte signal s_nFIP_status_byte : std_logic_vector (7 downto 0); -- extension of var_rdy signals signal s_var1_rdy_c, s_var2_rdy_c, s_var3_rdy_c : unsigned (3 downto 0); signal s_var1_rdy_c_incr,s_var1_rdy_c_reinit,s_var1_rdy_extended : std_logic; signal s_var2_rdy_c_incr,s_var2_rdy_c_reinit,s_var2_rdy_extended : std_logic; signal s_var3_rdy_c_incr,s_var3_rdy_c_reinit,s_var3_rdy_extended : std_logic; --================================================================================================= -- architecture begin --================================================================================================= begin --------------------------------------------------------------------------------------------------- -- FD_TXER, FD_WDGN, VARx_ACC Synchronizers -- --------------------------------------------------------------------------------------------------- FIELDRIVE_inputs_synchronizer: process (uclk_i) begin if rising_edge (uclk_i) then if nfip_rst_i = '1' then s_fd_wdg_synch <= (others => '0'); s_fd_txer_synch <= (others => '0'); else s_fd_wdg_synch <= s_fd_wdg_synch (1 downto 0) & not fd_wdgn_a_i; s_fd_txer_synch <= s_fd_txer_synch (1 downto 0) & fd_txer_a_i; end if; end if; end process; --------------------------------------------------------------------------------------------------- VAR_ACC_synchronizer: process (uclk_i) begin if rising_edge (uclk_i) then if nfip_rst_i = '1' then s_var1_acc_synch <= (others => '0'); s_var2_acc_synch <= (others => '0'); s_var3_acc_synch <= (others => '0'); else s_var1_acc_synch <= s_var1_acc_synch(1 downto 0) & var1_acc_a_i; s_var2_acc_synch <= s_var2_acc_synch(1 downto 0) & var2_acc_a_i; s_var3_acc_synch <= s_var3_acc_synch(1 downto 0) & var3_acc_a_i; end if; end if; end process; --------------------------------------------------------------------------------------------------- -- MPS status byte -- --------------------------------------------------------------------------------------------------- -- Synchronous process Refreshment_bit_Creation: Creation of the refreshment bit (used in -- the MPS status byte). The bit is set to 1 if the user has updated the produced variable since -- its last transmission. The process is checking if the signal VAR3_ACC has been asserted since -- the last production of a variable. Refreshment_bit_Creation: process (uclk_i) begin if rising_edge (uclk_i) then if nfip_rst_i = '1' then s_refreshment <= '0'; else if rst_status_bytes_p_i = '1' then -- bit reinitialized after a production s_refreshment <= '0'; elsif s_var3_acc_synch(2) = '1' then -- indication that the memory has been accessed s_refreshment <= '1'; end if; end if; end if; end process; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Combinatorial process MPS_byte_Generation: Creation of the MPS byte (Table 2, functional specs) MPS_byte_Generation: process (slone_i, s_refreshment, var_i) begin -- var_5, regardless of the mode, has signif. & refresh. set to 1 if slone_i = '1' or var_i = var_5 then -- stand-alone mode has signif. & refresh. set to 1 mps_status_byte_o (7 downto 3) <= (others => '0'); mps_status_byte_o (c_SIGNIFICANCE_INDEX) <= '1'; mps_status_byte_o (1) <= '0'; mps_status_byte_o (c_REFRESHMENT_INDEX) <= '1'; else mps_status_byte_o (7 downto 3) <= (others => '0'); mps_status_byte_o (c_REFRESHMENT_INDEX) <= s_refreshment; mps_status_byte_o (1) <= '0'; mps_status_byte_o (c_SIGNIFICANCE_INDEX) <= s_refreshment; end if; end process; --------------------------------------------------------------------------------------------------- -- nanoFIP status byte -- --------------------------------------------------------------------------------------------------- -- Synchronous process nFIP_status_byte_Generation: Creation of the nanoFIP status byte (Table 8, -- functional specs) nFIP_status_byte_Generation: process (uclk_i) begin if rising_edge (uclk_i) then if nfip_rst_i = '1' then s_nFIP_status_byte <= (others => '0'); else -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- reinitialization after the transmission of a produced variable if rst_status_bytes_p_i = '1' then s_nFIP_status_byte <= (others => '0'); else -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- u_cacer if ((s_var1_rdy_extended = '0' and s_var1_acc_synch(2) = '1') or (s_var2_rdy_extended = '0' and s_var2_acc_synch(2) = '1')) then -- since the last time the status -- byte was delivered, s_nFIP_status_byte(c_U_CACER_INDEX) <= '1'; -- the user logic accessed a cons. -- var. when it was not ready end if; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- u_pacer if (s_var3_rdy_extended = '0' and s_var3_acc_synch(2) = '1') then -- since the last time the status s_nFIP_status_byte(c_U_PACER_INDEX) <= '1'; -- byte was delivered, -- the user logic accessed a prod. -- var. when it was not ready end if; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- t_wder if (s_fd_wdg_synch(2) = '1') then -- FIELDRIVE transmission error s_nFIP_status_byte(c_T_WDER_INDEX) <= '1'; end if; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- t_rxer if (s_fd_txer_synch(2) = '1') then -- FIELDRIVE watchdog timer problem s_nFIP_status_byte(c_T_TXER_INDEX) <= '1'; end if; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --r_tler -- PDU_TYPE or LGTH error on a consumed var if (nfip_status_r_tler_p_i = '1' and ((var_i = var_1) or (var_i = var_2) or (var_i = var_4) or (var_i = var_rst))) then s_nFIP_status_byte(c_R_TLER_INDEX) <= '1'; end if; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --r_fcser -- CRC or bit number error on a consumed var if (nfip_status_r_fcser_p_i = '1' and ((var_i = var_1) or (var_i = var_2) or (var_i = var_4) or (var_i = var_rst))) then s_nFIP_status_byte(c_R_FCSER_INDEX) <= '1'; end if; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- end if; end if; end if; end process; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Instantiation of 3 wf_incr_counters used for the internal extension of each one of the -- signals VAR1_RDY, VAR2_RDY, VAR3_RDY for 15 uclk cycles. -- Enabled VAR_ACC during this period will not trigger a nanoFIP status byte error. -- Note: actually it is the var_acc_synch(2) rather than the VAR_ACC used to check for access errors; -- var_acc_synch(2) is 3 cycles later than VAR_ACC and therefore enabled VAR_ACC is ignored up to 12 -- uclk cycles (not 15 uclk cycles!) after the deassertion of the VAR_RDY. Extend_VAR1_RDY: wf_incr_counter -- VAR1_RDY : __|---...---|___________________ generic map(g_counter_lgth => 4) -- s_var1_rdy_extended: __|---...------------------|____ port map( -- --> VAR_ACC here is OK! <-- uclk_i => uclk_i, counter_reinit_i => s_var1_rdy_c_reinit, counter_incr_i => s_var1_rdy_c_incr, counter_is_full_o => open, ------------------------------------------ counter_o => s_var1_rdy_c); ------------------------------------------ s_var1_rdy_c_reinit <= var1_rdy_i or nfip_rst_i; s_var1_rdy_c_incr <= '1' when s_var1_rdy_c < "1111" else '0'; s_var1_rdy_extended <= '1' when var1_rdy_i= '1' or s_var1_rdy_c_incr = '1' else '0'; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Extend_VAR2_RDY: wf_incr_counter generic map(g_counter_lgth => 4) port map( uclk_i => uclk_i, counter_reinit_i => s_var2_rdy_c_reinit, counter_incr_i => s_var2_rdy_c_incr, counter_is_full_o => open, ------------------------------------------ counter_o => s_var2_rdy_c); ------------------------------------------ s_var2_rdy_c_reinit <= var2_rdy_i or nfip_rst_i; s_var2_rdy_c_incr <= '1' when s_var2_rdy_c < "1111" else '0'; s_var2_rdy_extended <= '1' when var2_rdy_i= '1' or s_var2_rdy_c_incr = '1' else '0'; -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Extend_VAR3_RDY: wf_incr_counter generic map(g_counter_lgth => 4) port map( uclk_i => uclk_i, counter_reinit_i => s_var3_rdy_c_reinit, counter_incr_i => s_var3_rdy_c_incr, counter_is_full_o => open, ------------------------------------------ counter_o => s_var3_rdy_c); ------------------------------------------ s_var3_rdy_c_reinit <= var3_rdy_i or nfip_rst_i; s_var3_rdy_c_incr <= '1' when s_var3_rdy_c < "1111" else '0'; s_var3_rdy_extended <= '1' when VAR3_RDY_i= '1' or s_var3_rdy_c_incr = '1' else '0'; --------------------------------------------------------------------------------------------------- -- Outputs -- --------------------------------------------------------------------------------------------------- nFIP_status_byte_o <= s_nFIP_status_byte; u_cacer_o <= s_nFIP_status_byte(c_U_CACER_INDEX); u_pacer_o <= s_nFIP_status_byte(c_U_PACER_INDEX); r_tler_o <= s_nFIP_status_byte(c_R_TLER_INDEX); r_fcser_o <= s_nFIP_status_byte(c_R_FCSER_INDEX); end architecture rtl; --================================================================================================= -- architecture end --================================================================================================= --------------------------------------------------------------------------------------------------- -- E N D O F F I L E ---------------------------------------------------------------------------------------------------
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block dUmudxQPJ5M2PUDUcYfgHnPRLwUwkC+XB5T9NZXSn1g1pZkQfv5gS7nPfe7ZEvjMS+o8Np/OANdA qzGCJZt5cg== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block Q0E3aoAdb0B140iim4y1iiWNcdLjdZqMwLzOJF0nrmHO3yVpjEEgGf1jQH+Y/YzOfWa5Jl3SJkGc ouotVfQ3L+XlWN5AjNfUWkJ53aP8Wv/WsOk/Y4PLvUEBmU0ktwMLMN8pnjpF12lPK1hINULYmL29 88CYRjB4uexXhBPiZAM= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block guXO8dOVnzOMLvCDRhXwqvor/luFfcKIWSh2Utwe+ejYZeuA8SWjixYUeLxTvkIFHWNftaScbkxy tWk+CPYQwpMDPVM+QFzH1mUehcqakbh/vF4Kz+xqLH+rgCCNRNdwsxiXIF6cJZ2H6gd5HBU69YmV XsX9VER+56luo7nBZnq5y3LwvY/qJIwmAQU++TRuTRyGnV242iKGvtlv5YERkB4Y80eVXgNVMbDo dW1x6Fb2wq7ynGdrgddF6A6+uBa4IVWQjQYB9HR5SOegmTsXziOgvSAYbY63zrgICebhgoYpSyIR JKp82dZ6McEhEqWti+Z+z098lOqnguX6vcLwUA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block BIkQz8LH4cca89bTogqklY3RIF72L8LAZPWPZNks0KsyiMXCd+4/aDpV2IrxNED8cu08oRxtneja HBu5F2+t0OcDcUt/OUXb/Ao+yhREiGjc//UVzSBKSoJH411hpC0DwjE7mChwlgpm9aB+AJ94qcUv qrZ+XYQuZfoVLGv5LPk= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block b5p+IXP4UYFP25LphX/mFDmnp1dzYbtlrQtO85mZJLz88DCPPMJsEkwi5QtQfJ5ewTGfyhbytTxj eTyg2XlWFYfwayPBJZQ5T71rcyvii/OpAPk61Cz8mZ2uW6REGqZjN7NJm4ffhWQip6HDEY7nzOfX t0wO1LJ2OEWHBu6/tq64PXy+01V6Z6IMugXF+PMh+Q9N1A/InWBbIW4gmX2e0wSG2ytHUNrsfpG4 OJ13W8yazGxyrpKSYyHKT8bHy+IJnGoRjj4qgTdWNSko0Sc+Fy5fe3F697GLVSe/YnS5lrgzSBxE rCWpnDtNtaQ92J2ECthUou+atvEg022VAVM78g== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 4880) `protect data_block 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 `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block dUmudxQPJ5M2PUDUcYfgHnPRLwUwkC+XB5T9NZXSn1g1pZkQfv5gS7nPfe7ZEvjMS+o8Np/OANdA qzGCJZt5cg== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block Q0E3aoAdb0B140iim4y1iiWNcdLjdZqMwLzOJF0nrmHO3yVpjEEgGf1jQH+Y/YzOfWa5Jl3SJkGc ouotVfQ3L+XlWN5AjNfUWkJ53aP8Wv/WsOk/Y4PLvUEBmU0ktwMLMN8pnjpF12lPK1hINULYmL29 88CYRjB4uexXhBPiZAM= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block guXO8dOVnzOMLvCDRhXwqvor/luFfcKIWSh2Utwe+ejYZeuA8SWjixYUeLxTvkIFHWNftaScbkxy tWk+CPYQwpMDPVM+QFzH1mUehcqakbh/vF4Kz+xqLH+rgCCNRNdwsxiXIF6cJZ2H6gd5HBU69YmV XsX9VER+56luo7nBZnq5y3LwvY/qJIwmAQU++TRuTRyGnV242iKGvtlv5YERkB4Y80eVXgNVMbDo dW1x6Fb2wq7ynGdrgddF6A6+uBa4IVWQjQYB9HR5SOegmTsXziOgvSAYbY63zrgICebhgoYpSyIR JKp82dZ6McEhEqWti+Z+z098lOqnguX6vcLwUA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block BIkQz8LH4cca89bTogqklY3RIF72L8LAZPWPZNks0KsyiMXCd+4/aDpV2IrxNED8cu08oRxtneja HBu5F2+t0OcDcUt/OUXb/Ao+yhREiGjc//UVzSBKSoJH411hpC0DwjE7mChwlgpm9aB+AJ94qcUv qrZ+XYQuZfoVLGv5LPk= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block b5p+IXP4UYFP25LphX/mFDmnp1dzYbtlrQtO85mZJLz88DCPPMJsEkwi5QtQfJ5ewTGfyhbytTxj eTyg2XlWFYfwayPBJZQ5T71rcyvii/OpAPk61Cz8mZ2uW6REGqZjN7NJm4ffhWQip6HDEY7nzOfX t0wO1LJ2OEWHBu6/tq64PXy+01V6Z6IMugXF+PMh+Q9N1A/InWBbIW4gmX2e0wSG2ytHUNrsfpG4 OJ13W8yazGxyrpKSYyHKT8bHy+IJnGoRjj4qgTdWNSko0Sc+Fy5fe3F697GLVSe/YnS5lrgzSBxE rCWpnDtNtaQ92J2ECthUou+atvEg022VAVM78g== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 4880) `protect data_block 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 `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block dUmudxQPJ5M2PUDUcYfgHnPRLwUwkC+XB5T9NZXSn1g1pZkQfv5gS7nPfe7ZEvjMS+o8Np/OANdA qzGCJZt5cg== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block Q0E3aoAdb0B140iim4y1iiWNcdLjdZqMwLzOJF0nrmHO3yVpjEEgGf1jQH+Y/YzOfWa5Jl3SJkGc ouotVfQ3L+XlWN5AjNfUWkJ53aP8Wv/WsOk/Y4PLvUEBmU0ktwMLMN8pnjpF12lPK1hINULYmL29 88CYRjB4uexXhBPiZAM= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block guXO8dOVnzOMLvCDRhXwqvor/luFfcKIWSh2Utwe+ejYZeuA8SWjixYUeLxTvkIFHWNftaScbkxy tWk+CPYQwpMDPVM+QFzH1mUehcqakbh/vF4Kz+xqLH+rgCCNRNdwsxiXIF6cJZ2H6gd5HBU69YmV XsX9VER+56luo7nBZnq5y3LwvY/qJIwmAQU++TRuTRyGnV242iKGvtlv5YERkB4Y80eVXgNVMbDo dW1x6Fb2wq7ynGdrgddF6A6+uBa4IVWQjQYB9HR5SOegmTsXziOgvSAYbY63zrgICebhgoYpSyIR JKp82dZ6McEhEqWti+Z+z098lOqnguX6vcLwUA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block BIkQz8LH4cca89bTogqklY3RIF72L8LAZPWPZNks0KsyiMXCd+4/aDpV2IrxNED8cu08oRxtneja HBu5F2+t0OcDcUt/OUXb/Ao+yhREiGjc//UVzSBKSoJH411hpC0DwjE7mChwlgpm9aB+AJ94qcUv qrZ+XYQuZfoVLGv5LPk= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block b5p+IXP4UYFP25LphX/mFDmnp1dzYbtlrQtO85mZJLz88DCPPMJsEkwi5QtQfJ5ewTGfyhbytTxj eTyg2XlWFYfwayPBJZQ5T71rcyvii/OpAPk61Cz8mZ2uW6REGqZjN7NJm4ffhWQip6HDEY7nzOfX t0wO1LJ2OEWHBu6/tq64PXy+01V6Z6IMugXF+PMh+Q9N1A/InWBbIW4gmX2e0wSG2ytHUNrsfpG4 OJ13W8yazGxyrpKSYyHKT8bHy+IJnGoRjj4qgTdWNSko0Sc+Fy5fe3F697GLVSe/YnS5lrgzSBxE rCWpnDtNtaQ92J2ECthUou+atvEg022VAVM78g== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 4880) `protect data_block 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 `protect end_protected
--Copyright (C) 2016 Siavoosh Payandeh Azad library ieee; use ieee.std_logic_1164.all; --use IEEE.STD_LOGIC_ARITH.ALL; --use IEEE.STD_LOGIC_UNSIGNED.ALL; entity FIFO_credit_based is generic ( DATA_WIDTH: integer := 32 ); port ( reset: in std_logic; clk: in std_logic; RX: in std_logic_vector(DATA_WIDTH-1 downto 0); valid_in: in std_logic; read_en_N : in std_logic; read_en_E : in std_logic; read_en_W : in std_logic; read_en_S : in std_logic; read_en_L : in std_logic; credit_out: out std_logic; empty_out: out std_logic; Data_out: out std_logic_vector(DATA_WIDTH-1 downto 0) ); end FIFO_credit_based; architecture behavior of FIFO_credit_based is signal read_pointer, read_pointer_in, write_pointer, write_pointer_in: std_logic_vector(3 downto 0); signal full, empty: std_logic; signal read_en, write_en: std_logic; signal FIFO_MEM_1, FIFO_MEM_1_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_2, FIFO_MEM_2_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_3, FIFO_MEM_3_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_4, FIFO_MEM_4_in : std_logic_vector(DATA_WIDTH-1 downto 0); begin -------------------------------------------------------------------------------------------- -- block diagram of the FIFO! -------------------------------------------------------------------------------------------- -- circular buffer structure -- <--- WriteP -- --------------------------------- -- | 3 | 2 | 1 | 0 | -- --------------------------------- -- <--- readP -------------------------------------------------------------------------------------------- process (clk, reset)begin if reset = '0' then read_pointer <= "0001"; write_pointer <= "0001"; FIFO_MEM_1 <= (others=>'0'); FIFO_MEM_2 <= (others=>'0'); FIFO_MEM_3 <= (others=>'0'); FIFO_MEM_4 <= (others=>'0'); credit_out <= '0'; elsif clk'event and clk = '1' then write_pointer <= write_pointer_in; read_pointer <= read_pointer_in; credit_out <= '0'; if write_en = '1' then --write into the memory FIFO_MEM_1 <= FIFO_MEM_1_in; FIFO_MEM_2 <= FIFO_MEM_2_in; FIFO_MEM_3 <= FIFO_MEM_3_in; FIFO_MEM_4 <= FIFO_MEM_4_in; end if; if read_en = '1' then credit_out <= '1'; end if; end if; end process; -- anything below here is pure combinational -- combinatorial part process(RX, write_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( write_pointer ) is when "0001" => FIFO_MEM_1_in <= RX; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0010" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= RX; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0100" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= RX; FIFO_MEM_4_in <= FIFO_MEM_4; when "1000" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= RX; when others => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; end case ; end process; process(read_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( read_pointer ) is when "0001" => Data_out <= FIFO_MEM_1; when "0010" => Data_out <= FIFO_MEM_2; when "0100" => Data_out <= FIFO_MEM_3; when "1000" => Data_out <= FIFO_MEM_4; when others => Data_out <= FIFO_MEM_1; end case ; end process; read_en <= (read_en_N or read_en_E or read_en_W or read_en_S or read_en_L) and not empty; empty_out <= empty; process(write_en, write_pointer)begin if write_en = '1'then write_pointer_in <= write_pointer(2 downto 0)&write_pointer(3); else write_pointer_in <= write_pointer; end if; end process; process(read_en, empty, read_pointer)begin if (read_en = '1' and empty = '0') then read_pointer_in <= read_pointer(2 downto 0)&read_pointer(3); else read_pointer_in <= read_pointer; end if; end process; process(full, valid_in) begin if valid_in = '1' and full ='0' then write_en <= '1'; else write_en <= '0'; end if; end process; process(write_pointer, read_pointer) begin if read_pointer = write_pointer then empty <= '1'; else empty <= '0'; end if; -- if write_pointer = read_pointer>>1 then if write_pointer = read_pointer(0)&read_pointer(3 downto 1) then full <= '1'; else full <= '0'; end if; end process; end;
--Copyright (C) 2016 Siavoosh Payandeh Azad library ieee; use ieee.std_logic_1164.all; --use IEEE.STD_LOGIC_ARITH.ALL; --use IEEE.STD_LOGIC_UNSIGNED.ALL; entity FIFO_credit_based is generic ( DATA_WIDTH: integer := 32 ); port ( reset: in std_logic; clk: in std_logic; RX: in std_logic_vector(DATA_WIDTH-1 downto 0); valid_in: in std_logic; read_en_N : in std_logic; read_en_E : in std_logic; read_en_W : in std_logic; read_en_S : in std_logic; read_en_L : in std_logic; credit_out: out std_logic; empty_out: out std_logic; Data_out: out std_logic_vector(DATA_WIDTH-1 downto 0) ); end FIFO_credit_based; architecture behavior of FIFO_credit_based is signal read_pointer, read_pointer_in, write_pointer, write_pointer_in: std_logic_vector(3 downto 0); signal full, empty: std_logic; signal read_en, write_en: std_logic; signal FIFO_MEM_1, FIFO_MEM_1_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_2, FIFO_MEM_2_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_3, FIFO_MEM_3_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_4, FIFO_MEM_4_in : std_logic_vector(DATA_WIDTH-1 downto 0); begin -------------------------------------------------------------------------------------------- -- block diagram of the FIFO! -------------------------------------------------------------------------------------------- -- circular buffer structure -- <--- WriteP -- --------------------------------- -- | 3 | 2 | 1 | 0 | -- --------------------------------- -- <--- readP -------------------------------------------------------------------------------------------- process (clk, reset)begin if reset = '0' then read_pointer <= "0001"; write_pointer <= "0001"; FIFO_MEM_1 <= (others=>'0'); FIFO_MEM_2 <= (others=>'0'); FIFO_MEM_3 <= (others=>'0'); FIFO_MEM_4 <= (others=>'0'); credit_out <= '0'; elsif clk'event and clk = '1' then write_pointer <= write_pointer_in; read_pointer <= read_pointer_in; credit_out <= '0'; if write_en = '1' then --write into the memory FIFO_MEM_1 <= FIFO_MEM_1_in; FIFO_MEM_2 <= FIFO_MEM_2_in; FIFO_MEM_3 <= FIFO_MEM_3_in; FIFO_MEM_4 <= FIFO_MEM_4_in; end if; if read_en = '1' then credit_out <= '1'; end if; end if; end process; -- anything below here is pure combinational -- combinatorial part process(RX, write_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( write_pointer ) is when "0001" => FIFO_MEM_1_in <= RX; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0010" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= RX; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0100" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= RX; FIFO_MEM_4_in <= FIFO_MEM_4; when "1000" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= RX; when others => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; end case ; end process; process(read_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( read_pointer ) is when "0001" => Data_out <= FIFO_MEM_1; when "0010" => Data_out <= FIFO_MEM_2; when "0100" => Data_out <= FIFO_MEM_3; when "1000" => Data_out <= FIFO_MEM_4; when others => Data_out <= FIFO_MEM_1; end case ; end process; read_en <= (read_en_N or read_en_E or read_en_W or read_en_S or read_en_L) and not empty; empty_out <= empty; process(write_en, write_pointer)begin if write_en = '1'then write_pointer_in <= write_pointer(2 downto 0)&write_pointer(3); else write_pointer_in <= write_pointer; end if; end process; process(read_en, empty, read_pointer)begin if (read_en = '1' and empty = '0') then read_pointer_in <= read_pointer(2 downto 0)&read_pointer(3); else read_pointer_in <= read_pointer; end if; end process; process(full, valid_in) begin if valid_in = '1' and full ='0' then write_en <= '1'; else write_en <= '0'; end if; end process; process(write_pointer, read_pointer) begin if read_pointer = write_pointer then empty <= '1'; else empty <= '0'; end if; -- if write_pointer = read_pointer>>1 then if write_pointer = read_pointer(0)&read_pointer(3 downto 1) then full <= '1'; else full <= '0'; end if; end process; end;
--Copyright (C) 2016 Siavoosh Payandeh Azad library ieee; use ieee.std_logic_1164.all; --use IEEE.STD_LOGIC_ARITH.ALL; --use IEEE.STD_LOGIC_UNSIGNED.ALL; entity FIFO_credit_based is generic ( DATA_WIDTH: integer := 32 ); port ( reset: in std_logic; clk: in std_logic; RX: in std_logic_vector(DATA_WIDTH-1 downto 0); valid_in: in std_logic; read_en_N : in std_logic; read_en_E : in std_logic; read_en_W : in std_logic; read_en_S : in std_logic; read_en_L : in std_logic; credit_out: out std_logic; empty_out: out std_logic; Data_out: out std_logic_vector(DATA_WIDTH-1 downto 0) ); end FIFO_credit_based; architecture behavior of FIFO_credit_based is signal read_pointer, read_pointer_in, write_pointer, write_pointer_in: std_logic_vector(3 downto 0); signal full, empty: std_logic; signal read_en, write_en: std_logic; signal FIFO_MEM_1, FIFO_MEM_1_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_2, FIFO_MEM_2_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_3, FIFO_MEM_3_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_4, FIFO_MEM_4_in : std_logic_vector(DATA_WIDTH-1 downto 0); begin -------------------------------------------------------------------------------------------- -- block diagram of the FIFO! -------------------------------------------------------------------------------------------- -- circular buffer structure -- <--- WriteP -- --------------------------------- -- | 3 | 2 | 1 | 0 | -- --------------------------------- -- <--- readP -------------------------------------------------------------------------------------------- process (clk, reset)begin if reset = '0' then read_pointer <= "0001"; write_pointer <= "0001"; FIFO_MEM_1 <= (others=>'0'); FIFO_MEM_2 <= (others=>'0'); FIFO_MEM_3 <= (others=>'0'); FIFO_MEM_4 <= (others=>'0'); credit_out <= '0'; elsif clk'event and clk = '1' then write_pointer <= write_pointer_in; read_pointer <= read_pointer_in; credit_out <= '0'; if write_en = '1' then --write into the memory FIFO_MEM_1 <= FIFO_MEM_1_in; FIFO_MEM_2 <= FIFO_MEM_2_in; FIFO_MEM_3 <= FIFO_MEM_3_in; FIFO_MEM_4 <= FIFO_MEM_4_in; end if; if read_en = '1' then credit_out <= '1'; end if; end if; end process; -- anything below here is pure combinational -- combinatorial part process(RX, write_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( write_pointer ) is when "0001" => FIFO_MEM_1_in <= RX; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0010" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= RX; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0100" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= RX; FIFO_MEM_4_in <= FIFO_MEM_4; when "1000" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= RX; when others => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; end case ; end process; process(read_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( read_pointer ) is when "0001" => Data_out <= FIFO_MEM_1; when "0010" => Data_out <= FIFO_MEM_2; when "0100" => Data_out <= FIFO_MEM_3; when "1000" => Data_out <= FIFO_MEM_4; when others => Data_out <= FIFO_MEM_1; end case ; end process; read_en <= (read_en_N or read_en_E or read_en_W or read_en_S or read_en_L) and not empty; empty_out <= empty; process(write_en, write_pointer)begin if write_en = '1'then write_pointer_in <= write_pointer(2 downto 0)&write_pointer(3); else write_pointer_in <= write_pointer; end if; end process; process(read_en, empty, read_pointer)begin if (read_en = '1' and empty = '0') then read_pointer_in <= read_pointer(2 downto 0)&read_pointer(3); else read_pointer_in <= read_pointer; end if; end process; process(full, valid_in) begin if valid_in = '1' and full ='0' then write_en <= '1'; else write_en <= '0'; end if; end process; process(write_pointer, read_pointer) begin if read_pointer = write_pointer then empty <= '1'; else empty <= '0'; end if; -- if write_pointer = read_pointer>>1 then if write_pointer = read_pointer(0)&read_pointer(3 downto 1) then full <= '1'; else full <= '0'; end if; end process; end;
--Copyright (C) 2016 Siavoosh Payandeh Azad library ieee; use ieee.std_logic_1164.all; --use IEEE.STD_LOGIC_ARITH.ALL; --use IEEE.STD_LOGIC_UNSIGNED.ALL; entity FIFO_credit_based is generic ( DATA_WIDTH: integer := 32 ); port ( reset: in std_logic; clk: in std_logic; RX: in std_logic_vector(DATA_WIDTH-1 downto 0); valid_in: in std_logic; read_en_N : in std_logic; read_en_E : in std_logic; read_en_W : in std_logic; read_en_S : in std_logic; read_en_L : in std_logic; credit_out: out std_logic; empty_out: out std_logic; Data_out: out std_logic_vector(DATA_WIDTH-1 downto 0) ); end FIFO_credit_based; architecture behavior of FIFO_credit_based is signal read_pointer, read_pointer_in, write_pointer, write_pointer_in: std_logic_vector(3 downto 0); signal full, empty: std_logic; signal read_en, write_en: std_logic; signal FIFO_MEM_1, FIFO_MEM_1_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_2, FIFO_MEM_2_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_3, FIFO_MEM_3_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_4, FIFO_MEM_4_in : std_logic_vector(DATA_WIDTH-1 downto 0); begin -------------------------------------------------------------------------------------------- -- block diagram of the FIFO! -------------------------------------------------------------------------------------------- -- circular buffer structure -- <--- WriteP -- --------------------------------- -- | 3 | 2 | 1 | 0 | -- --------------------------------- -- <--- readP -------------------------------------------------------------------------------------------- process (clk, reset)begin if reset = '0' then read_pointer <= "0001"; write_pointer <= "0001"; FIFO_MEM_1 <= (others=>'0'); FIFO_MEM_2 <= (others=>'0'); FIFO_MEM_3 <= (others=>'0'); FIFO_MEM_4 <= (others=>'0'); credit_out <= '0'; elsif clk'event and clk = '1' then write_pointer <= write_pointer_in; read_pointer <= read_pointer_in; credit_out <= '0'; if write_en = '1' then --write into the memory FIFO_MEM_1 <= FIFO_MEM_1_in; FIFO_MEM_2 <= FIFO_MEM_2_in; FIFO_MEM_3 <= FIFO_MEM_3_in; FIFO_MEM_4 <= FIFO_MEM_4_in; end if; if read_en = '1' then credit_out <= '1'; end if; end if; end process; -- anything below here is pure combinational -- combinatorial part process(RX, write_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( write_pointer ) is when "0001" => FIFO_MEM_1_in <= RX; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0010" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= RX; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0100" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= RX; FIFO_MEM_4_in <= FIFO_MEM_4; when "1000" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= RX; when others => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; end case ; end process; process(read_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( read_pointer ) is when "0001" => Data_out <= FIFO_MEM_1; when "0010" => Data_out <= FIFO_MEM_2; when "0100" => Data_out <= FIFO_MEM_3; when "1000" => Data_out <= FIFO_MEM_4; when others => Data_out <= FIFO_MEM_1; end case ; end process; read_en <= (read_en_N or read_en_E or read_en_W or read_en_S or read_en_L) and not empty; empty_out <= empty; process(write_en, write_pointer)begin if write_en = '1'then write_pointer_in <= write_pointer(2 downto 0)&write_pointer(3); else write_pointer_in <= write_pointer; end if; end process; process(read_en, empty, read_pointer)begin if (read_en = '1' and empty = '0') then read_pointer_in <= read_pointer(2 downto 0)&read_pointer(3); else read_pointer_in <= read_pointer; end if; end process; process(full, valid_in) begin if valid_in = '1' and full ='0' then write_en <= '1'; else write_en <= '0'; end if; end process; process(write_pointer, read_pointer) begin if read_pointer = write_pointer then empty <= '1'; else empty <= '0'; end if; -- if write_pointer = read_pointer>>1 then if write_pointer = read_pointer(0)&read_pointer(3 downto 1) then full <= '1'; else full <= '0'; end if; end process; end;
--Copyright (C) 2016 Siavoosh Payandeh Azad library ieee; use ieee.std_logic_1164.all; --use IEEE.STD_LOGIC_ARITH.ALL; --use IEEE.STD_LOGIC_UNSIGNED.ALL; entity FIFO_credit_based is generic ( DATA_WIDTH: integer := 32 ); port ( reset: in std_logic; clk: in std_logic; RX: in std_logic_vector(DATA_WIDTH-1 downto 0); valid_in: in std_logic; read_en_N : in std_logic; read_en_E : in std_logic; read_en_W : in std_logic; read_en_S : in std_logic; read_en_L : in std_logic; credit_out: out std_logic; empty_out: out std_logic; Data_out: out std_logic_vector(DATA_WIDTH-1 downto 0) ); end FIFO_credit_based; architecture behavior of FIFO_credit_based is signal read_pointer, read_pointer_in, write_pointer, write_pointer_in: std_logic_vector(3 downto 0); signal full, empty: std_logic; signal read_en, write_en: std_logic; signal FIFO_MEM_1, FIFO_MEM_1_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_2, FIFO_MEM_2_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_3, FIFO_MEM_3_in : std_logic_vector(DATA_WIDTH-1 downto 0); signal FIFO_MEM_4, FIFO_MEM_4_in : std_logic_vector(DATA_WIDTH-1 downto 0); begin -------------------------------------------------------------------------------------------- -- block diagram of the FIFO! -------------------------------------------------------------------------------------------- -- circular buffer structure -- <--- WriteP -- --------------------------------- -- | 3 | 2 | 1 | 0 | -- --------------------------------- -- <--- readP -------------------------------------------------------------------------------------------- process (clk, reset)begin if reset = '0' then read_pointer <= "0001"; write_pointer <= "0001"; FIFO_MEM_1 <= (others=>'0'); FIFO_MEM_2 <= (others=>'0'); FIFO_MEM_3 <= (others=>'0'); FIFO_MEM_4 <= (others=>'0'); credit_out <= '0'; elsif clk'event and clk = '1' then write_pointer <= write_pointer_in; read_pointer <= read_pointer_in; credit_out <= '0'; if write_en = '1' then --write into the memory FIFO_MEM_1 <= FIFO_MEM_1_in; FIFO_MEM_2 <= FIFO_MEM_2_in; FIFO_MEM_3 <= FIFO_MEM_3_in; FIFO_MEM_4 <= FIFO_MEM_4_in; end if; if read_en = '1' then credit_out <= '1'; end if; end if; end process; -- anything below here is pure combinational -- combinatorial part process(RX, write_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( write_pointer ) is when "0001" => FIFO_MEM_1_in <= RX; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0010" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= RX; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; when "0100" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= RX; FIFO_MEM_4_in <= FIFO_MEM_4; when "1000" => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= RX; when others => FIFO_MEM_1_in <= FIFO_MEM_1; FIFO_MEM_2_in <= FIFO_MEM_2; FIFO_MEM_3_in <= FIFO_MEM_3; FIFO_MEM_4_in <= FIFO_MEM_4; end case ; end process; process(read_pointer, FIFO_MEM_1, FIFO_MEM_2, FIFO_MEM_3, FIFO_MEM_4)begin case( read_pointer ) is when "0001" => Data_out <= FIFO_MEM_1; when "0010" => Data_out <= FIFO_MEM_2; when "0100" => Data_out <= FIFO_MEM_3; when "1000" => Data_out <= FIFO_MEM_4; when others => Data_out <= FIFO_MEM_1; end case ; end process; read_en <= (read_en_N or read_en_E or read_en_W or read_en_S or read_en_L) and not empty; empty_out <= empty; process(write_en, write_pointer)begin if write_en = '1'then write_pointer_in <= write_pointer(2 downto 0)&write_pointer(3); else write_pointer_in <= write_pointer; end if; end process; process(read_en, empty, read_pointer)begin if (read_en = '1' and empty = '0') then read_pointer_in <= read_pointer(2 downto 0)&read_pointer(3); else read_pointer_in <= read_pointer; end if; end process; process(full, valid_in) begin if valid_in = '1' and full ='0' then write_en <= '1'; else write_en <= '0'; end if; end process; process(write_pointer, read_pointer) begin if read_pointer = write_pointer then empty <= '1'; else empty <= '0'; end if; -- if write_pointer = read_pointer>>1 then if write_pointer = read_pointer(0)&read_pointer(3 downto 1) then full <= '1'; else full <= '0'; end if; end process; end;
-- NEED RESULT: ARCH00420.P1: Multi inertial transactions occurred on concurrent signal asg passed -- NEED RESULT: ARCH00420: One inertial transaction occurred on a concurrent signal asg passed -- NEED RESULT: ARCH00420: Old transactions were removed on a concurrent signal asg passed -- NEED RESULT: ARCH00420: One inertial transaction occurred on a concurrent signal asg passed -- NEED RESULT: ARCH00420: Inertial semantics check on a concurrent signal asg passed -- NEED RESULT: P1: Inertial transactions completed entirely passed ------------------------------------------------------------------------------- -- -- Copyright (c) 1989 by Intermetrics, Inc. -- All rights reserved. -- ------------------------------------------------------------------------------- -- -- TEST NAME: -- -- CT00420 -- -- AUTHOR: -- -- G. Tominovich -- -- TEST OBJECTIVES: -- -- 9.5 (3) -- 9.5.1 (1) -- 9.5.1 (2) -- -- DESIGN UNIT ORDERING: -- -- ENT00420(ARCH00420) -- ENT00420_Test_Bench(ARCH00420_Test_Bench) -- -- REVISION HISTORY: -- -- 30-JUL-1987 - initial revision -- -- NOTES: -- -- self-checking -- automatically generated -- use WORK.STANDARD_TYPES.all ; entity ENT00420 is port ( s_st_rec3 : inout st_rec3 ) ; subtype chk_sig_type is integer range -1 to 100 ; signal chk_st_rec3 : chk_sig_type := -1 ; -- end ENT00420 ; -- -- architecture ARCH00420 of ENT00420 is subtype chk_time_type is Time ; signal s_st_rec3_savt : chk_time_type := 0 ns ; -- subtype chk_cnt_type is Integer ; signal s_st_rec3_cnt : chk_cnt_type := 0 ; -- type select_type is range 1 to 6 ; signal st_rec3_select : select_type := 1 ; -- begin CHG1 : process variable correct : boolean ; begin case s_st_rec3_cnt is when 0 => null ; -- s_st_rec3.f2.f2 <= -- c_st_rec3_2.f2.f2 after 10 ns, -- c_st_rec3_1.f2.f2 after 20 ns ; -- when 1 => correct := s_st_rec3.f2.f2 = c_st_rec3_2.f2.f2 and (s_st_rec3_savt + 10 ns) = Std.Standard.Now ; -- when 2 => correct := correct and s_st_rec3.f2.f2 = c_st_rec3_1.f2.f2 and (s_st_rec3_savt + 10 ns) = Std.Standard.Now ; test_report ( "ARCH00420.P1" , "Multi inertial transactions occurred on " & "concurrent signal asg", correct ) ; -- st_rec3_select <= transport 2 ; -- s_st_rec3.f2.f2 <= -- c_st_rec3_2.f2.f2 after 10 ns , -- c_st_rec3_1.f2.f2 after 20 ns , -- c_st_rec3_2.f2.f2 after 30 ns , -- c_st_rec3_1.f2.f2 after 40 ns ; -- when 3 => correct := s_st_rec3.f2.f2 = c_st_rec3_2.f2.f2 and (s_st_rec3_savt + 10 ns) = Std.Standard.Now ; st_rec3_select <= transport 3 ; -- s_st_rec3.f2.f2 <= -- c_st_rec3_1.f2.f2 after 5 ns ; -- when 4 => correct := correct and s_st_rec3.f2.f2 = c_st_rec3_1.f2.f2 and (s_st_rec3_savt + 5 ns) = Std.Standard.Now ; test_report ( "ARCH00420" , "One inertial transaction occurred on a " & "concurrent signal asg", correct ) ; st_rec3_select <= transport 4 ; -- s_st_rec3.f2.f2 <= -- c_st_rec3_1.f2.f2 after 100 ns ; -- when 5 => correct := correct and s_st_rec3.f2.f2 = c_st_rec3_1.f2.f2 and (s_st_rec3_savt + 100 ns) = Std.Standard.Now ; test_report ( "ARCH00420" , "Old transactions were removed on a " & "concurrent signal asg", correct ) ; st_rec3_select <= transport 5 ; -- s_st_rec3.f2.f2 <= -- c_st_rec3_2.f2.f2 after 10 ns , -- c_st_rec3_1.f2.f2 after 20 ns , -- c_st_rec3_2.f2.f2 after 30 ns , -- c_st_rec3_1.f2.f2 after 40 ns ; -- when 6 => correct := correct and s_st_rec3.f2.f2 = c_st_rec3_2.f2.f2 and (s_st_rec3_savt + 10 ns) = Std.Standard.Now ; test_report ( "ARCH00420" , "One inertial transaction occurred on a " & "concurrent signal asg", correct ) ; st_rec3_select <= transport 6 ; -- Last transaction above is marked -- s_st_rec3.f2.f2 <= -- c_st_rec3_1.f2.f2 after 40 ns ; -- when 7 => correct := correct and s_st_rec3.f2.f2 = c_st_rec3_1.f2.f2 and (s_st_rec3_savt + 30 ns) = Std.Standard.Now ; -- when 8 => correct := correct and s_st_rec3.f2.f2 = c_st_rec3_1.f2.f2 and (s_st_rec3_savt + 10 ns) = Std.Standard.Now ; test_report ( "ARCH00420" , "Inertial semantics check on a concurrent " & "signal asg", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00420" , "Inertial semantics check on a concurrent " & "signal asg", false ) ; -- end case ; -- s_st_rec3_savt <= transport Std.Standard.Now ; chk_st_rec3 <= transport s_st_rec3_cnt after (1 us - Std.Standard.Now) ; s_st_rec3_cnt <= transport s_st_rec3_cnt + 1 ; wait until (not s_st_rec3.f2.f2'Quiet) and (s_st_rec3_savt /= Std.Standard.Now) ; -- end process CHG1 ; -- PGEN_CHKP_1 : process ( chk_st_rec3 ) begin if Std.Standard.Now > 0 ns then test_report ( "P1" , "Inertial transactions completed entirely", chk_st_rec3 = 8 ) ; end if ; end process PGEN_CHKP_1 ; -- -- s_st_rec3.f2.f2 <= c_st_rec3_2.f2.f2 after 10 ns, c_st_rec3_1.f2.f2 after 20 ns when st_rec3_select = 1 else -- c_st_rec3_2.f2.f2 after 10 ns , c_st_rec3_1.f2.f2 after 20 ns , c_st_rec3_2.f2.f2 after 30 ns , c_st_rec3_1.f2.f2 after 40 ns when st_rec3_select = 2 else -- c_st_rec3_1.f2.f2 after 5 ns when st_rec3_select = 3 else -- c_st_rec3_1.f2.f2 after 100 ns when st_rec3_select = 4 else -- c_st_rec3_2.f2.f2 after 10 ns , c_st_rec3_1.f2.f2 after 20 ns , c_st_rec3_2.f2.f2 after 30 ns , c_st_rec3_1.f2.f2 after 40 ns when st_rec3_select = 5 else -- -- Last transaction above is marked c_st_rec3_1.f2.f2 after 40 ns ; -- end ARCH00420 ; -- -- use WORK.STANDARD_TYPES.all ; entity ENT00420_Test_Bench is signal s_st_rec3 : st_rec3 := c_st_rec3_1 ; -- end ENT00420_Test_Bench ; -- -- architecture ARCH00420_Test_Bench of ENT00420_Test_Bench is begin L1: block component UUT port ( s_st_rec3 : inout st_rec3 ) ; end component ; -- for CIS1 : UUT use entity WORK.ENT00420 ( ARCH00420 ) ; begin CIS1 : UUT port map ( s_st_rec3 ) ; end block L1 ; end ARCH00420_Test_Bench ;
------------------------------------------------------------------------------ ---- ---- ---- Single Port RAM that maps to a Xilinx BRAM ---- ---- ---- ---- http://www.opencores.org/ ---- ---- ---- ---- Description: ---- ---- This is a program+data memory for the ZPU. It maps to a Xilinx BRAM ---- ---- ---- ---- To Do: ---- ---- - ---- ---- ---- ---- Author: ---- ---- - Salvador E. Tropea, salvador inti.gob.ar ---- ---- ---- ------------------------------------------------------------------------------ ---- ---- ---- Copyright (c) 2008 Salvador E. Tropea <salvador inti.gob.ar> ---- ---- Copyright (c) 2008 Instituto Nacional de Tecnología Industrial ---- ---- ---- ---- Distributed under the BSD license ---- ---- ---- ------------------------------------------------------------------------------ ---- ---- ---- Design unit: SinglePortRAM(Xilinx) (Entity and architecture) ---- ---- File name: rom_s.in.vhdl (template used) ---- ---- Note: None ---- ---- Limitations: None known ---- ---- Errors: None known ---- ---- Library: work ---- ---- Dependencies: IEEE.std_logic_1164 ---- ---- IEEE.numeric_std ---- ---- Target FPGA: Spartan 3 (XC3S1500-4-FG456) ---- ---- Language: VHDL ---- ---- Wishbone: No ---- ---- Synthesis tools: Xilinx Release 9.2.03i - xst J.39 ---- ---- Simulation tools: GHDL [Sokcho edition] (0.2x) ---- ---- Text editor: SETEdit 0.5.x ---- ---- ---- ------------------------------------------------------------------------------ library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity SinglePortRAM is generic( WORD_SIZE : integer:=32; -- Word Size 16/32 BYTE_BITS : integer:=2; -- Bits used to address bytes BRAM_W : integer:=15); -- Address Width port( clk_i : in std_logic; we_i : in std_logic; re_i : in std_logic; addr_i : in unsigned(BRAM_W-1 downto BYTE_BITS); write_i : in unsigned(WORD_SIZE-1 downto 0); read_o : out unsigned(WORD_SIZE-1 downto 0); busy_o : out std_logic); end entity SinglePortRAM; architecture Xilinx of SinglePortRAM is type ram_type is array(natural range 0 to ((2**BRAM_W)/4)-1) of unsigned(WORD_SIZE-1 downto 0); signal addr_r : unsigned(BRAM_W-1 downto BYTE_BITS); signal ram : ram_type := ( 0 => x"0b0b0b0b", 1 => x"82700b0b", 2 => x"80d1b80c", 3 => x"3a0b0b80", 4 => x"c9ab0400", 5 => x"00000000", 6 => x"00000000", 7 => x"00000000", 8 => x"0b0b0b89", 9 => x"90040000", 10 => x"00000000", 11 => x"00000000", 12 => x"00000000", 13 => x"00000000", 14 => x"00000000", 15 => x"00000000", 16 => x"71fd0608", 17 => x"72830609", 18 => x"81058205", 19 => x"832b2a83", 20 => x"ffff0652", 21 => x"04000000", 22 => x"00000000", 23 => x"00000000", 24 => x"71fd0608", 25 => x"83ffff73", 26 => x"83060981", 27 => x"05820583", 28 => x"2b2b0906", 29 => x"7383ffff", 30 => x"0b0b0b0b", 31 => x"83a70400", 32 => x"72098105", 33 => x"72057373", 34 => x"09060906", 35 => x"73097306", 36 => x"070a8106", 37 => x"53510400", 38 => x"00000000", 39 => x"00000000", 40 => x"72722473", 41 => x"732e0753", 42 => x"51040000", 43 => x"00000000", 44 => x"00000000", 45 => x"00000000", 46 => x"00000000", 47 => x"00000000", 48 => x"71737109", 49 => x"71068106", 50 => x"30720a10", 51 => x"0a720a10", 52 => x"0a31050a", 53 => x"81065151", 54 => x"53510400", 55 => x"00000000", 56 => x"72722673", 57 => x"732e0753", 58 => x"51040000", 59 => x"00000000", 60 => x"00000000", 61 => x"00000000", 62 => x"00000000", 63 => x"00000000", 64 => x"00000000", 65 => x"00000000", 66 => x"00000000", 67 => x"00000000", 68 => x"00000000", 69 => x"00000000", 70 => x"00000000", 71 => x"00000000", 72 => x"0b0b0b88", 73 => x"c4040000", 74 => x"00000000", 75 => x"00000000", 76 => x"00000000", 77 => x"00000000", 78 => x"00000000", 79 => x"00000000", 80 => x"720a722b", 81 => x"0a535104", 82 => x"00000000", 83 => x"00000000", 84 => x"00000000", 85 => x"00000000", 86 => x"00000000", 87 => x"00000000", 88 => x"72729f06", 89 => x"0981050b", 90 => x"0b0b88a7", 91 => x"05040000", 92 => x"00000000", 93 => x"00000000", 94 => x"00000000", 95 => x"00000000", 96 => x"72722aff", 97 => x"739f062a", 98 => x"0974090a", 99 => x"8106ff05", 100 => x"06075351", 101 => x"04000000", 102 => x"00000000", 103 => x"00000000", 104 => x"71715351", 105 => x"020d0406", 106 => x"73830609", 107 => x"81058205", 108 => x"832b0b2b", 109 => x"0772fc06", 110 => x"0c515104", 111 => x"00000000", 112 => x"72098105", 113 => x"72050970", 114 => x"81050906", 115 => x"0a810653", 116 => x"51040000", 117 => x"00000000", 118 => x"00000000", 119 => x"00000000", 120 => x"72098105", 121 => x"72050970", 122 => x"81050906", 123 => x"0a098106", 124 => x"53510400", 125 => x"00000000", 126 => x"00000000", 127 => x"00000000", 128 => x"71098105", 129 => x"52040000", 130 => x"00000000", 131 => x"00000000", 132 => x"00000000", 133 => x"00000000", 134 => x"00000000", 135 => x"00000000", 136 => x"72720981", 137 => x"05055351", 138 => x"04000000", 139 => x"00000000", 140 => x"00000000", 141 => x"00000000", 142 => x"00000000", 143 => x"00000000", 144 => x"72097206", 145 => x"73730906", 146 => x"07535104", 147 => x"00000000", 148 => x"00000000", 149 => x"00000000", 150 => x"00000000", 151 => x"00000000", 152 => x"71fc0608", 153 => x"72830609", 154 => x"81058305", 155 => x"1010102a", 156 => x"81ff0652", 157 => x"04000000", 158 => x"00000000", 159 => x"00000000", 160 => x"71fc0608", 161 => x"0b0b80d0", 162 => x"ec738306", 163 => x"10100508", 164 => x"060b0b0b", 165 => x"88aa0400", 166 => x"00000000", 167 => x"00000000", 168 => x"0b0b0b88", 169 => x"f8040000", 170 => x"00000000", 171 => x"00000000", 172 => x"00000000", 173 => x"00000000", 174 => x"00000000", 175 => x"00000000", 176 => x"0b0b0b88", 177 => x"e0040000", 178 => x"00000000", 179 => x"00000000", 180 => x"00000000", 181 => x"00000000", 182 => x"00000000", 183 => x"00000000", 184 => x"72097081", 185 => x"0509060a", 186 => x"8106ff05", 187 => x"70547106", 188 => x"73097274", 189 => x"05ff0506", 190 => x"07515151", 191 => x"04000000", 192 => x"72097081", 193 => x"0509060a", 194 => x"098106ff", 195 => x"05705471", 196 => x"06730972", 197 => x"7405ff05", 198 => x"06075151", 199 => x"51040000", 200 => x"05ff0504", 201 => x"00000000", 202 => x"00000000", 203 => x"00000000", 204 => x"00000000", 205 => x"00000000", 206 => x"00000000", 207 => x"00000000", 208 => x"810b0b0b", 209 => x"80d1b40c", 210 => x"51040000", 211 => x"00000000", 212 => x"00000000", 213 => x"00000000", 214 => x"00000000", 215 => x"00000000", 216 => x"71810552", 217 => x"04000000", 218 => x"00000000", 219 => x"00000000", 220 => x"00000000", 221 => x"00000000", 222 => x"00000000", 223 => x"00000000", 224 => x"00000000", 225 => x"00000000", 226 => x"00000000", 227 => x"00000000", 228 => x"00000000", 229 => x"00000000", 230 => x"00000000", 231 => x"00000000", 232 => x"02840572", 233 => x"10100552", 234 => x"04000000", 235 => x"00000000", 236 => x"00000000", 237 => x"00000000", 238 => x"00000000", 239 => x"00000000", 240 => x"00000000", 241 => x"00000000", 242 => x"00000000", 243 => x"00000000", 244 => x"00000000", 245 => x"00000000", 246 => x"00000000", 247 => x"00000000", 248 => x"717105ff", 249 => x"05715351", 250 => x"020d0400", 251 => x"00000000", 252 => x"00000000", 253 => x"00000000", 254 => x"00000000", 255 => x"00000000", 256 => x"83853f80", 257 => x"c8b93f04", 258 => x"10101010", 259 => x"10101010", 260 => x"10101010", 261 => x"10101010", 262 => x"10101010", 263 => x"10101010", 264 => x"10101010", 265 => x"10101053", 266 => x"51047381", 267 => x"ff067383", 268 => x"06098105", 269 => x"83051010", 270 => x"102b0772", 271 => x"fc060c51", 272 => x"51043c04", 273 => x"72728072", 274 => x"8106ff05", 275 => x"09720605", 276 => x"71105272", 277 => x"0a100a53", 278 => x"72ed3851", 279 => x"51535104", 280 => x"b008b408", 281 => x"b8087575", 282 => x"90db2d50", 283 => x"50b00856", 284 => x"b80cb40c", 285 => x"b00c5104", 286 => x"b008b408", 287 => x"b8087575", 288 => x"8fa92d50", 289 => x"50b00856", 290 => x"b80cb40c", 291 => x"b00c5104", 292 => x"b008b408", 293 => x"b8088bb6", 294 => x"2db80cb4", 295 => x"0cb00c04", 296 => x"fe3d0d0b", 297 => x"0b80e1a4", 298 => x"08538413", 299 => x"0870882a", 300 => x"70810651", 301 => x"52527080", 302 => x"2ef03871", 303 => x"81ff06b0", 304 => x"0c843d0d", 305 => x"04ff3d0d", 306 => x"0b0b80e1", 307 => x"a4085271", 308 => x"0870882a", 309 => x"81327081", 310 => x"06515151", 311 => x"70f13873", 312 => x"720c833d", 313 => x"0d0480d1", 314 => x"b408802e", 315 => x"a43880d1", 316 => x"b808822e", 317 => x"bd388380", 318 => x"800b0b0b", 319 => x"80e1a40c", 320 => x"82a0800b", 321 => x"80e1a80c", 322 => x"8290800b", 323 => x"80e1ac0c", 324 => x"04f88080", 325 => x"80a40b0b", 326 => x"0b80e1a4", 327 => x"0cf88080", 328 => x"82800b80", 329 => x"e1a80cf8", 330 => x"80808480", 331 => x"0b80e1ac", 332 => x"0c0480c0", 333 => x"a8808c0b", 334 => x"0b0b80e1", 335 => x"a40c80c0", 336 => x"a880940b", 337 => x"80e1a80c", 338 => x"80d0fc0b", 339 => x"80e1ac0c", 340 => x"04ff3d0d", 341 => x"80e1b033", 342 => x"5170a738", 343 => x"80d1c008", 344 => x"70085252", 345 => x"70802e94", 346 => x"38841280", 347 => x"d1c00c70", 348 => x"2d80d1c0", 349 => x"08700852", 350 => x"5270ee38", 351 => x"810b80e1", 352 => x"b034833d", 353 => x"0d040480", 354 => x"3d0d0b0b", 355 => x"80e1a008", 356 => x"802e8e38", 357 => x"0b0b0b0b", 358 => x"800b802e", 359 => x"09810685", 360 => x"38823d0d", 361 => x"040b0b80", 362 => x"e1a0510b", 363 => x"0b0bf4d0", 364 => x"3f823d0d", 365 => x"0404803d", 366 => x"0d80e1bc", 367 => x"08811180", 368 => x"e1bc0c51", 369 => x"823d0d04", 370 => x"f73d0d7b", 371 => x"54870b89", 372 => x"3d80d1c4", 373 => x"08585855", 374 => x"7417748f", 375 => x"06175353", 376 => x"71337334", 377 => x"73842aff", 378 => x"16565474", 379 => x"8025e938", 380 => x"800b8b3d", 381 => x"34765189", 382 => x"853f8b3d", 383 => x"0d04e13d", 384 => x"0d80e1bc", 385 => x"089f3d9d", 386 => x"3d9b3d99", 387 => x"3d973d95", 388 => x"3d8c8080", 389 => x"088c8084", 390 => x"088e8080", 391 => x"0880d194", 392 => x"5b415f57", 393 => x"5f5f5f5f", 394 => x"5f5f5288", 395 => x"d13f7154", 396 => x"870b80d1", 397 => x"c4085755", 398 => x"741e748f", 399 => x"06175353", 400 => x"71337334", 401 => x"73842aff", 402 => x"16565474", 403 => x"8025e938", 404 => x"800ba13d", 405 => x"347d5188", 406 => x"a53f80d1", 407 => x"9851889e", 408 => x"3f765487", 409 => x"0b80d1c4", 410 => x"08575574", 411 => x"1d748f06", 412 => x"17545772", 413 => x"33773473", 414 => x"842aff16", 415 => x"56547480", 416 => x"25e93880", 417 => x"0b9e3d34", 418 => x"7c5187f2", 419 => x"3f80d19c", 420 => x"5187eb3f", 421 => x"7754870b", 422 => x"80d1c408", 423 => x"5755741c", 424 => x"748f0617", 425 => x"53587133", 426 => x"78347384", 427 => x"2aff1656", 428 => x"54748025", 429 => x"e938800b", 430 => x"9b3d347b", 431 => x"5187bf3f", 432 => x"f8bb9586", 433 => x"a10b8c80", 434 => x"800c8191", 435 => x"d1acf80b", 436 => x"8c80840c", 437 => x"f9d5f3bd", 438 => x"f00b8e80", 439 => x"800c8c80", 440 => x"80088c80", 441 => x"84088e80", 442 => x"800880d1", 443 => x"94545a58", 444 => x"55878b3f", 445 => x"7454870b", 446 => x"80d1c408", 447 => x"5755741b", 448 => x"748f0617", 449 => x"53537133", 450 => x"73347384", 451 => x"2aff1656", 452 => x"54748025", 453 => x"e938800b", 454 => x"983d347a", 455 => x"5186df3f", 456 => x"80d19851", 457 => x"86d83f76", 458 => x"54870b80", 459 => x"d1c40857", 460 => x"55741a74", 461 => x"8f061754", 462 => x"57723377", 463 => x"3473842a", 464 => x"ff165654", 465 => x"748025e9", 466 => x"38800b95", 467 => x"3d347951", 468 => x"86ac3f80", 469 => x"d19c5186", 470 => x"a53f7754", 471 => x"870b80d1", 472 => x"c4085755", 473 => x"7419748f", 474 => x"06175358", 475 => x"71337834", 476 => x"73842aff", 477 => x"16565474", 478 => x"8025e938", 479 => x"800b923d", 480 => x"34785185", 481 => x"f93f8c80", 482 => x"80088c80", 483 => x"84088e80", 484 => x"800880d1", 485 => x"94545a58", 486 => x"5285e33f", 487 => x"7154870b", 488 => x"80d1c408", 489 => x"5755fd90", 490 => x"39bc0802", 491 => x"bc0cf93d", 492 => x"0d800bbc", 493 => x"08fc050c", 494 => x"bc088805", 495 => x"088025ab", 496 => x"38bc0888", 497 => x"050830bc", 498 => x"0888050c", 499 => x"800bbc08", 500 => x"f4050cbc", 501 => x"08fc0508", 502 => x"8838810b", 503 => x"bc08f405", 504 => x"0cbc08f4", 505 => x"0508bc08", 506 => x"fc050cbc", 507 => x"088c0508", 508 => x"8025ab38", 509 => x"bc088c05", 510 => x"0830bc08", 511 => x"8c050c80", 512 => x"0bbc08f0", 513 => x"050cbc08", 514 => x"fc050888", 515 => x"38810bbc", 516 => x"08f0050c", 517 => x"bc08f005", 518 => x"08bc08fc", 519 => x"050c8053", 520 => x"bc088c05", 521 => x"0852bc08", 522 => x"88050851", 523 => x"81a73fb0", 524 => x"0870bc08", 525 => x"f8050c54", 526 => x"bc08fc05", 527 => x"08802e8c", 528 => x"38bc08f8", 529 => x"050830bc", 530 => x"08f8050c", 531 => x"bc08f805", 532 => x"0870b00c", 533 => x"54893d0d", 534 => x"bc0c04bc", 535 => x"0802bc0c", 536 => x"fb3d0d80", 537 => x"0bbc08fc", 538 => x"050cbc08", 539 => x"88050880", 540 => x"259338bc", 541 => x"08880508", 542 => x"30bc0888", 543 => x"050c810b", 544 => x"bc08fc05", 545 => x"0cbc088c", 546 => x"05088025", 547 => x"8c38bc08", 548 => x"8c050830", 549 => x"bc088c05", 550 => x"0c8153bc", 551 => x"088c0508", 552 => x"52bc0888", 553 => x"050851ad", 554 => x"3fb00870", 555 => x"bc08f805", 556 => x"0c54bc08", 557 => x"fc050880", 558 => x"2e8c38bc", 559 => x"08f80508", 560 => x"30bc08f8", 561 => x"050cbc08", 562 => x"f8050870", 563 => x"b00c5487", 564 => x"3d0dbc0c", 565 => x"04bc0802", 566 => x"bc0cfd3d", 567 => x"0d810bbc", 568 => x"08fc050c", 569 => x"800bbc08", 570 => x"f8050cbc", 571 => x"088c0508", 572 => x"bc088805", 573 => x"0827ac38", 574 => x"bc08fc05", 575 => x"08802ea3", 576 => x"38800bbc", 577 => x"088c0508", 578 => x"249938bc", 579 => x"088c0508", 580 => x"10bc088c", 581 => x"050cbc08", 582 => x"fc050810", 583 => x"bc08fc05", 584 => x"0cc939bc", 585 => x"08fc0508", 586 => x"802e80c9", 587 => x"38bc088c", 588 => x"0508bc08", 589 => x"88050826", 590 => x"a138bc08", 591 => x"880508bc", 592 => x"088c0508", 593 => x"31bc0888", 594 => x"050cbc08", 595 => x"f80508bc", 596 => x"08fc0508", 597 => x"07bc08f8", 598 => x"050cbc08", 599 => x"fc050881", 600 => x"2abc08fc", 601 => x"050cbc08", 602 => x"8c050881", 603 => x"2abc088c", 604 => x"050cffaf", 605 => x"39bc0890", 606 => x"0508802e", 607 => x"8f38bc08", 608 => x"88050870", 609 => x"bc08f405", 610 => x"0c518d39", 611 => x"bc08f805", 612 => x"0870bc08", 613 => x"f4050c51", 614 => x"bc08f405", 615 => x"08b00c85", 616 => x"3d0dbc0c", 617 => x"04fc3d0d", 618 => x"7670797b", 619 => x"55555555", 620 => x"8f72278c", 621 => x"38727507", 622 => x"83065170", 623 => x"802ea738", 624 => x"ff125271", 625 => x"ff2e9838", 626 => x"72708105", 627 => x"54337470", 628 => x"81055634", 629 => x"ff125271", 630 => x"ff2e0981", 631 => x"06ea3874", 632 => x"b00c863d", 633 => x"0d047451", 634 => x"72708405", 635 => x"54087170", 636 => x"8405530c", 637 => x"72708405", 638 => x"54087170", 639 => x"8405530c", 640 => x"72708405", 641 => x"54087170", 642 => x"8405530c", 643 => x"72708405", 644 => x"54087170", 645 => x"8405530c", 646 => x"f0125271", 647 => x"8f26c938", 648 => x"83722795", 649 => x"38727084", 650 => x"05540871", 651 => x"70840553", 652 => x"0cfc1252", 653 => x"718326ed", 654 => x"387054ff", 655 => x"8339f73d", 656 => x"0d7c7052", 657 => x"5380c83f", 658 => x"7254b008", 659 => x"5580d1a0", 660 => x"568157b0", 661 => x"0881055a", 662 => x"8b3de411", 663 => x"59538259", 664 => x"f413527b", 665 => x"88110852", 666 => x"5381833f", 667 => x"b0083070", 668 => x"b008079f", 669 => x"2c8a07b0", 670 => x"0c538b3d", 671 => x"0d04ff3d", 672 => x"0d735280", 673 => x"d1c80851", 674 => x"ffb43f83", 675 => x"3d0d04fd", 676 => x"3d0d7570", 677 => x"71830653", 678 => x"555270b8", 679 => x"38717008", 680 => x"7009f7fb", 681 => x"fdff1206", 682 => x"70f88482", 683 => x"81800651", 684 => x"51525370", 685 => x"9d388413", 686 => x"70087009", 687 => x"f7fbfdff", 688 => x"120670f8", 689 => x"84828180", 690 => x"06515152", 691 => x"5370802e", 692 => x"e5387252", 693 => x"71335170", 694 => x"802e8a38", 695 => x"81127033", 696 => x"525270f8", 697 => x"38717431", 698 => x"b00c853d", 699 => x"0d04f23d", 700 => x"0d606288", 701 => x"11087057", 702 => x"575f5a74", 703 => x"802e818f", 704 => x"388c1a22", 705 => x"70832a81", 706 => x"32708106", 707 => x"51555873", 708 => x"8638901a", 709 => x"08913879", 710 => x"5190a13f", 711 => x"ff54b008", 712 => x"80ed388c", 713 => x"1a22587d", 714 => x"08578078", 715 => x"83ffff06", 716 => x"70812a70", 717 => x"81065156", 718 => x"57557375", 719 => x"2e80d738", 720 => x"74903876", 721 => x"08841808", 722 => x"88195956", 723 => x"5974802e", 724 => x"f2387454", 725 => x"88807527", 726 => x"84388880", 727 => x"54735378", 728 => x"529c1a08", 729 => x"51a41a08", 730 => x"54732d80", 731 => x"0bb00825", 732 => x"82e638b0", 733 => x"081975b0", 734 => x"08317f88", 735 => x"0508b008", 736 => x"31706188", 737 => x"050c5656", 738 => x"5973ffb4", 739 => x"38805473", 740 => x"b00c903d", 741 => x"0d047581", 742 => x"32708106", 743 => x"76415154", 744 => x"73802e81", 745 => x"c1387490", 746 => x"38760884", 747 => x"18088819", 748 => x"59565974", 749 => x"802ef238", 750 => x"881a0878", 751 => x"83ffff06", 752 => x"70892a70", 753 => x"81065156", 754 => x"59567380", 755 => x"2e82fa38", 756 => x"7575278d", 757 => x"3877872a", 758 => x"70810651", 759 => x"547382b5", 760 => x"38747627", 761 => x"83387456", 762 => x"75537852", 763 => x"79085185", 764 => x"823f881a", 765 => x"08763188", 766 => x"1b0c7908", 767 => x"167a0c74", 768 => x"56751975", 769 => x"77317f88", 770 => x"05087831", 771 => x"70618805", 772 => x"0c565659", 773 => x"73802efe", 774 => x"f4388c1a", 775 => x"2258ff86", 776 => x"39777854", 777 => x"79537b52", 778 => x"5684c83f", 779 => x"881a0878", 780 => x"31881b0c", 781 => x"7908187a", 782 => x"0c7c7631", 783 => x"5d7c8e38", 784 => x"79518fdb", 785 => x"3fb00881", 786 => x"8f38b008", 787 => x"5f751975", 788 => x"77317f88", 789 => x"05087831", 790 => x"70618805", 791 => x"0c565659", 792 => x"73802efe", 793 => x"a8387481", 794 => x"83387608", 795 => x"84180888", 796 => x"19595659", 797 => x"74802ef2", 798 => x"3874538a", 799 => x"52785182", 800 => x"d33fb008", 801 => x"79318105", 802 => x"5db00884", 803 => x"3881155d", 804 => x"815f7c58", 805 => x"747d2783", 806 => x"38745894", 807 => x"1a08881b", 808 => x"0811575c", 809 => x"807a085c", 810 => x"54901a08", 811 => x"7b278338", 812 => x"81547578", 813 => x"25843873", 814 => x"ba387b78", 815 => x"24fee238", 816 => x"7b537852", 817 => x"9c1a0851", 818 => x"a41a0854", 819 => x"732db008", 820 => x"56b00880", 821 => x"24fee238", 822 => x"8c1a2280", 823 => x"c0075473", 824 => x"8c1b23ff", 825 => x"5473b00c", 826 => x"903d0d04", 827 => x"7effa338", 828 => x"ff873975", 829 => x"5378527a", 830 => x"5182f83f", 831 => x"7908167a", 832 => x"0c79518e", 833 => x"9a3fb008", 834 => x"cf387c76", 835 => x"315d7cfe", 836 => x"bc38feac", 837 => x"39901a08", 838 => x"7a087131", 839 => x"76117056", 840 => x"5a575280", 841 => x"d1c80851", 842 => x"848c3fb0", 843 => x"08802eff", 844 => x"a738b008", 845 => x"901b0cb0", 846 => x"08167a0c", 847 => x"77941b0c", 848 => x"74881b0c", 849 => x"7456fd99", 850 => x"39790858", 851 => x"901a0878", 852 => x"27833881", 853 => x"54757527", 854 => x"843873b3", 855 => x"38941a08", 856 => x"56757526", 857 => x"80d33875", 858 => x"5378529c", 859 => x"1a0851a4", 860 => x"1a085473", 861 => x"2db00856", 862 => x"b0088024", 863 => x"fd83388c", 864 => x"1a2280c0", 865 => x"0754738c", 866 => x"1b23ff54", 867 => x"fed73975", 868 => x"53785277", 869 => x"5181dc3f", 870 => x"7908167a", 871 => x"0c79518c", 872 => x"fe3fb008", 873 => x"802efcd9", 874 => x"388c1a22", 875 => x"80c00754", 876 => x"738c1b23", 877 => x"ff54fead", 878 => x"39747554", 879 => x"79537852", 880 => x"5681b03f", 881 => x"881a0875", 882 => x"31881b0c", 883 => x"7908157a", 884 => x"0cfcae39", 885 => x"fa3d0d7a", 886 => x"79028805", 887 => x"a7053356", 888 => x"52538373", 889 => x"278a3870", 890 => x"83065271", 891 => x"802ea838", 892 => x"ff135372", 893 => x"ff2e9738", 894 => x"70335273", 895 => x"722e9138", 896 => x"8111ff14", 897 => x"545172ff", 898 => x"2e098106", 899 => x"eb388051", 900 => x"70b00c88", 901 => x"3d0d0470", 902 => x"72575583", 903 => x"51758280", 904 => x"2914ff12", 905 => x"52567080", 906 => x"25f33883", 907 => x"7327bf38", 908 => x"74087632", 909 => x"7009f7fb", 910 => x"fdff1206", 911 => x"70f88482", 912 => x"81800651", 913 => x"51517080", 914 => x"2e993874", 915 => x"51805270", 916 => x"33577377", 917 => x"2effb938", 918 => x"81118113", 919 => x"53518372", 920 => x"27ed38fc", 921 => x"13841656", 922 => x"53728326", 923 => x"c3387451", 924 => x"fefe39fa", 925 => x"3d0d787a", 926 => x"7c727272", 927 => x"57575759", 928 => x"56567476", 929 => x"27b23876", 930 => x"15517571", 931 => x"27aa3870", 932 => x"7717ff14", 933 => x"54555371", 934 => x"ff2e9638", 935 => x"ff14ff14", 936 => x"54547233", 937 => x"7434ff12", 938 => x"5271ff2e", 939 => x"098106ec", 940 => x"3875b00c", 941 => x"883d0d04", 942 => x"768f2697", 943 => x"38ff1252", 944 => x"71ff2eed", 945 => x"38727081", 946 => x"05543374", 947 => x"70810556", 948 => x"34eb3974", 949 => x"76078306", 950 => x"5170e238", 951 => x"75755451", 952 => x"72708405", 953 => x"54087170", 954 => x"8405530c", 955 => x"72708405", 956 => x"54087170", 957 => x"8405530c", 958 => x"72708405", 959 => x"54087170", 960 => x"8405530c", 961 => x"72708405", 962 => x"54087170", 963 => x"8405530c", 964 => x"f0125271", 965 => x"8f26c938", 966 => x"83722795", 967 => x"38727084", 968 => x"05540871", 969 => x"70840553", 970 => x"0cfc1252", 971 => x"718326ed", 972 => x"387054ff", 973 => x"8839ef3d", 974 => x"0d636567", 975 => x"405d427b", 976 => x"802e84fa", 977 => x"386151a5", 978 => x"b43ff81c", 979 => x"70841208", 980 => x"70fc0670", 981 => x"628b0570", 982 => x"f8064159", 983 => x"455b5c41", 984 => x"57967427", 985 => x"82c33880", 986 => x"7b247e7c", 987 => x"26075980", 988 => x"5478742e", 989 => x"09810682", 990 => x"a938777b", 991 => x"2581fc38", 992 => x"771780d9", 993 => x"840b8805", 994 => x"085e567c", 995 => x"762e84bd", 996 => x"38841608", 997 => x"70fe0617", 998 => x"84110881", 999 => x"06515555", 1000 => x"73828b38", 1001 => x"74fc0659", 1002 => x"7c762e84", 1003 => x"dd387719", 1004 => x"5f7e7b25", 1005 => x"81fd3879", 1006 => x"81065473", 1007 => x"82bf3876", 1008 => x"77083184", 1009 => x"1108fc06", 1010 => x"565a7580", 1011 => x"2e91387c", 1012 => x"762e84ea", 1013 => x"38741918", 1014 => x"59787b25", 1015 => x"84893879", 1016 => x"802e8299", 1017 => x"38771556", 1018 => x"7a762482", 1019 => x"90388c1a", 1020 => x"08881b08", 1021 => x"718c120c", 1022 => x"88120c55", 1023 => x"79765957", 1024 => x"881761fc", 1025 => x"05575975", 1026 => x"a42685ef", 1027 => x"387b7955", 1028 => x"55937627", 1029 => x"80c9387b", 1030 => x"7084055d", 1031 => x"087c5679", 1032 => x"0c747084", 1033 => x"0556088c", 1034 => x"180c9017", 1035 => x"549b7627", 1036 => x"ae387470", 1037 => x"84055608", 1038 => x"740c7470", 1039 => x"84055608", 1040 => x"94180c98", 1041 => x"1754a376", 1042 => x"27953874", 1043 => x"70840556", 1044 => x"08740c74", 1045 => x"70840556", 1046 => x"089c180c", 1047 => x"a0175474", 1048 => x"70840556", 1049 => x"08747084", 1050 => x"05560c74", 1051 => x"70840556", 1052 => x"08747084", 1053 => x"05560c74", 1054 => x"08740c77", 1055 => x"7b315675", 1056 => x"8f2680c9", 1057 => x"38841708", 1058 => x"81067807", 1059 => x"84180c77", 1060 => x"17841108", 1061 => x"81078412", 1062 => x"0c546151", 1063 => x"a2e03f88", 1064 => x"175473b0", 1065 => x"0c933d0d", 1066 => x"04905bfd", 1067 => x"ba397856", 1068 => x"fe85398c", 1069 => x"16088817", 1070 => x"08718c12", 1071 => x"0c88120c", 1072 => x"557e707c", 1073 => x"3157588f", 1074 => x"7627ffb9", 1075 => x"387a1784", 1076 => x"18088106", 1077 => x"7c078419", 1078 => x"0c768107", 1079 => x"84120c76", 1080 => x"11841108", 1081 => x"81078412", 1082 => x"0c558805", 1083 => x"5261518c", 1084 => x"f63f6151", 1085 => x"a2883f88", 1086 => x"1754ffa6", 1087 => x"397d5261", 1088 => x"5194f53f", 1089 => x"b00859b0", 1090 => x"08802e81", 1091 => x"a338b008", 1092 => x"f8056084", 1093 => x"0508fe06", 1094 => x"61055557", 1095 => x"76742e83", 1096 => x"e638fc18", 1097 => x"5675a426", 1098 => x"81aa387b", 1099 => x"b0085555", 1100 => x"93762780", 1101 => x"d8387470", 1102 => x"84055608", 1103 => x"b0087084", 1104 => x"05b00c0c", 1105 => x"b0087570", 1106 => x"84055708", 1107 => x"71708405", 1108 => x"530c549b", 1109 => x"7627b638", 1110 => x"74708405", 1111 => x"56087470", 1112 => x"8405560c", 1113 => x"74708405", 1114 => x"56087470", 1115 => x"8405560c", 1116 => x"a3762799", 1117 => x"38747084", 1118 => x"05560874", 1119 => x"70840556", 1120 => x"0c747084", 1121 => x"05560874", 1122 => x"70840556", 1123 => x"0c747084", 1124 => x"05560874", 1125 => x"70840556", 1126 => x"0c747084", 1127 => x"05560874", 1128 => x"70840556", 1129 => x"0c740874", 1130 => x"0c7b5261", 1131 => x"518bb83f", 1132 => x"6151a0ca", 1133 => x"3f785473", 1134 => x"b00c933d", 1135 => x"0d047d52", 1136 => x"615193b4", 1137 => x"3fb008b0", 1138 => x"0c933d0d", 1139 => x"04841608", 1140 => x"55fbd139", 1141 => x"75537b52", 1142 => x"b00851ef", 1143 => x"c83f7b52", 1144 => x"61518b83", 1145 => x"3fca398c", 1146 => x"16088817", 1147 => x"08718c12", 1148 => x"0c88120c", 1149 => x"558c1a08", 1150 => x"881b0871", 1151 => x"8c120c88", 1152 => x"120c5579", 1153 => x"795957fb", 1154 => x"f7397719", 1155 => x"901c5555", 1156 => x"737524fb", 1157 => x"a2387a17", 1158 => x"7080d984", 1159 => x"0b88050c", 1160 => x"757c3181", 1161 => x"0784120c", 1162 => x"5d841708", 1163 => x"81067b07", 1164 => x"84180c61", 1165 => x"519fc73f", 1166 => x"881754fc", 1167 => x"e5397419", 1168 => x"18901c55", 1169 => x"5d737d24", 1170 => x"fb95388c", 1171 => x"1a08881b", 1172 => x"08718c12", 1173 => x"0c88120c", 1174 => x"55881a61", 1175 => x"fc055759", 1176 => x"75a42681", 1177 => x"ae387b79", 1178 => x"55559376", 1179 => x"2780c938", 1180 => x"7b708405", 1181 => x"5d087c56", 1182 => x"790c7470", 1183 => x"84055608", 1184 => x"8c1b0c90", 1185 => x"1a549b76", 1186 => x"27ae3874", 1187 => x"70840556", 1188 => x"08740c74", 1189 => x"70840556", 1190 => x"08941b0c", 1191 => x"981a54a3", 1192 => x"76279538", 1193 => x"74708405", 1194 => x"5608740c", 1195 => x"74708405", 1196 => x"56089c1b", 1197 => x"0ca01a54", 1198 => x"74708405", 1199 => x"56087470", 1200 => x"8405560c", 1201 => x"74708405", 1202 => x"56087470", 1203 => x"8405560c", 1204 => x"7408740c", 1205 => x"7a1a7080", 1206 => x"d9840b88", 1207 => x"050c7d7c", 1208 => x"31810784", 1209 => x"120c5484", 1210 => x"1a088106", 1211 => x"7b07841b", 1212 => x"0c61519e", 1213 => x"893f7854", 1214 => x"fdbd3975", 1215 => x"537b5278", 1216 => x"51eda23f", 1217 => x"faf53984", 1218 => x"1708fc06", 1219 => x"18605858", 1220 => x"fae93975", 1221 => x"537b5278", 1222 => x"51ed8a3f", 1223 => x"7a1a7080", 1224 => x"d9840b88", 1225 => x"050c7d7c", 1226 => x"31810784", 1227 => x"120c5484", 1228 => x"1a088106", 1229 => x"7b07841b", 1230 => x"0cffb639", 1231 => x"fa3d0d78", 1232 => x"80d1c808", 1233 => x"5455b813", 1234 => x"08802e81", 1235 => x"b5388c15", 1236 => x"227083ff", 1237 => x"ff067083", 1238 => x"2a813270", 1239 => x"81065155", 1240 => x"55567280", 1241 => x"2e80dc38", 1242 => x"73842a81", 1243 => x"32810657", 1244 => x"ff537680", 1245 => x"f6387382", 1246 => x"2a708106", 1247 => x"51537280", 1248 => x"2eb938b0", 1249 => x"15085473", 1250 => x"802e9c38", 1251 => x"80c01553", 1252 => x"73732e8f", 1253 => x"38735280", 1254 => x"d1c80851", 1255 => x"87c93f8c", 1256 => x"15225676", 1257 => x"b0160c75", 1258 => x"db065372", 1259 => x"8c162380", 1260 => x"0b84160c", 1261 => x"90150875", 1262 => x"0c725675", 1263 => x"88075372", 1264 => x"8c162390", 1265 => x"1508802e", 1266 => x"80c0388c", 1267 => x"15227081", 1268 => x"06555373", 1269 => x"9d387281", 1270 => x"2a708106", 1271 => x"51537285", 1272 => x"38941508", 1273 => x"54738816", 1274 => x"0c805372", 1275 => x"b00c883d", 1276 => x"0d04800b", 1277 => x"88160c94", 1278 => x"15083098", 1279 => x"160c8053", 1280 => x"ea397251", 1281 => x"82fb3ffe", 1282 => x"c5397451", 1283 => x"8ce83f8c", 1284 => x"15227081", 1285 => x"06555373", 1286 => x"802effba", 1287 => x"38d439f8", 1288 => x"3d0d7a58", 1289 => x"77802e81", 1290 => x"993880d1", 1291 => x"c80854b8", 1292 => x"1408802e", 1293 => x"80ed388c", 1294 => x"18227090", 1295 => x"2b70902c", 1296 => x"70832a81", 1297 => x"3281065c", 1298 => x"51575478", 1299 => x"80cd3890", 1300 => x"18085776", 1301 => x"802e80c3", 1302 => x"38770877", 1303 => x"3177790c", 1304 => x"7683067a", 1305 => x"58555573", 1306 => x"85389418", 1307 => x"08567588", 1308 => x"190c8075", 1309 => x"25a53874", 1310 => x"5376529c", 1311 => x"180851a4", 1312 => x"18085473", 1313 => x"2d800bb0", 1314 => x"082580c9", 1315 => x"38b00817", 1316 => x"75b00831", 1317 => x"56577480", 1318 => x"24dd3880", 1319 => x"0bb00c8a", 1320 => x"3d0d0473", 1321 => x"5181da3f", 1322 => x"8c182270", 1323 => x"902b7090", 1324 => x"2c70832a", 1325 => x"81328106", 1326 => x"5c515754", 1327 => x"78dd38ff", 1328 => x"8e39a89f", 1329 => x"5280d1c8", 1330 => x"085189f1", 1331 => x"3fb008b0", 1332 => x"0c8a3d0d", 1333 => x"048c1822", 1334 => x"80c00754", 1335 => x"738c1923", 1336 => x"ff0bb00c", 1337 => x"8a3d0d04", 1338 => x"803d0d72", 1339 => x"5180710c", 1340 => x"800b8412", 1341 => x"0c800b88", 1342 => x"120c028e", 1343 => x"05228c12", 1344 => x"23029205", 1345 => x"228e1223", 1346 => x"800b9012", 1347 => x"0c800b94", 1348 => x"120c800b", 1349 => x"98120c70", 1350 => x"9c120c80", 1351 => x"c4b30ba0", 1352 => x"120c80c4", 1353 => x"ff0ba412", 1354 => x"0c80c5fb", 1355 => x"0ba8120c", 1356 => x"80c6cc0b", 1357 => x"ac120c82", 1358 => x"3d0d04fa", 1359 => x"3d0d7970", 1360 => x"80dc298c", 1361 => x"11547a53", 1362 => x"56578cac", 1363 => x"3fb008b0", 1364 => x"085556b0", 1365 => x"08802ea2", 1366 => x"38b0088c", 1367 => x"0554800b", 1368 => x"b0080c76", 1369 => x"b0088405", 1370 => x"0c73b008", 1371 => x"88050c74", 1372 => x"53805273", 1373 => x"5197f73f", 1374 => x"755473b0", 1375 => x"0c883d0d", 1376 => x"04fc3d0d", 1377 => x"76ad940b", 1378 => x"bc120c55", 1379 => x"810bb816", 1380 => x"0c800b84", 1381 => x"dc160c83", 1382 => x"0b84e016", 1383 => x"0c84e815", 1384 => x"84e4160c", 1385 => x"74548053", 1386 => x"84528415", 1387 => x"0851feb8", 1388 => x"3f745481", 1389 => x"53895288", 1390 => x"150851fe", 1391 => x"ab3f7454", 1392 => x"82538a52", 1393 => x"8c150851", 1394 => x"fe9e3f86", 1395 => x"3d0d04f9", 1396 => x"3d0d7980", 1397 => x"d1c80854", 1398 => x"57b81308", 1399 => x"802e80c8", 1400 => x"3884dc13", 1401 => x"56881608", 1402 => x"841708ff", 1403 => x"05555580", 1404 => x"74249f38", 1405 => x"8c152270", 1406 => x"902b7090", 1407 => x"2c515458", 1408 => x"72802e80", 1409 => x"ca3880dc", 1410 => x"15ff1555", 1411 => x"55738025", 1412 => x"e3387508", 1413 => x"5372802e", 1414 => x"9f387256", 1415 => x"88160884", 1416 => x"1708ff05", 1417 => x"5555c839", 1418 => x"7251fed5", 1419 => x"3f80d1c8", 1420 => x"0884dc05", 1421 => x"56ffae39", 1422 => x"84527651", 1423 => x"fdfd3fb0", 1424 => x"08760cb0", 1425 => x"08802e80", 1426 => x"c038b008", 1427 => x"56ce3981", 1428 => x"0b8c1623", 1429 => x"72750c72", 1430 => x"88160c72", 1431 => x"84160c72", 1432 => x"90160c72", 1433 => x"94160c72", 1434 => x"98160cff", 1435 => x"0b8e1623", 1436 => x"72b0160c", 1437 => x"72b4160c", 1438 => x"7280c416", 1439 => x"0c7280c8", 1440 => x"160c74b0", 1441 => x"0c893d0d", 1442 => x"048c770c", 1443 => x"800bb00c", 1444 => x"893d0d04", 1445 => x"ff3d0da8", 1446 => x"9f527351", 1447 => x"869f3f83", 1448 => x"3d0d0480", 1449 => x"3d0d80d1", 1450 => x"c80851e8", 1451 => x"3f823d0d", 1452 => x"04fb3d0d", 1453 => x"77705256", 1454 => x"96c33f80", 1455 => x"d9840b88", 1456 => x"05088411", 1457 => x"08fc0670", 1458 => x"7b319fef", 1459 => x"05e08006", 1460 => x"e0800556", 1461 => x"5653a080", 1462 => x"74249438", 1463 => x"80527551", 1464 => x"969d3f80", 1465 => x"d98c0815", 1466 => x"5372b008", 1467 => x"2e8f3875", 1468 => x"51968b3f", 1469 => x"805372b0", 1470 => x"0c873d0d", 1471 => x"04733052", 1472 => x"755195fb", 1473 => x"3fb008ff", 1474 => x"2ea83880", 1475 => x"d9840b88", 1476 => x"05087575", 1477 => x"31810784", 1478 => x"120c5380", 1479 => x"d8c80874", 1480 => x"3180d8c8", 1481 => x"0c755195", 1482 => x"d53f810b", 1483 => x"b00c873d", 1484 => x"0d048052", 1485 => x"755195c7", 1486 => x"3f80d984", 1487 => x"0b880508", 1488 => x"b0087131", 1489 => x"56538f75", 1490 => x"25ffa438", 1491 => x"b00880d8", 1492 => x"f8083180", 1493 => x"d8c80c74", 1494 => x"81078414", 1495 => x"0c755195", 1496 => x"9d3f8053", 1497 => x"ff9039f6", 1498 => x"3d0d7c7e", 1499 => x"545b7280", 1500 => x"2e828338", 1501 => x"7a519585", 1502 => x"3ff81384", 1503 => x"110870fe", 1504 => x"06701384", 1505 => x"1108fc06", 1506 => x"5d585954", 1507 => x"5880d98c", 1508 => x"08752e82", 1509 => x"de387884", 1510 => x"160c8073", 1511 => x"8106545a", 1512 => x"727a2e81", 1513 => x"d5387815", 1514 => x"84110881", 1515 => x"06515372", 1516 => x"a0387817", 1517 => x"577981e6", 1518 => x"38881508", 1519 => x"537280d9", 1520 => x"8c2e82f9", 1521 => x"388c1508", 1522 => x"708c150c", 1523 => x"7388120c", 1524 => x"56768107", 1525 => x"84190c76", 1526 => x"1877710c", 1527 => x"53798191", 1528 => x"3883ff77", 1529 => x"2781c838", 1530 => x"76892a77", 1531 => x"832a5653", 1532 => x"72802ebf", 1533 => x"3876862a", 1534 => x"b8055584", 1535 => x"7327b438", 1536 => x"80db1355", 1537 => x"947327ab", 1538 => x"38768c2a", 1539 => x"80ee0555", 1540 => x"80d47327", 1541 => x"9e38768f", 1542 => x"2a80f705", 1543 => x"5582d473", 1544 => x"27913876", 1545 => x"922a80fc", 1546 => x"05558ad4", 1547 => x"73278438", 1548 => x"80fe5574", 1549 => x"10101080", 1550 => x"d9840588", 1551 => x"11085556", 1552 => x"73762e82", 1553 => x"b3388414", 1554 => x"08fc0653", 1555 => x"7673278d", 1556 => x"38881408", 1557 => x"5473762e", 1558 => x"098106ea", 1559 => x"388c1408", 1560 => x"708c1a0c", 1561 => x"74881a0c", 1562 => x"7888120c", 1563 => x"56778c15", 1564 => x"0c7a5193", 1565 => x"893f8c3d", 1566 => x"0d047708", 1567 => x"78713159", 1568 => x"77058819", 1569 => x"08545772", 1570 => x"80d98c2e", 1571 => x"80e0388c", 1572 => x"1808708c", 1573 => x"150c7388", 1574 => x"120c56fe", 1575 => x"89398815", 1576 => x"088c1608", 1577 => x"708c130c", 1578 => x"5788170c", 1579 => x"fea33976", 1580 => x"832a7054", 1581 => x"55807524", 1582 => x"81983872", 1583 => x"822c8171", 1584 => x"2b80d988", 1585 => x"080780d9", 1586 => x"840b8405", 1587 => x"0c537410", 1588 => x"101080d9", 1589 => x"84058811", 1590 => x"08555675", 1591 => x"8c190c73", 1592 => x"88190c77", 1593 => x"88170c77", 1594 => x"8c150cff", 1595 => x"8439815a", 1596 => x"fdb43978", 1597 => x"17738106", 1598 => x"54577298", 1599 => x"38770878", 1600 => x"71315977", 1601 => x"058c1908", 1602 => x"881a0871", 1603 => x"8c120c88", 1604 => x"120c5757", 1605 => x"76810784", 1606 => x"190c7780", 1607 => x"d9840b88", 1608 => x"050c80d9", 1609 => x"80087726", 1610 => x"fec73880", 1611 => x"d8fc0852", 1612 => x"7a51fafd", 1613 => x"3f7a5191", 1614 => x"c53ffeba", 1615 => x"3981788c", 1616 => x"150c7888", 1617 => x"150c738c", 1618 => x"1a0c7388", 1619 => x"1a0c5afd", 1620 => x"80398315", 1621 => x"70822c81", 1622 => x"712b80d9", 1623 => x"88080780", 1624 => x"d9840b84", 1625 => x"050c5153", 1626 => x"74101010", 1627 => x"80d98405", 1628 => x"88110855", 1629 => x"56fee439", 1630 => x"74538075", 1631 => x"24a73872", 1632 => x"822c8171", 1633 => x"2b80d988", 1634 => x"080780d9", 1635 => x"840b8405", 1636 => x"0c53758c", 1637 => x"190c7388", 1638 => x"190c7788", 1639 => x"170c778c", 1640 => x"150cfdcd", 1641 => x"39831570", 1642 => x"822c8171", 1643 => x"2b80d988", 1644 => x"080780d9", 1645 => x"840b8405", 1646 => x"0c5153d6", 1647 => x"39f93d0d", 1648 => x"797b5853", 1649 => x"800b80d1", 1650 => x"c8085356", 1651 => x"72722e80", 1652 => x"c03884dc", 1653 => x"13557476", 1654 => x"2eb73888", 1655 => x"15088416", 1656 => x"08ff0554", 1657 => x"54807324", 1658 => x"9d388c14", 1659 => x"2270902b", 1660 => x"70902c51", 1661 => x"53587180", 1662 => x"d83880dc", 1663 => x"14ff1454", 1664 => x"54728025", 1665 => x"e5387408", 1666 => x"5574d038", 1667 => x"80d1c808", 1668 => x"5284dc12", 1669 => x"5574802e", 1670 => x"b1388815", 1671 => x"08841608", 1672 => x"ff055454", 1673 => x"8073249c", 1674 => x"388c1422", 1675 => x"70902b70", 1676 => x"902c5153", 1677 => x"5871ad38", 1678 => x"80dc14ff", 1679 => x"14545472", 1680 => x"8025e638", 1681 => x"74085574", 1682 => x"d13875b0", 1683 => x"0c893d0d", 1684 => x"04735176", 1685 => x"2d75b008", 1686 => x"0780dc15", 1687 => x"ff155555", 1688 => x"56ff9e39", 1689 => x"7351762d", 1690 => x"75b00807", 1691 => x"80dc15ff", 1692 => x"15555556", 1693 => x"ca39ea3d", 1694 => x"0d688c11", 1695 => x"2270812a", 1696 => x"81065758", 1697 => x"567480e4", 1698 => x"388e1622", 1699 => x"70902b70", 1700 => x"902c5155", 1701 => x"58807424", 1702 => x"b138983d", 1703 => x"c4055373", 1704 => x"5280d1c8", 1705 => x"085192ac", 1706 => x"3f800bb0", 1707 => x"08249738", 1708 => x"7983e080", 1709 => x"06547380", 1710 => x"c0802e81", 1711 => x"8f387382", 1712 => x"80802e81", 1713 => x"91388c16", 1714 => x"22577690", 1715 => x"80075473", 1716 => x"8c172388", 1717 => x"805280d1", 1718 => x"c8085181", 1719 => x"9b3fb008", 1720 => x"9d388c16", 1721 => x"22820754", 1722 => x"738c1723", 1723 => x"80c31670", 1724 => x"770c9017", 1725 => x"0c810b94", 1726 => x"170c983d", 1727 => x"0d0480d1", 1728 => x"c808ad94", 1729 => x"0bbc120c", 1730 => x"548c1622", 1731 => x"81800754", 1732 => x"738c1723", 1733 => x"b008760c", 1734 => x"b0089017", 1735 => x"0c88800b", 1736 => x"94170c74", 1737 => x"802ed338", 1738 => x"8e162270", 1739 => x"902b7090", 1740 => x"2c535558", 1741 => x"98ae3fb0", 1742 => x"08802eff", 1743 => x"bd388c16", 1744 => x"22810754", 1745 => x"738c1723", 1746 => x"983d0d04", 1747 => x"810b8c17", 1748 => x"225855fe", 1749 => x"f539a816", 1750 => x"0880c5fb", 1751 => x"2e098106", 1752 => x"fee4388c", 1753 => x"16228880", 1754 => x"0754738c", 1755 => x"17238880", 1756 => x"0b80cc17", 1757 => x"0cfedc39", 1758 => x"f33d0d7f", 1759 => x"618b1170", 1760 => x"f8065c55", 1761 => x"555e7296", 1762 => x"26833890", 1763 => x"59807924", 1764 => x"747a2607", 1765 => x"53805472", 1766 => x"742e0981", 1767 => x"0680cb38", 1768 => x"7d518cd9", 1769 => x"3f7883f7", 1770 => x"2680c638", 1771 => x"78832a70", 1772 => x"10101080", 1773 => x"d984058c", 1774 => x"11085959", 1775 => x"5a76782e", 1776 => x"83b03884", 1777 => x"1708fc06", 1778 => x"568c1708", 1779 => x"88180871", 1780 => x"8c120c88", 1781 => x"120c5875", 1782 => x"17841108", 1783 => x"81078412", 1784 => x"0c537d51", 1785 => x"8c983f88", 1786 => x"175473b0", 1787 => x"0c8f3d0d", 1788 => x"0478892a", 1789 => x"79832a5b", 1790 => x"5372802e", 1791 => x"bf387886", 1792 => x"2ab8055a", 1793 => x"847327b4", 1794 => x"3880db13", 1795 => x"5a947327", 1796 => x"ab38788c", 1797 => x"2a80ee05", 1798 => x"5a80d473", 1799 => x"279e3878", 1800 => x"8f2a80f7", 1801 => x"055a82d4", 1802 => x"73279138", 1803 => x"78922a80", 1804 => x"fc055a8a", 1805 => x"d4732784", 1806 => x"3880fe5a", 1807 => x"79101010", 1808 => x"80d98405", 1809 => x"8c110858", 1810 => x"5576752e", 1811 => x"a3388417", 1812 => x"08fc0670", 1813 => x"7a315556", 1814 => x"738f2488", 1815 => x"d5387380", 1816 => x"25fee638", 1817 => x"8c170857", 1818 => x"76752e09", 1819 => x"8106df38", 1820 => x"811a5a80", 1821 => x"d9940857", 1822 => x"7680d98c", 1823 => x"2e82c038", 1824 => x"841708fc", 1825 => x"06707a31", 1826 => x"5556738f", 1827 => x"2481f938", 1828 => x"80d98c0b", 1829 => x"80d9980c", 1830 => x"80d98c0b", 1831 => x"80d9940c", 1832 => x"738025fe", 1833 => x"b23883ff", 1834 => x"762783df", 1835 => x"3875892a", 1836 => x"76832a55", 1837 => x"5372802e", 1838 => x"bf387586", 1839 => x"2ab80554", 1840 => x"847327b4", 1841 => x"3880db13", 1842 => x"54947327", 1843 => x"ab38758c", 1844 => x"2a80ee05", 1845 => x"5480d473", 1846 => x"279e3875", 1847 => x"8f2a80f7", 1848 => x"055482d4", 1849 => x"73279138", 1850 => x"75922a80", 1851 => x"fc05548a", 1852 => x"d4732784", 1853 => x"3880fe54", 1854 => x"73101010", 1855 => x"80d98405", 1856 => x"88110856", 1857 => x"5874782e", 1858 => x"86cf3884", 1859 => x"1508fc06", 1860 => x"53757327", 1861 => x"8d388815", 1862 => x"08557478", 1863 => x"2e098106", 1864 => x"ea388c15", 1865 => x"0880d984", 1866 => x"0b840508", 1867 => x"718c1a0c", 1868 => x"76881a0c", 1869 => x"7888130c", 1870 => x"788c180c", 1871 => x"5d587953", 1872 => x"807a2483", 1873 => x"e6387282", 1874 => x"2c81712b", 1875 => x"5c537a7c", 1876 => x"26819838", 1877 => x"7b7b0653", 1878 => x"7282f138", 1879 => x"79fc0684", 1880 => x"055a7a10", 1881 => x"707d0654", 1882 => x"5b7282e0", 1883 => x"38841a5a", 1884 => x"f1398817", 1885 => x"8c110858", 1886 => x"5876782e", 1887 => x"098106fc", 1888 => x"c238821a", 1889 => x"5afdec39", 1890 => x"78177981", 1891 => x"0784190c", 1892 => x"7080d998", 1893 => x"0c7080d9", 1894 => x"940c80d9", 1895 => x"8c0b8c12", 1896 => x"0c8c1108", 1897 => x"88120c74", 1898 => x"81078412", 1899 => x"0c741175", 1900 => x"710c5153", 1901 => x"7d5188c6", 1902 => x"3f881754", 1903 => x"fcac3980", 1904 => x"d9840b84", 1905 => x"05087a54", 1906 => x"5c798025", 1907 => x"fef83882", 1908 => x"da397a09", 1909 => x"7c067080", 1910 => x"d9840b84", 1911 => x"050c5c7a", 1912 => x"105b7a7c", 1913 => x"2685387a", 1914 => x"85b83880", 1915 => x"d9840b88", 1916 => x"05087084", 1917 => x"1208fc06", 1918 => x"707c317c", 1919 => x"72268f72", 1920 => x"25075757", 1921 => x"5c5d5572", 1922 => x"802e80db", 1923 => x"38797a16", 1924 => x"80d8fc08", 1925 => x"1b90115a", 1926 => x"55575b80", 1927 => x"d8f808ff", 1928 => x"2e8838a0", 1929 => x"8f13e080", 1930 => x"06577652", 1931 => x"7d5187cf", 1932 => x"3fb00854", 1933 => x"b008ff2e", 1934 => x"9038b008", 1935 => x"76278299", 1936 => x"387480d9", 1937 => x"842e8291", 1938 => x"3880d984", 1939 => x"0b880508", 1940 => x"55841508", 1941 => x"fc06707a", 1942 => x"317a7226", 1943 => x"8f722507", 1944 => x"52555372", 1945 => x"83e63874", 1946 => x"79810784", 1947 => x"170c7916", 1948 => x"7080d984", 1949 => x"0b88050c", 1950 => x"75810784", 1951 => x"120c547e", 1952 => x"525786fa", 1953 => x"3f881754", 1954 => x"fae03975", 1955 => x"832a7054", 1956 => x"54807424", 1957 => x"819b3872", 1958 => x"822c8171", 1959 => x"2b80d988", 1960 => x"08077080", 1961 => x"d9840b84", 1962 => x"050c7510", 1963 => x"101080d9", 1964 => x"84058811", 1965 => x"08585a5d", 1966 => x"53778c18", 1967 => x"0c748818", 1968 => x"0c768819", 1969 => x"0c768c16", 1970 => x"0cfcf339", 1971 => x"797a1010", 1972 => x"1080d984", 1973 => x"05705759", 1974 => x"5d8c1508", 1975 => x"5776752e", 1976 => x"a3388417", 1977 => x"08fc0670", 1978 => x"7a315556", 1979 => x"738f2483", 1980 => x"ca387380", 1981 => x"25848138", 1982 => x"8c170857", 1983 => x"76752e09", 1984 => x"8106df38", 1985 => x"8815811b", 1986 => x"70830655", 1987 => x"5b5572c9", 1988 => x"387c8306", 1989 => x"5372802e", 1990 => x"fdb838ff", 1991 => x"1df81959", 1992 => x"5d881808", 1993 => x"782eea38", 1994 => x"fdb53983", 1995 => x"1a53fc96", 1996 => x"39831470", 1997 => x"822c8171", 1998 => x"2b80d988", 1999 => x"08077080", 2000 => x"d9840b84", 2001 => x"050c7610", 2002 => x"101080d9", 2003 => x"84058811", 2004 => x"08595b5e", 2005 => x"5153fee1", 2006 => x"3980d8c8", 2007 => x"081758b0", 2008 => x"08762e81", 2009 => x"8d3880d8", 2010 => x"f808ff2e", 2011 => x"83ec3873", 2012 => x"76311880", 2013 => x"d8c80c73", 2014 => x"87067057", 2015 => x"5372802e", 2016 => x"88388873", 2017 => x"31701555", 2018 => x"5676149f", 2019 => x"ff06a080", 2020 => x"71311770", 2021 => x"547f5357", 2022 => x"5384e43f", 2023 => x"b00853b0", 2024 => x"08ff2e81", 2025 => x"a03880d8", 2026 => x"c8081670", 2027 => x"80d8c80c", 2028 => x"747580d9", 2029 => x"840b8805", 2030 => x"0c747631", 2031 => x"18708107", 2032 => x"51555658", 2033 => x"7b80d984", 2034 => x"2e839c38", 2035 => x"798f2682", 2036 => x"cb38810b", 2037 => x"84150c84", 2038 => x"1508fc06", 2039 => x"707a317a", 2040 => x"72268f72", 2041 => x"25075255", 2042 => x"5372802e", 2043 => x"fcf93880", 2044 => x"db39b008", 2045 => x"9fff0653", 2046 => x"72feeb38", 2047 => x"7780d8c8", 2048 => x"0c80d984", 2049 => x"0b880508", 2050 => x"7b188107", 2051 => x"84120c55", 2052 => x"80d8f408", 2053 => x"78278638", 2054 => x"7780d8f4", 2055 => x"0c80d8f0", 2056 => x"087827fc", 2057 => x"ac387780", 2058 => x"d8f00c84", 2059 => x"1508fc06", 2060 => x"707a317a", 2061 => x"72268f72", 2062 => x"25075255", 2063 => x"5372802e", 2064 => x"fca53888", 2065 => x"39807454", 2066 => x"56fedb39", 2067 => x"7d5183ae", 2068 => x"3f800bb0", 2069 => x"0c8f3d0d", 2070 => x"04735380", 2071 => x"7424a938", 2072 => x"72822c81", 2073 => x"712b80d9", 2074 => x"88080770", 2075 => x"80d9840b", 2076 => x"84050c5d", 2077 => x"53778c18", 2078 => x"0c748818", 2079 => x"0c768819", 2080 => x"0c768c16", 2081 => x"0cf9b739", 2082 => x"83147082", 2083 => x"2c81712b", 2084 => x"80d98808", 2085 => x"077080d9", 2086 => x"840b8405", 2087 => x"0c5e5153", 2088 => x"d4397b7b", 2089 => x"065372fc", 2090 => x"a338841a", 2091 => x"7b105c5a", 2092 => x"f139ff1a", 2093 => x"8111515a", 2094 => x"f7b93978", 2095 => x"17798107", 2096 => x"84190c8c", 2097 => x"18088819", 2098 => x"08718c12", 2099 => x"0c88120c", 2100 => x"597080d9", 2101 => x"980c7080", 2102 => x"d9940c80", 2103 => x"d98c0b8c", 2104 => x"120c8c11", 2105 => x"0888120c", 2106 => x"74810784", 2107 => x"120c7411", 2108 => x"75710c51", 2109 => x"53f9bd39", 2110 => x"75178411", 2111 => x"08810784", 2112 => x"120c538c", 2113 => x"17088818", 2114 => x"08718c12", 2115 => x"0c88120c", 2116 => x"587d5181", 2117 => x"e93f8817", 2118 => x"54f5cf39", 2119 => x"7284150c", 2120 => x"f41af806", 2121 => x"70841e08", 2122 => x"81060784", 2123 => x"1e0c701d", 2124 => x"545b850b", 2125 => x"84140c85", 2126 => x"0b88140c", 2127 => x"8f7b27fd", 2128 => x"cf38881c", 2129 => x"527d51ec", 2130 => x"9e3f80d9", 2131 => x"840b8805", 2132 => x"0880d8c8", 2133 => x"085955fd", 2134 => x"b7397780", 2135 => x"d8c80c73", 2136 => x"80d8f80c", 2137 => x"fc913972", 2138 => x"84150cfd", 2139 => x"a339fc3d", 2140 => x"0d767971", 2141 => x"028c059f", 2142 => x"05335755", 2143 => x"53558372", 2144 => x"278a3874", 2145 => x"83065170", 2146 => x"802ea238", 2147 => x"ff125271", 2148 => x"ff2e9338", 2149 => x"73737081", 2150 => x"055534ff", 2151 => x"125271ff", 2152 => x"2e098106", 2153 => x"ef3874b0", 2154 => x"0c863d0d", 2155 => x"04747488", 2156 => x"2b750770", 2157 => x"71902b07", 2158 => x"5154518f", 2159 => x"7227a538", 2160 => x"72717084", 2161 => x"05530c72", 2162 => x"71708405", 2163 => x"530c7271", 2164 => x"70840553", 2165 => x"0c727170", 2166 => x"8405530c", 2167 => x"f0125271", 2168 => x"8f26dd38", 2169 => x"83722790", 2170 => x"38727170", 2171 => x"8405530c", 2172 => x"fc125271", 2173 => x"8326f238", 2174 => x"7053ff90", 2175 => x"390404fd", 2176 => x"3d0d800b", 2177 => x"80e1c00c", 2178 => x"765184ee", 2179 => x"3fb00853", 2180 => x"b008ff2e", 2181 => x"883872b0", 2182 => x"0c853d0d", 2183 => x"0480e1c0", 2184 => x"08547380", 2185 => x"2ef03875", 2186 => x"74710c52", 2187 => x"72b00c85", 2188 => x"3d0d04f9", 2189 => x"3d0d797c", 2190 => x"557b548e", 2191 => x"11227090", 2192 => x"2b70902c", 2193 => x"555780d1", 2194 => x"c8085358", 2195 => x"5683f33f", 2196 => x"b0085780", 2197 => x"0bb00824", 2198 => x"933880d0", 2199 => x"1608b008", 2200 => x"0580d017", 2201 => x"0c76b00c", 2202 => x"893d0d04", 2203 => x"8c162283", 2204 => x"dfff0655", 2205 => x"748c1723", 2206 => x"76b00c89", 2207 => x"3d0d04fa", 2208 => x"3d0d788c", 2209 => x"11227088", 2210 => x"2a708106", 2211 => x"51575856", 2212 => x"74a9388c", 2213 => x"162283df", 2214 => x"ff065574", 2215 => x"8c17237a", 2216 => x"5479538e", 2217 => x"16227090", 2218 => x"2b70902c", 2219 => x"545680d1", 2220 => x"c8085256", 2221 => x"81b23f88", 2222 => x"3d0d0482", 2223 => x"5480538e", 2224 => x"16227090", 2225 => x"2b70902c", 2226 => x"545680d1", 2227 => x"c8085257", 2228 => x"82b83f8c", 2229 => x"162283df", 2230 => x"ff065574", 2231 => x"8c17237a", 2232 => x"5479538e", 2233 => x"16227090", 2234 => x"2b70902c", 2235 => x"545680d1", 2236 => x"c8085256", 2237 => x"80f23f88", 2238 => x"3d0d04f9", 2239 => x"3d0d797c", 2240 => x"557b548e", 2241 => x"11227090", 2242 => x"2b70902c", 2243 => x"555780d1", 2244 => x"c8085358", 2245 => x"5681f33f", 2246 => x"b00857b0", 2247 => x"08ff2e99", 2248 => x"388c1622", 2249 => x"a0800755", 2250 => x"748c1723", 2251 => x"b00880d0", 2252 => x"170c76b0", 2253 => x"0c893d0d", 2254 => x"048c1622", 2255 => x"83dfff06", 2256 => x"55748c17", 2257 => x"2376b00c", 2258 => x"893d0d04", 2259 => x"fe3d0d74", 2260 => x"8e112270", 2261 => x"902b7090", 2262 => x"2c555151", 2263 => x"5380d1c8", 2264 => x"0851bd3f", 2265 => x"843d0d04", 2266 => x"fb3d0d80", 2267 => x"0b80e1c0", 2268 => x"0c7a5379", 2269 => x"52785182", 2270 => x"fb3fb008", 2271 => x"55b008ff", 2272 => x"2e883874", 2273 => x"b00c873d", 2274 => x"0d0480e1", 2275 => x"c0085675", 2276 => x"802ef038", 2277 => x"7776710c", 2278 => x"5474b00c", 2279 => x"873d0d04", 2280 => x"fd3d0d80", 2281 => x"0b80e1c0", 2282 => x"0c765184", 2283 => x"d03fb008", 2284 => x"53b008ff", 2285 => x"2e883872", 2286 => x"b00c853d", 2287 => x"0d0480e1", 2288 => x"c0085473", 2289 => x"802ef038", 2290 => x"7574710c", 2291 => x"5272b00c", 2292 => x"853d0d04", 2293 => x"fc3d0d80", 2294 => x"0b80e1c0", 2295 => x"0c785277", 2296 => x"5186b83f", 2297 => x"b00854b0", 2298 => x"08ff2e88", 2299 => x"3873b00c", 2300 => x"863d0d04", 2301 => x"80e1c008", 2302 => x"5574802e", 2303 => x"f0387675", 2304 => x"710c5373", 2305 => x"b00c863d", 2306 => x"0d04fb3d", 2307 => x"0d800b80", 2308 => x"e1c00c7a", 2309 => x"53795278", 2310 => x"5184943f", 2311 => x"b00855b0", 2312 => x"08ff2e88", 2313 => x"3874b00c", 2314 => x"873d0d04", 2315 => x"80e1c008", 2316 => x"5675802e", 2317 => x"f0387776", 2318 => x"710c5474", 2319 => x"b00c873d", 2320 => x"0d04fb3d", 2321 => x"0d800b80", 2322 => x"e1c00c7a", 2323 => x"53795278", 2324 => x"5182993f", 2325 => x"b00855b0", 2326 => x"08ff2e88", 2327 => x"3874b00c", 2328 => x"873d0d04", 2329 => x"80e1c008", 2330 => x"5675802e", 2331 => x"f0387776", 2332 => x"710c5474", 2333 => x"b00c873d", 2334 => x"0d04fe3d", 2335 => x"0d80e1b4", 2336 => x"0851708a", 2337 => x"3880e1c4", 2338 => x"7080e1b4", 2339 => x"0c517075", 2340 => x"125252ff", 2341 => x"537087fb", 2342 => x"80802688", 2343 => x"387080e1", 2344 => x"b40c7153", 2345 => x"72b00c84", 2346 => x"3d0d04fd", 2347 => x"3d0d800b", 2348 => x"80d1b808", 2349 => x"54547281", 2350 => x"2e9c3873", 2351 => x"80e1b80c", 2352 => x"c0a43fff", 2353 => x"beba3f80", 2354 => x"e18c5281", 2355 => x"51c2af3f", 2356 => x"b0085185", 2357 => x"c63f7280", 2358 => x"e1b80cc0", 2359 => x"893fffbe", 2360 => x"9f3f80e1", 2361 => x"8c528151", 2362 => x"c2943fb0", 2363 => x"085185ab", 2364 => x"3f00ff39", 2365 => x"f53d0d7e", 2366 => x"6080e1b8", 2367 => x"08705b58", 2368 => x"5b5b7580", 2369 => x"c538777a", 2370 => x"25a23877", 2371 => x"1b703370", 2372 => x"81ff0658", 2373 => x"5859758a", 2374 => x"2e993876", 2375 => x"81ff0651", 2376 => x"ffbfa23f", 2377 => x"81185879", 2378 => x"7824e038", 2379 => x"79b00c8d", 2380 => x"3d0d048d", 2381 => x"51ffbf8d", 2382 => x"3f783370", 2383 => x"81ff0652", 2384 => x"57ffbf81", 2385 => x"3f811858", 2386 => x"de397955", 2387 => x"7a547d53", 2388 => x"85528d3d", 2389 => x"fc0551ff", 2390 => x"bde83fb0", 2391 => x"085684b4", 2392 => x"3f7bb008", 2393 => x"0c75b00c", 2394 => x"8d3d0d04", 2395 => x"f63d0d7d", 2396 => x"7f80e1b8", 2397 => x"08705b58", 2398 => x"5a5a7580", 2399 => x"c4387779", 2400 => x"25b638ff", 2401 => x"be9a3fb0", 2402 => x"0881ff06", 2403 => x"708d3270", 2404 => x"30709f2a", 2405 => x"51515757", 2406 => x"768a2e80", 2407 => x"c6387580", 2408 => x"2e80c038", 2409 => x"771a5676", 2410 => x"76347651", 2411 => x"ffbe963f", 2412 => x"81185878", 2413 => x"7824cc38", 2414 => x"775675b0", 2415 => x"0c8c3d0d", 2416 => x"04785579", 2417 => x"547c5384", 2418 => x"528c3dfc", 2419 => x"0551ffbc", 2420 => x"f13fb008", 2421 => x"5683bd3f", 2422 => x"7ab0080c", 2423 => x"75b00c8c", 2424 => x"3d0d0477", 2425 => x"1a568a76", 2426 => x"34811858", 2427 => x"8d51ffbd", 2428 => x"d43f8a51", 2429 => x"ffbdce3f", 2430 => x"7756ffbe", 2431 => x"39fb3d0d", 2432 => x"80e1b808", 2433 => x"70565473", 2434 => x"883874b0", 2435 => x"0c873d0d", 2436 => x"04775383", 2437 => x"52873dfc", 2438 => x"0551ffbc", 2439 => x"a53fb008", 2440 => x"5482f13f", 2441 => x"75b0080c", 2442 => x"73b00c87", 2443 => x"3d0d04fa", 2444 => x"3d0d80e1", 2445 => x"b808802e", 2446 => x"a3387a55", 2447 => x"79547853", 2448 => x"8652883d", 2449 => x"fc0551ff", 2450 => x"bbf83fb0", 2451 => x"085682c4", 2452 => x"3f76b008", 2453 => x"0c75b00c", 2454 => x"883d0d04", 2455 => x"82b63f9d", 2456 => x"0bb0080c", 2457 => x"ff0bb00c", 2458 => x"883d0d04", 2459 => x"fb3d0d77", 2460 => x"79565680", 2461 => x"70545473", 2462 => x"75259f38", 2463 => x"74101010", 2464 => x"f8055272", 2465 => x"16703370", 2466 => x"742b7607", 2467 => x"8116f816", 2468 => x"56565651", 2469 => x"51747324", 2470 => x"ea3873b0", 2471 => x"0c873d0d", 2472 => x"04fc3d0d", 2473 => x"76785555", 2474 => x"bc538052", 2475 => x"7351f5be", 2476 => x"3f845274", 2477 => x"51ffb53f", 2478 => x"b0087423", 2479 => x"84528415", 2480 => x"51ffa93f", 2481 => x"b0088215", 2482 => x"23845288", 2483 => x"1551ff9c", 2484 => x"3fb00884", 2485 => x"150c8452", 2486 => x"8c1551ff", 2487 => x"8f3fb008", 2488 => x"88152384", 2489 => x"52901551", 2490 => x"ff823fb0", 2491 => x"088a1523", 2492 => x"84529415", 2493 => x"51fef53f", 2494 => x"b0088c15", 2495 => x"23845298", 2496 => x"1551fee8", 2497 => x"3fb0088e", 2498 => x"15238852", 2499 => x"9c1551fe", 2500 => x"db3fb008", 2501 => x"90150c86", 2502 => x"3d0d04e9", 2503 => x"3d0d6a80", 2504 => x"e1b80857", 2505 => x"57759338", 2506 => x"80c0800b", 2507 => x"84180c75", 2508 => x"ac180c75", 2509 => x"b00c993d", 2510 => x"0d04893d", 2511 => x"70556a54", 2512 => x"558a5299", 2513 => x"3dffbc05", 2514 => x"51ffb9f6", 2515 => x"3fb00877", 2516 => x"53755256", 2517 => x"fecb3fbc", 2518 => x"3f77b008", 2519 => x"0c75b00c", 2520 => x"993d0d04", 2521 => x"fc3d0d81", 2522 => x"5480e1b8", 2523 => x"08883873", 2524 => x"b00c863d", 2525 => x"0d047653", 2526 => x"97b95286", 2527 => x"3dfc0551", 2528 => x"ffb9bf3f", 2529 => x"b008548c", 2530 => x"3f74b008", 2531 => x"0c73b00c", 2532 => x"863d0d04", 2533 => x"80d1c808", 2534 => x"b00c04f7", 2535 => x"3d0d7b80", 2536 => x"d1c80882", 2537 => x"c811085a", 2538 => x"545a7780", 2539 => x"2e80da38", 2540 => x"81881884", 2541 => x"1908ff05", 2542 => x"81712b59", 2543 => x"55598074", 2544 => x"2480ea38", 2545 => x"807424b5", 2546 => x"3873822b", 2547 => x"78118805", 2548 => x"56568180", 2549 => x"19087706", 2550 => x"5372802e", 2551 => x"b6387816", 2552 => x"70085353", 2553 => x"79517408", 2554 => x"53722dff", 2555 => x"14fc17fc", 2556 => x"1779812c", 2557 => x"5a575754", 2558 => x"738025d6", 2559 => x"38770858", 2560 => x"77ffad38", 2561 => x"80d1c808", 2562 => x"53bc1308", 2563 => x"a5387951", 2564 => x"f9df3f74", 2565 => x"0853722d", 2566 => x"ff14fc17", 2567 => x"fc177981", 2568 => x"2c5a5757", 2569 => x"54738025", 2570 => x"ffa838d1", 2571 => x"398057ff", 2572 => x"93397251", 2573 => x"bc130853", 2574 => x"722d7951", 2575 => x"f9b33fff", 2576 => x"3d0d80e1", 2577 => x"940bfc05", 2578 => x"70085252", 2579 => x"70ff2e91", 2580 => x"38702dfc", 2581 => x"12700852", 2582 => x"5270ff2e", 2583 => x"098106f1", 2584 => x"38833d0d", 2585 => x"0404ffb9", 2586 => x"e83f0400", 2587 => x"00ffffff", 2588 => x"ff00ffff", 2589 => x"ffff00ff", 2590 => x"ffffff00", 2591 => x"00000040", 2592 => x"30313233", 2593 => x"34353637", 2594 => x"38396162", 2595 => x"63646566", 2596 => x"00000000", 2597 => x"633a0000", 2598 => x"733a0000", 2599 => x"623a0000", 2600 => x"0a000000", 2601 => x"43000000", 2602 => x"64756d6d", 2603 => x"792e6578", 2604 => x"65000000", 2605 => x"00000000", 2606 => x"00000000", 2607 => x"00000000", 2608 => x"0000309c", 2609 => x"00002880", 2610 => x"000028cc", 2611 => x"00000000", 2612 => x"00002b34", 2613 => x"00002b90", 2614 => x"00002bec", 2615 => x"00000000", 2616 => x"00000000", 2617 => x"00000000", 2618 => x"00000000", 2619 => x"00000000", 2620 => x"00000000", 2621 => x"00000000", 2622 => x"00000000", 2623 => x"00000000", 2624 => x"000028a4", 2625 => x"00000000", 2626 => x"00000000", 2627 => x"00000000", 2628 => x"00000000", 2629 => x"00000000", 2630 => x"00000000", 2631 => x"00000000", 2632 => x"00000000", 2633 => x"00000000", 2634 => x"00000000", 2635 => x"00000000", 2636 => x"00000000", 2637 => x"00000000", 2638 => x"00000000", 2639 => x"00000000", 2640 => x"00000000", 2641 => x"00000000", 2642 => x"00000000", 2643 => x"00000000", 2644 => x"00000000", 2645 => x"00000000", 2646 => x"00000000", 2647 => x"00000000", 2648 => x"00000000", 2649 => x"00000000", 2650 => x"00000000", 2651 => x"00000000", 2652 => x"00000000", 2653 => x"00000001", 2654 => x"330eabcd", 2655 => x"1234e66d", 2656 => x"deec0005", 2657 => x"000b0000", 2658 => x"00000000", 2659 => x"00000000", 2660 => x"00000000", 2661 => x"00000000", 2662 => x"00000000", 2663 => x"00000000", 2664 => x"00000000", 2665 => x"00000000", 2666 => x"00000000", 2667 => x"00000000", 2668 => x"00000000", 2669 => x"00000000", 2670 => x"00000000", 2671 => x"00000000", 2672 => x"00000000", 2673 => x"00000000", 2674 => x"00000000", 2675 => x"00000000", 2676 => x"00000000", 2677 => x"00000000", 2678 => x"00000000", 2679 => x"00000000", 2680 => x"00000000", 2681 => x"00000000", 2682 => x"00000000", 2683 => x"00000000", 2684 => x"00000000", 2685 => x"00000000", 2686 => x"00000000", 2687 => x"00000000", 2688 => x"00000000", 2689 => x"00000000", 2690 => x"00000000", 2691 => x"00000000", 2692 => x"00000000", 2693 => x"00000000", 2694 => x"00000000", 2695 => x"00000000", 2696 => x"00000000", 2697 => x"00000000", 2698 => x"00000000", 2699 => x"00000000", 2700 => x"00000000", 2701 => x"00000000", 2702 => x"00000000", 2703 => x"00000000", 2704 => x"00000000", 2705 => x"00000000", 2706 => x"00000000", 2707 => x"00000000", 2708 => x"00000000", 2709 => x"00000000", 2710 => x"00000000", 2711 => x"00000000", 2712 => x"00000000", 2713 => x"00000000", 2714 => x"00000000", 2715 => x"00000000", 2716 => x"00000000", 2717 => x"00000000", 2718 => x"00000000", 2719 => x"00000000", 2720 => x"00000000", 2721 => x"00000000", 2722 => x"00000000", 2723 => x"00000000", 2724 => x"00000000", 2725 => x"00000000", 2726 => x"00000000", 2727 => x"00000000", 2728 => x"00000000", 2729 => x"00000000", 2730 => x"00000000", 2731 => x"00000000", 2732 => x"00000000", 2733 => x"00000000", 2734 => x"00000000", 2735 => x"00000000", 2736 => x"00000000", 2737 => x"00000000", 2738 => x"00000000", 2739 => x"00000000", 2740 => x"00000000", 2741 => x"00000000", 2742 => x"00000000", 2743 => x"00000000", 2744 => x"00000000", 2745 => x"00000000", 2746 => x"00000000", 2747 => x"00000000", 2748 => x"00000000", 2749 => x"00000000", 2750 => x"00000000", 2751 => x"00000000", 2752 => x"00000000", 2753 => x"00000000", 2754 => x"00000000", 2755 => x"00000000", 2756 => x"00000000", 2757 => x"00000000", 2758 => x"00000000", 2759 => x"00000000", 2760 => x"00000000", 2761 => x"00000000", 2762 => x"00000000", 2763 => x"00000000", 2764 => x"00000000", 2765 => x"00000000", 2766 => x"00000000", 2767 => x"00000000", 2768 => x"00000000", 2769 => x"00000000", 2770 => x"00000000", 2771 => x"00000000", 2772 => x"00000000", 2773 => x"00000000", 2774 => x"00000000", 2775 => x"00000000", 2776 => x"00000000", 2777 => x"00000000", 2778 => x"00000000", 2779 => x"00000000", 2780 => x"00000000", 2781 => x"00000000", 2782 => x"00000000", 2783 => x"00000000", 2784 => x"00000000", 2785 => x"00000000", 2786 => x"00000000", 2787 => x"00000000", 2788 => x"00000000", 2789 => x"00000000", 2790 => x"00000000", 2791 => x"00000000", 2792 => x"00000000", 2793 => x"00000000", 2794 => x"00000000", 2795 => x"00000000", 2796 => x"00000000", 2797 => x"00000000", 2798 => x"00000000", 2799 => x"00000000", 2800 => x"00000000", 2801 => x"00000000", 2802 => x"00000000", 2803 => x"00000000", 2804 => x"00000000", 2805 => x"00000000", 2806 => x"00000000", 2807 => x"00000000", 2808 => x"00000000", 2809 => x"00000000", 2810 => x"00000000", 2811 => x"00000000", 2812 => x"00000000", 2813 => x"00000000", 2814 => x"00000000", 2815 => x"00000000", 2816 => x"00000000", 2817 => x"00000000", 2818 => x"00000000", 2819 => x"00000000", 2820 => x"00000000", 2821 => x"00000000", 2822 => x"00000000", 2823 => x"00000000", 2824 => x"00000000", 2825 => x"00000000", 2826 => x"00000000", 2827 => x"00000000", 2828 => x"00000000", 2829 => x"00000000", 2830 => x"00000000", 2831 => x"00000000", 2832 => x"00000000", 2833 => x"00000000", 2834 => x"00000000", 2835 => x"00000000", 2836 => x"00000000", 2837 => x"00000000", 2838 => x"00000000", 2839 => x"00000000", 2840 => x"00000000", 2841 => x"00000000", 2842 => x"00000000", 2843 => x"00000000", 2844 => x"00000000", 2845 => x"00000000", 2846 => x"ffffffff", 2847 => x"00000000", 2848 => x"00020000", 2849 => x"00000000", 2850 => x"00000000", 2851 => x"00002c84", 2852 => x"00002c84", 2853 => x"00002c8c", 2854 => x"00002c8c", 2855 => x"00002c94", 2856 => x"00002c94", 2857 => x"00002c9c", 2858 => x"00002c9c", 2859 => x"00002ca4", 2860 => x"00002ca4", 2861 => x"00002cac", 2862 => x"00002cac", 2863 => x"00002cb4", 2864 => x"00002cb4", 2865 => x"00002cbc", 2866 => x"00002cbc", 2867 => x"00002cc4", 2868 => x"00002cc4", 2869 => x"00002ccc", 2870 => x"00002ccc", 2871 => x"00002cd4", 2872 => x"00002cd4", 2873 => x"00002cdc", 2874 => x"00002cdc", 2875 => x"00002ce4", 2876 => x"00002ce4", 2877 => x"00002cec", 2878 => x"00002cec", 2879 => x"00002cf4", 2880 => x"00002cf4", 2881 => x"00002cfc", 2882 => x"00002cfc", 2883 => x"00002d04", 2884 => x"00002d04", 2885 => x"00002d0c", 2886 => x"00002d0c", 2887 => x"00002d14", 2888 => x"00002d14", 2889 => x"00002d1c", 2890 => x"00002d1c", 2891 => x"00002d24", 2892 => x"00002d24", 2893 => x"00002d2c", 2894 => x"00002d2c", 2895 => x"00002d34", 2896 => x"00002d34", 2897 => x"00002d3c", 2898 => x"00002d3c", 2899 => x"00002d44", 2900 => x"00002d44", 2901 => x"00002d4c", 2902 => x"00002d4c", 2903 => x"00002d54", 2904 => x"00002d54", 2905 => x"00002d5c", 2906 => x"00002d5c", 2907 => x"00002d64", 2908 => x"00002d64", 2909 => x"00002d6c", 2910 => x"00002d6c", 2911 => x"00002d74", 2912 => x"00002d74", 2913 => x"00002d7c", 2914 => x"00002d7c", 2915 => x"00002d84", 2916 => x"00002d84", 2917 => x"00002d8c", 2918 => x"00002d8c", 2919 => x"00002d94", 2920 => x"00002d94", 2921 => x"00002d9c", 2922 => x"00002d9c", 2923 => x"00002da4", 2924 => x"00002da4", 2925 => x"00002dac", 2926 => x"00002dac", 2927 => x"00002db4", 2928 => x"00002db4", 2929 => x"00002dbc", 2930 => x"00002dbc", 2931 => x"00002dc4", 2932 => x"00002dc4", 2933 => x"00002dcc", 2934 => x"00002dcc", 2935 => x"00002dd4", 2936 => x"00002dd4", 2937 => x"00002ddc", 2938 => x"00002ddc", 2939 => x"00002de4", 2940 => x"00002de4", 2941 => x"00002dec", 2942 => x"00002dec", 2943 => x"00002df4", 2944 => x"00002df4", 2945 => x"00002dfc", 2946 => x"00002dfc", 2947 => x"00002e04", 2948 => x"00002e04", 2949 => x"00002e0c", 2950 => x"00002e0c", 2951 => x"00002e14", 2952 => x"00002e14", 2953 => x"00002e1c", 2954 => x"00002e1c", 2955 => x"00002e24", 2956 => x"00002e24", 2957 => x"00002e2c", 2958 => x"00002e2c", 2959 => x"00002e34", 2960 => x"00002e34", 2961 => x"00002e3c", 2962 => x"00002e3c", 2963 => x"00002e44", 2964 => x"00002e44", 2965 => x"00002e4c", 2966 => x"00002e4c", 2967 => x"00002e54", 2968 => x"00002e54", 2969 => x"00002e5c", 2970 => x"00002e5c", 2971 => x"00002e64", 2972 => x"00002e64", 2973 => x"00002e6c", 2974 => x"00002e6c", 2975 => x"00002e74", 2976 => x"00002e74", 2977 => x"00002e7c", 2978 => x"00002e7c", 2979 => x"00002e84", 2980 => x"00002e84", 2981 => x"00002e8c", 2982 => x"00002e8c", 2983 => x"00002e94", 2984 => x"00002e94", 2985 => x"00002e9c", 2986 => x"00002e9c", 2987 => x"00002ea4", 2988 => x"00002ea4", 2989 => x"00002eac", 2990 => x"00002eac", 2991 => x"00002eb4", 2992 => x"00002eb4", 2993 => x"00002ebc", 2994 => x"00002ebc", 2995 => x"00002ec4", 2996 => x"00002ec4", 2997 => x"00002ecc", 2998 => x"00002ecc", 2999 => x"00002ed4", 3000 => x"00002ed4", 3001 => x"00002edc", 3002 => x"00002edc", 3003 => x"00002ee4", 3004 => x"00002ee4", 3005 => x"00002eec", 3006 => x"00002eec", 3007 => x"00002ef4", 3008 => x"00002ef4", 3009 => x"00002efc", 3010 => x"00002efc", 3011 => x"00002f04", 3012 => x"00002f04", 3013 => x"00002f0c", 3014 => x"00002f0c", 3015 => x"00002f14", 3016 => x"00002f14", 3017 => x"00002f1c", 3018 => x"00002f1c", 3019 => x"00002f24", 3020 => x"00002f24", 3021 => x"00002f2c", 3022 => x"00002f2c", 3023 => x"00002f34", 3024 => x"00002f34", 3025 => x"00002f3c", 3026 => x"00002f3c", 3027 => x"00002f44", 3028 => x"00002f44", 3029 => x"00002f4c", 3030 => x"00002f4c", 3031 => x"00002f54", 3032 => x"00002f54", 3033 => x"00002f5c", 3034 => x"00002f5c", 3035 => x"00002f64", 3036 => x"00002f64", 3037 => x"00002f6c", 3038 => x"00002f6c", 3039 => x"00002f74", 3040 => x"00002f74", 3041 => x"00002f7c", 3042 => x"00002f7c", 3043 => x"00002f84", 3044 => x"00002f84", 3045 => x"00002f8c", 3046 => x"00002f8c", 3047 => x"00002f94", 3048 => x"00002f94", 3049 => x"00002f9c", 3050 => x"00002f9c", 3051 => x"00002fa4", 3052 => x"00002fa4", 3053 => x"00002fac", 3054 => x"00002fac", 3055 => x"00002fb4", 3056 => x"00002fb4", 3057 => x"00002fbc", 3058 => x"00002fbc", 3059 => x"00002fc4", 3060 => x"00002fc4", 3061 => x"00002fcc", 3062 => x"00002fcc", 3063 => x"00002fd4", 3064 => x"00002fd4", 3065 => x"00002fdc", 3066 => x"00002fdc", 3067 => x"00002fe4", 3068 => x"00002fe4", 3069 => x"00002fec", 3070 => x"00002fec", 3071 => x"00002ff4", 3072 => x"00002ff4", 3073 => x"00002ffc", 3074 => x"00002ffc", 3075 => x"00003004", 3076 => x"00003004", 3077 => x"0000300c", 3078 => x"0000300c", 3079 => x"00003014", 3080 => x"00003014", 3081 => x"0000301c", 3082 => x"0000301c", 3083 => x"00003024", 3084 => x"00003024", 3085 => x"0000302c", 3086 => x"0000302c", 3087 => x"00003034", 3088 => x"00003034", 3089 => x"0000303c", 3090 => x"0000303c", 3091 => x"00003044", 3092 => x"00003044", 3093 => x"0000304c", 3094 => x"0000304c", 3095 => x"00003054", 3096 => x"00003054", 3097 => x"0000305c", 3098 => x"0000305c", 3099 => x"00003064", 3100 => x"00003064", 3101 => x"0000306c", 3102 => x"0000306c", 3103 => x"00003074", 3104 => x"00003074", 3105 => x"0000307c", 3106 => x"0000307c", 3107 => x"000028a8", 3108 => x"ffffffff", 3109 => x"00000000", 3110 => x"ffffffff", 3111 => x"00000000", others => x"00000000" ); begin busy_o <= re_i; -- we're done on the cycle after we serve the read request do_ram: process (clk_i) variable iaddr : integer; begin if rising_edge(clk_i) then if we_i='1' then ram(to_integer(addr_i)) <= write_i; end if; addr_r <= addr_i; end if; end process do_ram; read_o <= ram(to_integer(addr_r)); end architecture Xilinx; -- Entity: SinglePortRAM
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: ch_05_fg_05_18.vhd,v 1.5 2001-10-26 16:29:34 paw Exp $ -- $Revision: 1.5 $ -- -- --------------------------------------------------------------------- entity fg_05_18 is end entity fg_05_18; library stimulus; architecture test of fg_05_18 is use stimulus.stimulus_generators.all; signal sel0, sel1, d0, d1, d2, d3 : bit := '0'; signal functional_z, equivalent_z : bit; begin functional_mux : block is port ( z : out bit ); port map ( z => functional_z ); begin -- code from book zmux : z <= d0 when sel1 = '0' and sel0 = '0' else d1 when sel1 = '0' and sel0 = '1' else d2 when sel1 = '1' and sel0 = '0' else d3; -- end code from book end block functional_mux; equivalent_mux : block is port ( z : out bit ); port map ( z => equivalent_z ); begin -- code from book zmux : process is begin if sel1 = '0' and sel0 = '0' then z <= d0; elsif sel1 = '0' and sel0 = '1' then z <= d1; elsif sel1 = '1' and sel0 = '0' then z <= d2; else z <= d3; end if; wait on d0, d1, d2, d3, sel0, sel1; end process zmux; -- end code from book end block equivalent_mux; stimulus_proc : all_possible_values( bv(0) => sel0, bv(1) => sel1, bv(2) => d0, bv(3) => d1, bv(4) => d2, bv(5) => d3, delay_between_values => 10 ns ); verifier : assert functional_z = equivalent_z report "Functional and equivalent models give different results"; end architecture test;
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: ch_05_fg_05_18.vhd,v 1.5 2001-10-26 16:29:34 paw Exp $ -- $Revision: 1.5 $ -- -- --------------------------------------------------------------------- entity fg_05_18 is end entity fg_05_18; library stimulus; architecture test of fg_05_18 is use stimulus.stimulus_generators.all; signal sel0, sel1, d0, d1, d2, d3 : bit := '0'; signal functional_z, equivalent_z : bit; begin functional_mux : block is port ( z : out bit ); port map ( z => functional_z ); begin -- code from book zmux : z <= d0 when sel1 = '0' and sel0 = '0' else d1 when sel1 = '0' and sel0 = '1' else d2 when sel1 = '1' and sel0 = '0' else d3; -- end code from book end block functional_mux; equivalent_mux : block is port ( z : out bit ); port map ( z => equivalent_z ); begin -- code from book zmux : process is begin if sel1 = '0' and sel0 = '0' then z <= d0; elsif sel1 = '0' and sel0 = '1' then z <= d1; elsif sel1 = '1' and sel0 = '0' then z <= d2; else z <= d3; end if; wait on d0, d1, d2, d3, sel0, sel1; end process zmux; -- end code from book end block equivalent_mux; stimulus_proc : all_possible_values( bv(0) => sel0, bv(1) => sel1, bv(2) => d0, bv(3) => d1, bv(4) => d2, bv(5) => d3, delay_between_values => 10 ns ); verifier : assert functional_z = equivalent_z report "Functional and equivalent models give different results"; end architecture test;
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: ch_05_fg_05_18.vhd,v 1.5 2001-10-26 16:29:34 paw Exp $ -- $Revision: 1.5 $ -- -- --------------------------------------------------------------------- entity fg_05_18 is end entity fg_05_18; library stimulus; architecture test of fg_05_18 is use stimulus.stimulus_generators.all; signal sel0, sel1, d0, d1, d2, d3 : bit := '0'; signal functional_z, equivalent_z : bit; begin functional_mux : block is port ( z : out bit ); port map ( z => functional_z ); begin -- code from book zmux : z <= d0 when sel1 = '0' and sel0 = '0' else d1 when sel1 = '0' and sel0 = '1' else d2 when sel1 = '1' and sel0 = '0' else d3; -- end code from book end block functional_mux; equivalent_mux : block is port ( z : out bit ); port map ( z => equivalent_z ); begin -- code from book zmux : process is begin if sel1 = '0' and sel0 = '0' then z <= d0; elsif sel1 = '0' and sel0 = '1' then z <= d1; elsif sel1 = '1' and sel0 = '0' then z <= d2; else z <= d3; end if; wait on d0, d1, d2, d3, sel0, sel1; end process zmux; -- end code from book end block equivalent_mux; stimulus_proc : all_possible_values( bv(0) => sel0, bv(1) => sel1, bv(2) => d0, bv(3) => d1, bv(4) => d2, bv(5) => d3, delay_between_values => 10 ns ); verifier : assert functional_z = equivalent_z report "Functional and equivalent models give different results"; end architecture test;
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity debounce is generic ( counter_size : integer := 18 -- approx 16ms @ 16MHz ); port ( clock : in std_logic; button : in std_logic; -- button input result : out std_logic; -- debounced button input pressed : out std_logic; -- active got one cycle when button pressed released : out std_logic -- active got one cycle when button released ); end debounce; architecture behavioural of debounce is signal button_in : std_logic; -- synchronised to clock, but not debounced signal button_out : std_logic; -- fully debounced signal counter : std_logic_vector(counter_size downto 0) := (others => '0'); begin process(clock) begin if rising_edge(clock) then button_in <= button; pressed <= '0'; released <= '0'; if button_in = button_out then -- input same as output, reset the counter counter <= (others => '0'); else -- input is different to output, start counting counter <= counter + 1; -- difference lasts for N-1 cycles, update the output if counter(counter_size) = '1' then button_out <= button_in; if button_in = '1' then pressed <= '1'; else released <= '1'; end if; end if; end if; end if; end process; result <= button_out; end behavioural;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc696.vhd,v 1.3 2001-10-29 02:12:46 paw Exp $ -- $Revision: 1.3 $ -- -- --------------------------------------------------------------------- -- **************************** -- -- Ported to VHDL 93 by port93.pl - Tue Nov 5 16:38:05 1996 -- -- **************************** -- -- **************************** -- -- Reversed to VHDL 87 by reverse87.pl - Tue Nov 5 11:26:39 1996 -- -- **************************** -- -- **************************** -- -- Ported to VHDL 93 by port93.pl - Mon Nov 4 17:36:44 1996 -- -- **************************** -- ENTITY c03s04b01x00p23n01i00696ent IS END c03s04b01x00p23n01i00696ent; ARCHITECTURE c03s04b01x00p23n01i00696arch OF c03s04b01x00p23n01i00696ent IS BEGIN TESTING: PROCESS -- Declare the type and the file. type FT is file of SEVERITY_LEVEL; -- Declare the actual file to read. file FILEV : FT open read_mode is "iofile.55"; -- Declare a variable into which we will read. constant CON : SEVERITY_LEVEL := WARNING; variable VAR : SEVERITY_LEVEL; variable k : integer := 0; BEGIN -- Read in the file. for I in 1 to 100 loop if (ENDFILE( FILEV ) /= FALSE) then k := 1; end if; assert( (ENDFILE( FILEV ) = FALSE) ) report "Hit the end of file too soon."; READ( FILEV,VAR ); if (VAR /= CON) then k := 1; end if; end loop; -- Verify that we are at the end. if (ENDFILE( FILEV ) /= TRUE) then k := 1; end if; assert( ENDFILE( FILEV ) = TRUE ) report "Have not reached end of file yet." severity ERROR; assert NOT( k = 0 ) report "***PASSED TEST: c03s04b01x00p23n01i00696" severity NOTE; assert( k = 0 ) report "***FAILED TEST: c03s04b01x00p23n01i00696 - The variables don't equal the constants." severity ERROR; wait; END PROCESS TESTING; END c03s04b01x00p23n01i00696arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc696.vhd,v 1.3 2001-10-29 02:12:46 paw Exp $ -- $Revision: 1.3 $ -- -- --------------------------------------------------------------------- -- **************************** -- -- Ported to VHDL 93 by port93.pl - Tue Nov 5 16:38:05 1996 -- -- **************************** -- -- **************************** -- -- Reversed to VHDL 87 by reverse87.pl - Tue Nov 5 11:26:39 1996 -- -- **************************** -- -- **************************** -- -- Ported to VHDL 93 by port93.pl - Mon Nov 4 17:36:44 1996 -- -- **************************** -- ENTITY c03s04b01x00p23n01i00696ent IS END c03s04b01x00p23n01i00696ent; ARCHITECTURE c03s04b01x00p23n01i00696arch OF c03s04b01x00p23n01i00696ent IS BEGIN TESTING: PROCESS -- Declare the type and the file. type FT is file of SEVERITY_LEVEL; -- Declare the actual file to read. file FILEV : FT open read_mode is "iofile.55"; -- Declare a variable into which we will read. constant CON : SEVERITY_LEVEL := WARNING; variable VAR : SEVERITY_LEVEL; variable k : integer := 0; BEGIN -- Read in the file. for I in 1 to 100 loop if (ENDFILE( FILEV ) /= FALSE) then k := 1; end if; assert( (ENDFILE( FILEV ) = FALSE) ) report "Hit the end of file too soon."; READ( FILEV,VAR ); if (VAR /= CON) then k := 1; end if; end loop; -- Verify that we are at the end. if (ENDFILE( FILEV ) /= TRUE) then k := 1; end if; assert( ENDFILE( FILEV ) = TRUE ) report "Have not reached end of file yet." severity ERROR; assert NOT( k = 0 ) report "***PASSED TEST: c03s04b01x00p23n01i00696" severity NOTE; assert( k = 0 ) report "***FAILED TEST: c03s04b01x00p23n01i00696 - The variables don't equal the constants." severity ERROR; wait; END PROCESS TESTING; END c03s04b01x00p23n01i00696arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc696.vhd,v 1.3 2001-10-29 02:12:46 paw Exp $ -- $Revision: 1.3 $ -- -- --------------------------------------------------------------------- -- **************************** -- -- Ported to VHDL 93 by port93.pl - Tue Nov 5 16:38:05 1996 -- -- **************************** -- -- **************************** -- -- Reversed to VHDL 87 by reverse87.pl - Tue Nov 5 11:26:39 1996 -- -- **************************** -- -- **************************** -- -- Ported to VHDL 93 by port93.pl - Mon Nov 4 17:36:44 1996 -- -- **************************** -- ENTITY c03s04b01x00p23n01i00696ent IS END c03s04b01x00p23n01i00696ent; ARCHITECTURE c03s04b01x00p23n01i00696arch OF c03s04b01x00p23n01i00696ent IS BEGIN TESTING: PROCESS -- Declare the type and the file. type FT is file of SEVERITY_LEVEL; -- Declare the actual file to read. file FILEV : FT open read_mode is "iofile.55"; -- Declare a variable into which we will read. constant CON : SEVERITY_LEVEL := WARNING; variable VAR : SEVERITY_LEVEL; variable k : integer := 0; BEGIN -- Read in the file. for I in 1 to 100 loop if (ENDFILE( FILEV ) /= FALSE) then k := 1; end if; assert( (ENDFILE( FILEV ) = FALSE) ) report "Hit the end of file too soon."; READ( FILEV,VAR ); if (VAR /= CON) then k := 1; end if; end loop; -- Verify that we are at the end. if (ENDFILE( FILEV ) /= TRUE) then k := 1; end if; assert( ENDFILE( FILEV ) = TRUE ) report "Have not reached end of file yet." severity ERROR; assert NOT( k = 0 ) report "***PASSED TEST: c03s04b01x00p23n01i00696" severity NOTE; assert( k = 0 ) report "***FAILED TEST: c03s04b01x00p23n01i00696 - The variables don't equal the constants." severity ERROR; wait; END PROCESS TESTING; END c03s04b01x00p23n01i00696arch;
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block bftUYz/ivZwRKHjNRH7kkXvh+fjWYfki6YLqsAb7cm5RYoxFBK99SvnX1vTo6Jj8x4ilV9GTbgQc +XyX4KRcfg== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block biM8blG9r9dCNtJXz9Tz8RRSAcK8xhkXuhy/HcHrgLADVErYuvGjEZngExoMdfSTPECGP6BIJeDo paFjQYUEAV+Y0UDn+VOS6eSLZaJskXcjcXPqVQMrBYzBFy9aARohuL+cbiwNjBy6yV4TXZHTPLnW Rq+N4dJ3ltw2ldDPjwk= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block n/LIdf4SQqHyjXjXmZoyEJdkDwomos228O2OmjJlTvJET0+c2FL3jqwIYwlL1JV2PCyIhK011LDD dJaHetVg0cej7SGocO+eB27v5kZbKu0t72lc2NirX8Fm3VnEsw+ukjvOQdFqca9DTd0NLWyE6G2j btWopzvOiNbMvEZYbCd2oApXcCfyH4BTO7dLwQxCRGgRnmxjfKndbuzI85zOnjOe5C6F6hTWeOzF b8izeHnoySZ7JE4uoTUfKqfw4204PsmuSlKNfj76DDMV6vsxdamDmxwTN1lhrzblXIViWcUSXyXW Ho3ePALY2OybKEtZBu2HgqztD7lY1FSP9qhZ8A== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block QG65+ZhI2Dqy8fg9i3oZaFPsuNgH4p35Ij36mifNdj7rIEA1T1mpUdG7wxgLaUZE4NmhQC8LBdKj NpV/8H6veLkQuJJdqeEK0j/hobsuESGmlEqSe3MOCKX1DPI1ZU+5sp8ht3fMqngmVRcIMhlPk6NZ i9mrekuwqN3AqZjYKi4= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block bPMoNtnlXSeDoisscH1EG1S302cyTozdB7J9B0mWqwmBH+HSSKXtW0oABBWLZY61LTnxFx+yPVKY GxuhT/ot16rTDeM7x21n/zxLvszVCmoZGwewdiBaJZD4iUOT4ZvQIN5lsy3xd4FejhhEX+srCJcq U3xm9FWVWqgrw3uGAo08GpR+DXiLfsz6rksR/QaqtPnEqOGbqLpRL/ABFd7U0fdyr3Vi++gCFIH+ 7gL05AnPxXx0EOwNEvtG56c2/E33A9UsHYH2Qc0Yz2tICsf2A7dfgwCi0I/02K5LeyUjuLTlIecu R3wAiHnUX9StY59iP+FRBdzxRqfUmm64zyfy5g== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 9968) `protect data_block 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 `protect end_protected
-- -- This file is part of top_test_rom -- Copyright (C) 2011 Julien Thevenon ( julien_thevenon at yahoo.fr ) -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/> -- -- Notes: -- This testbench has been automatically generated using types std_logic and -- std_logic_vector for the ports of the unit under test. Xilinx recommends -- that these types always be used for the top-level I/O of a design in order -- to guarantee that the testbench will bind correctly to the post-implementation -- simulation model. -------------------------------------------------------------------------------- LIBRARY ieee; USE ieee.std_logic_1164.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --USE ieee.numeric_std.ALL; ENTITY testbench_top_test_rom IS END testbench_top_test_rom; ARCHITECTURE behavior OF testbench_top_test_rom IS -- Component Declaration for the Unit Under Test (UUT) COMPONENT top_test_rom PORT( clk : IN std_logic; w1a : INOUT std_logic_vector(15 downto 0); w1b : INOUT std_logic_vector(15 downto 0); w2c : INOUT std_logic_vector(15 downto 0); rx : IN std_logic; tx : INOUT std_logic ); END COMPONENT; --Inputs signal clk : std_logic := '0'; signal rx : std_logic := '0'; --BiDirs signal w1a : std_logic_vector(15 downto 0); signal w1b : std_logic_vector(15 downto 0); signal w2c : std_logic_vector(15 downto 0); signal tx : std_logic; -- Clock period definitions constant clk_period : time := 10 ns; BEGIN -- Instantiate the Unit Under Test (UUT) uut: top_test_rom PORT MAP ( clk => clk, w1a => w1a, w1b => w1b, w2c => w2c, rx => rx, tx => tx ); -- Clock process definitions clk_process :process begin clk <= '0'; wait for clk_period/2; clk <= '1'; wait for clk_period/2; end process; -- Stimulus process stim_proc: process begin -- hold reset state for 100 ns. wait for 100 ns; wait for clk_period*10; -- insert stimulus here wait; end process; END;
------------------------------------------------------------------------------ -- Tristate buffer -- -- Project : -- File : tristatebuf.vhd -- Author : Rolf Enzler <enzler@ife.ee.ethz.ch> -- Company : Swiss Federal Institute of Technology (ETH) Zurich -- Created : 2002/10/14 -- Last changed: $LastChangedDate: 2004-10-05 17:10:36 +0200 (Tue, 05 Oct 2004) $ ------------------------------------------------------------------------------ library ieee; use ieee.std_logic_1164.all; entity TristateBuf is generic ( WIDTH : integer); port ( InxDI : in std_logic_vector(WIDTH-1 downto 0); OExEI : in std_logic; OutxZO : out std_logic_vector(WIDTH-1 downto 0)); end TristateBuf; architecture simple of TristateBuf is begin -- simple OutxZO <= InxDI when OExEI = '1' else (others => 'Z'); end simple;
--******************************************************************************-- -- Author: Weihao Ming -- -- Date: 2014-01-13 -- -- Module: EE3A1 RISC Microprocessor -- -- Description: This file is basic motherbroad of microprocessor. -- -- It has linking wires, instruction decoder, -- -- and multiplexer controller. -- --******************************************************************************-- LIBRARY ieee; USE ieee.std_logic_1164.all; ENTITY mpBeta IS PORT ( clk: IN STD_LOGIC; -- Two ports input. One for clock and another one for instruction. instruction1: IN STD_LOGIC_VECTOR(31 DOWNTO 0) ); END ENTITY mpBeta; ARCHITECTURE rtl OF mpBeta IS SIGNAL instruction2: STD_LOGIC_VECTOR(31 DOWNTO 0); -- Recieving instruction from re-order buffer. SIGNAL linkOut1a, linkOut2b, linkResultInput1, linkResultInput2: STD_LOGIC_VECTOR ( 31 DOWNTO 0 ); SIGNAL address1_input, address2_input, address3_input1, address3_input2, address3_input3: STD_LOGIC_VECTOR ( 4 DOWNTO 0 ); SIGNAL opcode_input1, opcode_input2: STD_LOGIC_VECTOR ( 5 DOWNTO 0 ); SIGNAL inout1: STD_LOGIC_VECTOR ( 31 DOWNTO 0); -- Wires connected Multiplexer and Register. SIGNAL feed: STD_LOGIC; -- Multiplexer Controller BEGIN g1: ENTITY work.rom(rtl) PORT MAP( output1 => inout1, output2 => linkOut2b, input => linkResultInput2, address1 => address1_input, address2 => address2_input, address3 => address3_input3, clk => clk); g2: ENTITY work.alu(rtl) PORT MAP( a => linkOut1a, b => linkOut2b, result => linkResultInput1, opcode => opcode_input2, clk => clk); g3: ENTITY work.rForward(rtl) -- Multiplexer. I call it register forward. PORT MAP( feed => feed, inout1 => inout1, feedback1 => linkResultInput2, out1 => linkOut1a); g4: ENTITY work.reorderBuffer(rtl) PORT MAP( in1 => instruction1, out1 => instruction2, clk => clk); opcode_input1 <= instruction2(31 DOWNTO 26); -- Instruction decoder. address1_input <= instruction2(25 DOWNTO 21); address2_input <= instruction2(20 DOWNTO 16); address3_input1 <= instruction2(15 DOWNTO 11); process(clk) begin if ( rising_edge(clk) ) then address3_input2 <= address3_input1; -- D-type flip-flop between wires to keep pipeline stable. address3_input3 <= address3_input2; linkResultInput2 <= linkResultInput1; opcode_input2 <= opcode_input1; if (address1_input = address3_input2)then -- Check if current read address is same as feed <= '1'; -- previous write address. If it is same then enable multiplexer. ELSE feed <= '0'; end if; end if; end process; END ARCHITECTURE rtl;
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity mul_int2 is port (in1: in std_logic_vector(23 downto 0); in2: in std_logic_vector(23 downto 0); clk,rst: in std_logic; done:out std_logic; res: out std_logic_vector(47 downto 0) ); end mul_int2; architecture arch_mul_int2_1 of mul_int2 is component shifter2 port (in1: in std_logic_vector(23 downto 0); in2: in unsigned(4 downto 0); rst: in std_logic; res: out std_logic_vector (47 downto 0)); end component; signal rsh: std_logic_vector(47 downto 0):=(others=>'0'); signal r: std_logic_vector(47 downto 0):=(others=>'0'); signal counter: unsigned(4 downto 0):="00000"; signal d: std_logic; begin sh: shifter2 port map(in1=>in2,in2=>counter,rst=>rst,res=>rsh ); res<=r(47 downto 0); done<=d; process (rst,clk) begin if rst='0' then r<=(others=>'0'); counter<="00000"; d<='0'; else if(rising_edge(clk)) then if(in1(to_integer(counter))='1' and d='0') then r<=std_logic_vector(unsigned(r)+unsigned(rsh)); end if; if(counter="10111") then d<='1'; else counter<=counter+1; end if; end if; end if; end process; end arch_mul_int2_1;
-- (c) Copyright 1995-2017 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- DO NOT MODIFY THIS FILE. -- IP VLNV: xilinx.com:ip:axi_iic:2.0 -- IP Revision: 14 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.numeric_std.ALL; LIBRARY axi_iic_v2_0_14; USE axi_iic_v2_0_14.axi_iic; ENTITY system_axi_iic_0_0 IS PORT ( s_axi_aclk : IN STD_LOGIC; s_axi_aresetn : IN STD_LOGIC; iic2intc_irpt : OUT STD_LOGIC; s_axi_awaddr : IN STD_LOGIC_VECTOR(8 DOWNTO 0); s_axi_awvalid : IN STD_LOGIC; s_axi_awready : OUT STD_LOGIC; s_axi_wdata : IN STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_wstrb : IN STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_wvalid : IN STD_LOGIC; s_axi_wready : OUT STD_LOGIC; s_axi_bresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_bvalid : OUT STD_LOGIC; s_axi_bready : IN STD_LOGIC; s_axi_araddr : IN STD_LOGIC_VECTOR(8 DOWNTO 0); s_axi_arvalid : IN STD_LOGIC; s_axi_arready : OUT STD_LOGIC; s_axi_rdata : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_rresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_rvalid : OUT STD_LOGIC; s_axi_rready : IN STD_LOGIC; sda_i : IN STD_LOGIC; sda_o : OUT STD_LOGIC; sda_t : OUT STD_LOGIC; scl_i : IN STD_LOGIC; scl_o : OUT STD_LOGIC; scl_t : OUT STD_LOGIC; gpo : OUT STD_LOGIC_VECTOR(0 DOWNTO 0) ); END system_axi_iic_0_0; ARCHITECTURE system_axi_iic_0_0_arch OF system_axi_iic_0_0 IS ATTRIBUTE DowngradeIPIdentifiedWarnings : STRING; ATTRIBUTE DowngradeIPIdentifiedWarnings OF system_axi_iic_0_0_arch: ARCHITECTURE IS "yes"; COMPONENT axi_iic IS GENERIC ( C_FAMILY : STRING; C_S_AXI_ADDR_WIDTH : INTEGER; C_S_AXI_DATA_WIDTH : INTEGER; C_IIC_FREQ : INTEGER; C_TEN_BIT_ADR : INTEGER; C_GPO_WIDTH : INTEGER; C_S_AXI_ACLK_FREQ_HZ : INTEGER; C_SCL_INERTIAL_DELAY : INTEGER; C_SDA_INERTIAL_DELAY : INTEGER; C_SDA_LEVEL : INTEGER; C_SMBUS_PMBUS_HOST : INTEGER; C_DEFAULT_VALUE : STD_LOGIC_VECTOR(7 DOWNTO 0) ); PORT ( s_axi_aclk : IN STD_LOGIC; s_axi_aresetn : IN STD_LOGIC; iic2intc_irpt : OUT STD_LOGIC; s_axi_awaddr : IN STD_LOGIC_VECTOR(8 DOWNTO 0); s_axi_awvalid : IN STD_LOGIC; s_axi_awready : OUT STD_LOGIC; s_axi_wdata : IN STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_wstrb : IN STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_wvalid : IN STD_LOGIC; s_axi_wready : OUT STD_LOGIC; s_axi_bresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_bvalid : OUT STD_LOGIC; s_axi_bready : IN STD_LOGIC; s_axi_araddr : IN STD_LOGIC_VECTOR(8 DOWNTO 0); s_axi_arvalid : IN STD_LOGIC; s_axi_arready : OUT STD_LOGIC; s_axi_rdata : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_rresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_rvalid : OUT STD_LOGIC; s_axi_rready : IN STD_LOGIC; sda_i : IN STD_LOGIC; sda_o : OUT STD_LOGIC; sda_t : OUT STD_LOGIC; scl_i : IN STD_LOGIC; scl_o : OUT STD_LOGIC; scl_t : OUT STD_LOGIC; gpo : OUT STD_LOGIC_VECTOR(0 DOWNTO 0) ); END COMPONENT axi_iic; ATTRIBUTE X_INTERFACE_INFO : STRING; ATTRIBUTE X_INTERFACE_INFO OF s_axi_aclk: SIGNAL IS "xilinx.com:signal:clock:1.0 S_AXI_ACLK CLK"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_aresetn: SIGNAL IS "xilinx.com:signal:reset:1.0 S_AXI_ARESETN RST"; ATTRIBUTE X_INTERFACE_INFO OF iic2intc_irpt: SIGNAL IS "xilinx.com:signal:interrupt:1.0 INTERRUPT INTERRUPT"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_awaddr: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI AWADDR"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_awvalid: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI AWVALID"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_awready: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI AWREADY"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_wdata: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI WDATA"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_wstrb: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI WSTRB"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_wvalid: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI WVALID"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_wready: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI WREADY"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_bresp: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI BRESP"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_bvalid: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI BVALID"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_bready: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI BREADY"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_araddr: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI ARADDR"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_arvalid: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI ARVALID"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_arready: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI ARREADY"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_rdata: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI RDATA"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_rresp: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI RRESP"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_rvalid: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI RVALID"; ATTRIBUTE X_INTERFACE_INFO OF s_axi_rready: SIGNAL IS "xilinx.com:interface:aximm:1.0 S_AXI RREADY"; ATTRIBUTE X_INTERFACE_INFO OF sda_i: SIGNAL IS "xilinx.com:interface:iic:1.0 IIC SDA_I"; ATTRIBUTE X_INTERFACE_INFO OF sda_o: SIGNAL IS "xilinx.com:interface:iic:1.0 IIC SDA_O"; ATTRIBUTE X_INTERFACE_INFO OF sda_t: SIGNAL IS "xilinx.com:interface:iic:1.0 IIC SDA_T"; ATTRIBUTE X_INTERFACE_INFO OF scl_i: SIGNAL IS "xilinx.com:interface:iic:1.0 IIC SCL_I"; ATTRIBUTE X_INTERFACE_INFO OF scl_o: SIGNAL IS "xilinx.com:interface:iic:1.0 IIC SCL_O"; ATTRIBUTE X_INTERFACE_INFO OF scl_t: SIGNAL IS "xilinx.com:interface:iic:1.0 IIC SCL_T"; BEGIN U0 : axi_iic GENERIC MAP ( C_FAMILY => "artix7", C_S_AXI_ADDR_WIDTH => 9, C_S_AXI_DATA_WIDTH => 32, C_IIC_FREQ => 100000, C_TEN_BIT_ADR => 0, C_GPO_WIDTH => 1, C_S_AXI_ACLK_FREQ_HZ => 100000000, C_SCL_INERTIAL_DELAY => 0, C_SDA_INERTIAL_DELAY => 0, C_SDA_LEVEL => 1, C_SMBUS_PMBUS_HOST => 0, C_DEFAULT_VALUE => X"00" ) PORT MAP ( s_axi_aclk => s_axi_aclk, s_axi_aresetn => s_axi_aresetn, iic2intc_irpt => iic2intc_irpt, s_axi_awaddr => s_axi_awaddr, s_axi_awvalid => s_axi_awvalid, s_axi_awready => s_axi_awready, s_axi_wdata => s_axi_wdata, s_axi_wstrb => s_axi_wstrb, s_axi_wvalid => s_axi_wvalid, s_axi_wready => s_axi_wready, s_axi_bresp => s_axi_bresp, s_axi_bvalid => s_axi_bvalid, s_axi_bready => s_axi_bready, s_axi_araddr => s_axi_araddr, s_axi_arvalid => s_axi_arvalid, s_axi_arready => s_axi_arready, s_axi_rdata => s_axi_rdata, s_axi_rresp => s_axi_rresp, s_axi_rvalid => s_axi_rvalid, s_axi_rready => s_axi_rready, sda_i => sda_i, sda_o => sda_o, sda_t => sda_t, scl_i => scl_i, scl_o => scl_o, scl_t => scl_t, gpo => gpo ); END system_axi_iic_0_0_arch;
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; --This component add or substracts a fixed value from the coordenates to rotate them before applying cordic entity preprocessor is generic(TOTAL_BITS: integer := 32); port( x_in: in std_logic_vector(TOTAL_BITS - 1 downto 0) := (others => '0'); y_in: in std_logic_vector(TOTAL_BITS - 1 downto 0) := (others => '0'); angle_in : in std_logic_vector(TOTAL_BITS - 1 downto 0) := (others => '0'); x_out: out std_logic_vector(TOTAL_BITS - 1 downto 0) := (others => '0'); y_out: out std_logic_vector(TOTAL_BITS - 1 downto 0) := (others => '0'); angle_out: out std_logic_vector(TOTAL_BITS - 1 downto 0) := (others => '0') ); end preprocessor; architecture preprocessor_arq of preprocessor is begin process (x_in, y_in, angle_in) is variable angle_int : integer := 0; variable fractional_angle_part : std_logic_vector((TOTAL_BITS/2) - 1 downto 0) := (others => '0'); variable x_int : integer := 0; variable y_int : integer := 0; variable tmp_int: integer := 0; begin angle_int := to_integer(signed(angle_in(TOTAL_BITS - 1 downto TOTAL_BITS/2))); --Get only the integer part, not the factional part fractional_angle_part := angle_in((TOTAL_BITS/2) - 1 downto 0); x_int := to_integer(signed(x_in)); y_int := to_integer(signed(y_in)); if(angle_int > 180) then angle_int := angle_int - 360; elsif (angle_int < -180) then angle_int := 360 + angle_int; end if; if(angle_int > 90) then tmp_int := x_int; x_int := -y_int; y_int := tmp_int; angle_int := angle_int - 90; elsif(angle_int < -90) then tmp_int := y_int; y_int := -x_int; x_int := tmp_int; angle_int := angle_int + 90; end if; angle_out <= std_logic_vector(to_signed(angle_int,TOTAL_BITS/2)) & fractional_angle_part; x_out <= std_logic_vector(to_signed(x_int,TOTAL_BITS)); y_out <= std_logic_vector(to_signed(y_int,TOTAL_BITS)); end process; end architecture;
-------------------------------------------------------------------------------- -- Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved. -------------------------------------------------------------------------------- -- ____ ____ -- / /\/ / -- /___/ \ / Vendor: Xilinx -- \ \ \/ Version : 14.4 -- \ \ Application : xaw2vhdl -- / / Filename : DCM_A.vhd -- /___/ /\ Timestamp : 03/01/2013 20:52:34 -- \ \ / \ -- \___\/\___\ -- --Command: xaw2vhdl-intstyle /home/dmb/papilio/projects/VGATest/ipcore_dir/DCM_A.xaw -st DCM_A.vhd --Design Name: DCM_A --Device: xc3s500e-5vq100 -- -- Module DCM_A -- Generated by Xilinx Architecture Wizard -- Written for synthesis tool: XST -- Period Jitter (unit interval) for block DCM_SP_INST = 0.06 UI -- Period Jitter (Peak-to-Peak) for block DCM_SP_INST = 1.45 ns library ieee; use ieee.std_logic_1164.ALL; use ieee.numeric_std.ALL; library UNISIM; use UNISIM.Vcomponents.ALL; entity DCM_A is port ( CLKIN_IN : in std_logic; CLKFX_OUT : out std_logic; LOCKED_OUT : out std_logic); end DCM_A; architecture BEHAVIORAL of DCM_A is signal CLKFX_BUF : std_logic; signal GND_BIT : std_logic; begin GND_BIT <= '0'; CLKFX_BUFG_INST : BUFG port map (I=>CLKFX_BUF, O=>CLKFX_OUT); DCM_SP_INST : DCM_SP generic map( CLK_FEEDBACK => "NONE", CLKDV_DIVIDE => 2.0, CLKFX_DIVIDE => 18, CLKFX_MULTIPLY => 25, CLKIN_DIVIDE_BY_2 => FALSE, CLKIN_PERIOD => 31.250, CLKOUT_PHASE_SHIFT => "NONE", DESKEW_ADJUST => "SYSTEM_SYNCHRONOUS", DFS_FREQUENCY_MODE => "LOW", DLL_FREQUENCY_MODE => "LOW", DUTY_CYCLE_CORRECTION => TRUE, FACTORY_JF => x"C080", PHASE_SHIFT => 0, STARTUP_WAIT => FALSE) port map (CLKFB=>GND_BIT, CLKIN=>CLKIN_IN, DSSEN=>GND_BIT, PSCLK=>GND_BIT, PSEN=>GND_BIT, PSINCDEC=>GND_BIT, RST=>GND_BIT, CLKDV=>open, CLKFX=>CLKFX_BUF, CLKFX180=>open, CLK0=>open, CLK2X=>open, CLK2X180=>open, CLK90=>open, CLK180=>open, CLK270=>open, LOCKED=>LOCKED_OUT, PSDONE=>open, STATUS=>open); end BEHAVIORAL;
-------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 10:02:22 11/04/2008 -- Design Name: myHiLoRegister -- Module Name: C:/temp/VHDLFall2008/MIPS32Mult/myHiLoRegister_tb.vhd -- Project Name: MIPS32Mult -- Target Device: -- Tool versions: -- Description: -- -- VHDL Test Bench Created by ISE for module: myHiLoRegister -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- -- Notes: -- This testbench has been automatically generated using types std_logic and -- std_logic_vector for the ports of the unit under test. Xilinx recommends -- that these types always be used for the top-level I/O of a design in order -- to guarantee that the testbench will bind correctly to the post-implementation -- simulation model. -------------------------------------------------------------------------------- LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.std_logic_unsigned.all; USE ieee.numeric_std.ALL; ENTITY myHiLoRegister_tb_vhd IS END myHiLoRegister_tb_vhd; ARCHITECTURE behavior OF myHiLoRegister_tb_vhd IS -- Component Declaration for the Unit Under Test (UUT) COMPONENT myHiLoRegister PORT( INPUT : IN std_logic_vector(63 downto 0); writeData : IN std_logic; clk : IN std_logic; RESET : IN std_logic; OUTPUT : OUT std_logic_vector(63 downto 0) ); END COMPONENT; --Inputs SIGNAL writeData : std_logic := '0'; SIGNAL clk : std_logic := '0'; SIGNAL RESET : std_logic := '0'; SIGNAL INPUT : std_logic_vector(63 downto 0) := (others=>'0'); --Outputs SIGNAL OUTPUT : std_logic_vector(63 downto 0); BEGIN -- Instantiate the Unit Under Test (UUT) uut: myHiLoRegister PORT MAP( INPUT => INPUT, OUTPUT => OUTPUT, writeData => writeData, clk => clk, RESET => RESET ); tb : PROCESS BEGIN -- Wait 100 ns for global reset to finish wait for 100 ns; -- Place stimulus here -- Write the data into the HiLo Register INPUT <= X"AA55AA55AA55AA55"; writeData <= '1'; clk <= '1'; wait for 100 ns; -- The data are still available even after many clock cycles INPUT <= X"0000000000000000"; writeData <= '0'; clk <= '0'; wait for 100 ns; clk <= '1'; wait for 100 ns; clk <= '0'; wait for 100 ns; clk <= '1'; wait for 100 ns; clk <= '0'; wait for 100 ns; clk <= '1'; wait for 100 ns; wait; -- will wait forever END PROCESS; END;
entity tc11 is end; library ieee; use ieee.std_logic_1164.all; architecture behav of tc11 is signal clk : std_logic; signal tg : std_logic; begin process (clk) is begin if (tg) and falling_edge(clk) then null; end if; end process; end behav;
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity cpu6502 is port ( cpu_clk : in std_logic; cpu_reset : in std_logic; cpu_ready : in std_logic; cpu_write : out std_logic; cpu_wdata : out std_logic_vector(7 downto 0); cpu_rdata : in std_logic_vector(7 downto 0); cpu_addr : out std_logic_vector(16 downto 0); cpu_pc : out std_logic_vector(15 downto 0); IRQn : in std_logic; -- IRQ interrupt (level sensitive) NMIn : in std_logic; -- NMI interrupt (edge sensitive) SOn : in std_logic -- set Overflow flag ); attribute optimize : string; attribute optimize of cpu6502 : entity is "SPEED"; end cpu6502; architecture cycle_exact of cpu6502 is signal read_write_n : std_logic; begin core: entity work.proc_core generic map ( support_bcd => true ) port map( clock => cpu_clk, clock_en => cpu_ready, reset => cpu_reset, irq_n => IRQn, nmi_n => NMIn, so_n => SOn, pc_out => cpu_pc, addr_out => cpu_addr, data_in => cpu_rdata, data_out => cpu_wdata, read_write_n => read_write_n ); cpu_write <= not read_write_n; end cycle_exact;
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity cpu6502 is port ( cpu_clk : in std_logic; cpu_reset : in std_logic; cpu_ready : in std_logic; cpu_write : out std_logic; cpu_wdata : out std_logic_vector(7 downto 0); cpu_rdata : in std_logic_vector(7 downto 0); cpu_addr : out std_logic_vector(16 downto 0); cpu_pc : out std_logic_vector(15 downto 0); IRQn : in std_logic; -- IRQ interrupt (level sensitive) NMIn : in std_logic; -- NMI interrupt (edge sensitive) SOn : in std_logic -- set Overflow flag ); attribute optimize : string; attribute optimize of cpu6502 : entity is "SPEED"; end cpu6502; architecture cycle_exact of cpu6502 is signal read_write_n : std_logic; begin core: entity work.proc_core generic map ( support_bcd => true ) port map( clock => cpu_clk, clock_en => cpu_ready, reset => cpu_reset, irq_n => IRQn, nmi_n => NMIn, so_n => SOn, pc_out => cpu_pc, addr_out => cpu_addr, data_in => cpu_rdata, data_out => cpu_wdata, read_write_n => read_write_n ); cpu_write <= not read_write_n; end cycle_exact;
library ieee; use ieee.std_logic_1164.all; entity cmp_176 is port ( eq : out std_logic; in0 : in std_logic_vector(2 downto 0); in1 : in std_logic_vector(2 downto 0) ); end cmp_176; architecture augh of cmp_176 is signal tmp : std_logic; begin -- Compute the result tmp <= '0' when in0 /= in1 else '1'; -- Set the outputs eq <= tmp; end architecture;
library ieee; use ieee.std_logic_1164.all; entity cmp_176 is port ( eq : out std_logic; in0 : in std_logic_vector(2 downto 0); in1 : in std_logic_vector(2 downto 0) ); end cmp_176; architecture augh of cmp_176 is signal tmp : std_logic; begin -- Compute the result tmp <= '0' when in0 /= in1 else '1'; -- Set the outputs eq <= tmp; end architecture;
library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity number_shifter_tb is end entity; architecture number_shifter_tb_arq of number_shifter_tb is signal man_in : std_logic_vector(31 downto 0) := (others => '0'); signal sign_1_in : std_logic := '0'; signal sign_2_in : std_logic := '0'; signal greater_exp : std_logic_vector(5 downto 0) := (others => '0'); signal smaller_exp : std_logic_vector(5 downto 0) := (others => '0'); signal man_out : std_logic_vector(31 downto 0) := (others => '0'); signal rounding_bit : std_logic := '0'; component number_shifter is generic( BITS : natural := 32; EXP_BITS : natural := 6 ); port( sign_1_in : in std_logic; sign_2_in : in std_logic; greater_exp : in std_logic_vector(EXP_BITS - 1 downto 0); smaller_exp : in std_logic_vector(EXP_BITS - 1 downto 0); man_in : in std_logic_vector(BITS - 1 downto 0); man_out : out std_logic_vector(BITS - 1 downto 0); rounding_bit : out std_logic ); end component; for number_shifter_0 : number_shifter use entity work.number_shifter; begin number_shifter_0 : number_shifter generic map(BITS => 32, EXP_BITS => 6) port map( man_in => man_in, sign_1_in => sign_1_in, sign_2_in => sign_2_in, greater_exp => greater_exp, smaller_exp => smaller_exp, man_out => man_out, rounding_bit => rounding_bit ); process type pattern_type is record mi : std_logic_vector(31 downto 0); s1 : std_logic; s2 : std_logic; ge : std_logic_vector(5 downto 0); se : std_logic_vector(5 downto 0); mo : std_logic_vector(31 downto 0); rb : std_logic; end record; -- The patterns to apply. type pattern_array is array (natural range <>) of pattern_type; constant patterns : pattern_array := ( ("00000000000000000000000000000000",'0','0',"000000","000000","00000000000000000000000000000000",'0'), ("11000000000000000000000000000000",'0','0',"000001","000000","01100000000000000000000000000000",'0'), ("11000000000000000000000000000000",'1','0',"000001","000000","11100000000000000000000000000000",'0'), ("11000000000000000000000000000000",'1','1',"000001","000000","01100000000000000000000000000000",'0'), ("11000000000000000000000000000000",'0','1',"000001","000000","11100000000000000000000000000000",'0'), ("11000000000000000000000000000000",'0','0',"111111","000000","00000000000000000000000000000000",'0'), ("11000000000000000000000000000000",'0','1',"111111","000000","11111111111111111111111111111111",'1') ); begin for i in patterns'range loop -- Set the inputs. man_in <= patterns(i).mi; sign_1_in <= patterns(i).s1; sign_2_in <= patterns(i).s2; greater_exp <= patterns(i).ge; smaller_exp <= patterns(i).se; wait for 1 ns; assert patterns(i).mo = man_out report "BAD SHIFTING, GOT: " & integer'image(to_integer(unsigned(man_out))); assert patterns(i).rb = rounding_bit report "BAD ROUNDING BIT, GOT " & std_logic'image(rounding_bit); -- Check the outputs. end loop; assert false report "end of test" severity note; wait; end process; end;
-- NEED RESULT: ARCH00192.P17: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P16: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P15: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P14: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P13: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P12: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P11: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P10: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P9: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P8: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P7: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P6: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P5: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P4: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P3: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P2: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: ARCH00192.P1: Transaction occurred on signal asg with no time expression -- 0 ns assumed passed -- NEED RESULT: P17: Inertial transactions entirely completed passed -- NEED RESULT: P16: Inertial transactions entirely completed passed -- NEED RESULT: P15: Inertial transactions entirely completed passed -- NEED RESULT: P14: Inertial transactions entirely completed passed -- NEED RESULT: P13: Inertial transactions entirely completed passed -- NEED RESULT: P12: Inertial transactions entirely completed passed -- NEED RESULT: P11: Inertial transactions entirely completed passed -- NEED RESULT: P10: Inertial transactions entirely completed passed -- NEED RESULT: P9: Inertial transactions entirely completed passed -- NEED RESULT: P8: Inertial transactions entirely completed passed -- NEED RESULT: P7: Inertial transactions entirely completed passed -- NEED RESULT: P6: Inertial transactions entirely completed passed -- NEED RESULT: P5: Inertial transactions entirely completed passed -- NEED RESULT: P4: Inertial transactions entirely completed passed -- NEED RESULT: P3: Inertial transactions entirely completed passed -- NEED RESULT: P2: Inertial transactions entirely completed passed -- NEED RESULT: P1: Inertial transactions entirely completed passed ------------------------------------------------------------------------------- -- -- Copyright (c) 1989 by Intermetrics, Inc. -- All rights reserved. -- ------------------------------------------------------------------------------- -- -- TEST NAME: -- -- CT00192 -- -- AUTHOR: -- -- G. Tominovich -- -- TEST OBJECTIVES: -- -- 8.3.1 (1) -- -- DESIGN UNIT ORDERING: -- -- E00000(ARCH00192) -- ENT00192_Test_Bench(ARCH00192_Test_Bench) -- -- REVISION HISTORY: -- -- 09-JUL-1987 - initial revision -- -- NOTES: -- -- self-checking -- automatically generated -- use WORK.STANDARD_TYPES.all ; architecture ARCH00192 of E00000 is subtype chk_sig_type is integer range -1 to 100 ; signal chk_boolean : chk_sig_type := -1 ; signal chk_bit : chk_sig_type := -1 ; signal chk_severity_level : chk_sig_type := -1 ; signal chk_character : chk_sig_type := -1 ; signal chk_st_enum1 : chk_sig_type := -1 ; signal chk_integer : chk_sig_type := -1 ; signal chk_st_int1 : chk_sig_type := -1 ; signal chk_time : chk_sig_type := -1 ; signal chk_st_phys1 : chk_sig_type := -1 ; signal chk_real : chk_sig_type := -1 ; signal chk_st_real1 : chk_sig_type := -1 ; signal chk_st_rec1 : chk_sig_type := -1 ; signal chk_st_rec2 : chk_sig_type := -1 ; signal chk_st_rec3 : chk_sig_type := -1 ; signal chk_st_arr1 : chk_sig_type := -1 ; signal chk_st_arr2 : chk_sig_type := -1 ; signal chk_st_arr3 : chk_sig_type := -1 ; -- signal s_boolean : boolean := c_boolean_1 ; signal s_bit : bit := c_bit_1 ; signal s_severity_level : severity_level := c_severity_level_1 ; signal s_character : character := c_character_1 ; signal s_st_enum1 : st_enum1 := c_st_enum1_1 ; signal s_integer : integer := c_integer_1 ; signal s_st_int1 : st_int1 := c_st_int1_1 ; signal s_time : time := c_time_1 ; signal s_st_phys1 : st_phys1 := c_st_phys1_1 ; signal s_real : real := c_real_1 ; signal s_st_real1 : st_real1 := c_st_real1_1 ; signal s_st_rec1 : st_rec1 := c_st_rec1_1 ; signal s_st_rec2 : st_rec2 := c_st_rec2_1 ; signal s_st_rec3 : st_rec3 := c_st_rec3_1 ; signal s_st_arr1 : st_arr1 := c_st_arr1_1 ; signal s_st_arr2 : st_arr2 := c_st_arr2_1 ; signal s_st_arr3 : st_arr3 := c_st_arr3_1 ; -- begin PGEN_CHKP_1 : process ( chk_boolean ) begin if Std.Standard.Now > 0 ns then test_report ( "P1" , "Inertial transactions entirely completed", chk_boolean = 1 ) ; end if ; end process PGEN_CHKP_1 ; -- P1 : process ( s_boolean ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_boolean <= c_boolean_2 ; -- when 1 => correct := s_boolean = c_boolean_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P1" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P1" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_boolean <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P1 ; -- PGEN_CHKP_2 : process ( chk_bit ) begin if Std.Standard.Now > 0 ns then test_report ( "P2" , "Inertial transactions entirely completed", chk_bit = 1 ) ; end if ; end process PGEN_CHKP_2 ; -- P2 : process ( s_bit ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_bit <= c_bit_2 ; -- when 1 => correct := s_bit = c_bit_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P2" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P2" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_bit <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P2 ; -- PGEN_CHKP_3 : process ( chk_severity_level ) begin if Std.Standard.Now > 0 ns then test_report ( "P3" , "Inertial transactions entirely completed", chk_severity_level = 1 ) ; end if ; end process PGEN_CHKP_3 ; -- P3 : process ( s_severity_level ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_severity_level <= c_severity_level_2 ; -- when 1 => correct := s_severity_level = c_severity_level_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P3" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P3" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_severity_level <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P3 ; -- PGEN_CHKP_4 : process ( chk_character ) begin if Std.Standard.Now > 0 ns then test_report ( "P4" , "Inertial transactions entirely completed", chk_character = 1 ) ; end if ; end process PGEN_CHKP_4 ; -- P4 : process ( s_character ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_character <= c_character_2 ; -- when 1 => correct := s_character = c_character_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P4" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P4" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_character <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P4 ; -- PGEN_CHKP_5 : process ( chk_st_enum1 ) begin if Std.Standard.Now > 0 ns then test_report ( "P5" , "Inertial transactions entirely completed", chk_st_enum1 = 1 ) ; end if ; end process PGEN_CHKP_5 ; -- P5 : process ( s_st_enum1 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_enum1 <= c_st_enum1_2 ; -- when 1 => correct := s_st_enum1 = c_st_enum1_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P5" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P5" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_enum1 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P5 ; -- PGEN_CHKP_6 : process ( chk_integer ) begin if Std.Standard.Now > 0 ns then test_report ( "P6" , "Inertial transactions entirely completed", chk_integer = 1 ) ; end if ; end process PGEN_CHKP_6 ; -- P6 : process ( s_integer ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_integer <= c_integer_2 ; -- when 1 => correct := s_integer = c_integer_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P6" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P6" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_integer <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P6 ; -- PGEN_CHKP_7 : process ( chk_st_int1 ) begin if Std.Standard.Now > 0 ns then test_report ( "P7" , "Inertial transactions entirely completed", chk_st_int1 = 1 ) ; end if ; end process PGEN_CHKP_7 ; -- P7 : process ( s_st_int1 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_int1 <= c_st_int1_2 ; -- when 1 => correct := s_st_int1 = c_st_int1_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P7" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P7" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_int1 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P7 ; -- PGEN_CHKP_8 : process ( chk_time ) begin if Std.Standard.Now > 0 ns then test_report ( "P8" , "Inertial transactions entirely completed", chk_time = 1 ) ; end if ; end process PGEN_CHKP_8 ; -- P8 : process ( s_time ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_time <= c_time_2 ; -- when 1 => correct := s_time = c_time_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P8" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P8" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_time <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P8 ; -- PGEN_CHKP_9 : process ( chk_st_phys1 ) begin if Std.Standard.Now > 0 ns then test_report ( "P9" , "Inertial transactions entirely completed", chk_st_phys1 = 1 ) ; end if ; end process PGEN_CHKP_9 ; -- P9 : process ( s_st_phys1 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_phys1 <= c_st_phys1_2 ; -- when 1 => correct := s_st_phys1 = c_st_phys1_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P9" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P9" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_phys1 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P9 ; -- PGEN_CHKP_10 : process ( chk_real ) begin if Std.Standard.Now > 0 ns then test_report ( "P10" , "Inertial transactions entirely completed", chk_real = 1 ) ; end if ; end process PGEN_CHKP_10 ; -- P10 : process ( s_real ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_real <= c_real_2 ; -- when 1 => correct := s_real = c_real_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P10" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P10" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_real <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P10 ; -- PGEN_CHKP_11 : process ( chk_st_real1 ) begin if Std.Standard.Now > 0 ns then test_report ( "P11" , "Inertial transactions entirely completed", chk_st_real1 = 1 ) ; end if ; end process PGEN_CHKP_11 ; -- P11 : process ( s_st_real1 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_real1 <= c_st_real1_2 ; -- when 1 => correct := s_st_real1 = c_st_real1_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P11" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P11" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_real1 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P11 ; -- PGEN_CHKP_12 : process ( chk_st_rec1 ) begin if Std.Standard.Now > 0 ns then test_report ( "P12" , "Inertial transactions entirely completed", chk_st_rec1 = 1 ) ; end if ; end process PGEN_CHKP_12 ; -- P12 : process ( s_st_rec1 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_rec1 <= c_st_rec1_2 ; -- when 1 => correct := s_st_rec1 = c_st_rec1_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P12" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P12" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_rec1 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P12 ; -- PGEN_CHKP_13 : process ( chk_st_rec2 ) begin if Std.Standard.Now > 0 ns then test_report ( "P13" , "Inertial transactions entirely completed", chk_st_rec2 = 1 ) ; end if ; end process PGEN_CHKP_13 ; -- P13 : process ( s_st_rec2 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_rec2 <= c_st_rec2_2 ; -- when 1 => correct := s_st_rec2 = c_st_rec2_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P13" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P13" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_rec2 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P13 ; -- PGEN_CHKP_14 : process ( chk_st_rec3 ) begin if Std.Standard.Now > 0 ns then test_report ( "P14" , "Inertial transactions entirely completed", chk_st_rec3 = 1 ) ; end if ; end process PGEN_CHKP_14 ; -- P14 : process ( s_st_rec3 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_rec3 <= c_st_rec3_2 ; -- when 1 => correct := s_st_rec3 = c_st_rec3_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P14" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P14" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_rec3 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P14 ; -- PGEN_CHKP_15 : process ( chk_st_arr1 ) begin if Std.Standard.Now > 0 ns then test_report ( "P15" , "Inertial transactions entirely completed", chk_st_arr1 = 1 ) ; end if ; end process PGEN_CHKP_15 ; -- P15 : process ( s_st_arr1 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_arr1 <= c_st_arr1_2 ; -- when 1 => correct := s_st_arr1 = c_st_arr1_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P15" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P15" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_arr1 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P15 ; -- PGEN_CHKP_16 : process ( chk_st_arr2 ) begin if Std.Standard.Now > 0 ns then test_report ( "P16" , "Inertial transactions entirely completed", chk_st_arr2 = 1 ) ; end if ; end process PGEN_CHKP_16 ; -- P16 : process ( s_st_arr2 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_arr2 <= c_st_arr2_2 ; -- when 1 => correct := s_st_arr2 = c_st_arr2_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P16" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P16" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_arr2 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P16 ; -- PGEN_CHKP_17 : process ( chk_st_arr3 ) begin if Std.Standard.Now > 0 ns then test_report ( "P17" , "Inertial transactions entirely completed", chk_st_arr3 = 1 ) ; end if ; end process PGEN_CHKP_17 ; -- P17 : process ( s_st_arr3 ) variable correct : boolean ; variable counter : integer := 0 ; variable savtime : time ; begin case counter is when 0 => s_st_arr3 <= c_st_arr3_2 ; -- when 1 => correct := s_st_arr3 = c_st_arr3_2 and savtime = Std.Standard.Now ; test_report ( "ARCH00192.P17" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", correct ) ; -- when others => -- No more transactions should have occurred test_report ( "ARCH00192.P17" , "Transaction occurred on signal asg with no " & " time expression -- 0 ns assumed", false ) ; -- end case ; -- savtime := Std.Standard.Now ; chk_st_arr3 <= transport counter after (1 us - savtime) ; counter := counter + 1; -- end process P17 ; -- -- end ARCH00192 ; -- entity ENT00192_Test_Bench is end ENT00192_Test_Bench ; -- architecture ARCH00192_Test_Bench of ENT00192_Test_Bench is begin L1: block component UUT end component ; for CIS1 : UUT use entity WORK.E00000 ( ARCH00192 ) ; begin CIS1 : UUT ; end block L1 ; end ARCH00192_Test_Bench ;
package issue155 is type W_TYPE is record A : integer; B : integer; C : integer; end record; constant W : W_TYPE := (A => 8, B => 4, C => 2); signal A : bit_vector(W.A-1 downto 0); signal B : bit_vector(W.B-1 downto 0); signal C : bit_vector(W.C-1 downto 0); constant V : W_TYPE := (1, 2, 3); signal D : bit_vector(V.C-1 downto V.A); end package;
package issue155 is type W_TYPE is record A : integer; B : integer; C : integer; end record; constant W : W_TYPE := (A => 8, B => 4, C => 2); signal A : bit_vector(W.A-1 downto 0); signal B : bit_vector(W.B-1 downto 0); signal C : bit_vector(W.C-1 downto 0); constant V : W_TYPE := (1, 2, 3); signal D : bit_vector(V.C-1 downto V.A); end package;
package issue155 is type W_TYPE is record A : integer; B : integer; C : integer; end record; constant W : W_TYPE := (A => 8, B => 4, C => 2); signal A : bit_vector(W.A-1 downto 0); signal B : bit_vector(W.B-1 downto 0); signal C : bit_vector(W.C-1 downto 0); constant V : W_TYPE := (1, 2, 3); signal D : bit_vector(V.C-1 downto V.A); end package;
-------------------------------------------------------------------------- -- -- Copyright (C) 1993, Peter J. Ashenden -- Mail: Dept. Computer Science -- University of Adelaide, SA 5005, Australia -- e-mail: petera@cs.adelaide.edu.au -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 1, or (at your option) -- any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -- -------------------------------------------------------------------------- -- -- $RCSfile: cache.vhdl,v $ $Revision: 2.1 $ $Date: 1993/11/02 21:42:34 $ -- -------------------------------------------------------------------------- -- -- Entity declaration for cache. -- use work.dlx_types.all, work.mem_types.all, work.cache_types.all; entity cache is generic (cache_size : positive; -- in bytes, power of 2 line_size : positive; -- in bytes, power of 2 associativity : positive; -- 1 = direct mapped write_strategy : strategy_type; -- write_through or copy_back Tpd_clk_out : Time; -- clock to output propagation delay tag : string := ""; origin_x, origin_y : real := 0.0); port (phi1, phi2 : in bit; -- 2-phase non-overlapping clocks reset : in bit; -- synchronous reset input -- connections to CPU cpu_enable : in bit; -- starts memory cycle cpu_width : in mem_width; -- byte/halfword/word indicator cpu_write : in bit; -- selects read or write cycle cpu_ready : out bit; -- status from memory system cpu_a : in dlx_address; -- address bus output cpu_d : inout dlx_word_bus bus; -- bidirectional data bus -- connections to memory mem_enable : out bit; -- starts memory cycle mem_width : out mem_width; -- byte/halfword/word indicator mem_write : out bit; -- selects read or write cycle mem_burst : out bit; -- tell memory to burst txfer mem_ready : in bit; -- status from memory system mem_a : out dlx_address; -- address bus output mem_d : inout dlx_word_bus bus); -- bidirectional data bus end cache;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 11:01:00 06/11/2011 -- Design Name: -- Module Name: UDP_integration_example - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; use work.axi.all; use work.ipv4_types.all; use work.arp_types.all; entity UDP_integration_example is port ( -- System signals ------------------ reset : in std_logic; -- asynchronous reset clk_in_p : in std_logic; -- 200MHz clock input from board clk_in_n : in std_logic; -- System controls ------------------ PBTX : in std_logic; PB_DO_SECOND_TX : in std_logic; DO_SECOND_TX_LED : out std_logic; UDP_RX : out std_logic; UDP_Start : out std_logic; PBTX_LED : out std_logic; TX_Started : out std_logic; TX_Completed : out std_logic; TX_RSLT_0 : out std_logic; TX_RSLT_1 : out std_logic; reset_leds : in std_logic; display : out std_logic_vector(7 downto 0); -- GMII Interface ----------------- phy_resetn : out std_logic; gmii_txd : out std_logic_vector(7 downto 0); gmii_tx_en : out std_logic; gmii_tx_er : out std_logic; gmii_tx_clk : out std_logic; gmii_rxd : in std_logic_vector(7 downto 0); gmii_rx_dv : in std_logic; gmii_rx_er : in std_logic; gmii_rx_clk : in std_logic; gmii_col : in std_logic; gmii_crs : in std_logic; mii_tx_clk : in std_logic ); end UDP_integration_example; architecture Behavioral of UDP_integration_example is ------------------------------------------------------------------------------ -- Component Declaration for the complete UDP layer ------------------------------------------------------------------------------ component UDP_Complete generic ( CLOCK_FREQ : integer := 125000000; -- freq of data_in_clk -- needed to timout cntr ARP_TIMEOUT : integer := 60; -- ARP response timeout (s) ARP_MAX_PKT_TMO : integer := 5; -- # wrong nwk pkts received before set error MAX_ARP_ENTRIES : integer := 255 -- max entries in the ARP store ); Port ( -- UDP TX signals udp_tx_start : in std_logic; -- indicates req to tx UDP udp_txi : in udp_tx_type; -- UDP tx cxns udp_tx_result : out std_logic_vector (1 downto 0);-- tx status (changes during transmission) udp_tx_data_out_ready: out std_logic; -- indicates udp_tx is ready to take data -- UDP RX signals udp_rx_start : out std_logic; -- indicates receipt of udp header udp_rxo : out udp_rx_type; -- IP RX signals ip_rx_hdr : out ipv4_rx_header_type; -- system signals clk_in_p : in std_logic; -- 200MHz clock input from board clk_in_n : in std_logic; clk_out : out std_logic; reset : in STD_LOGIC; our_ip_address : in STD_LOGIC_VECTOR (31 downto 0); our_mac_address : in std_logic_vector (47 downto 0); control : in udp_control_type; -- status signals arp_pkt_count : out STD_LOGIC_VECTOR(7 downto 0); -- count of arp pkts received ip_pkt_count : out STD_LOGIC_VECTOR(7 downto 0); -- number of IP pkts received for us -- GMII Interface phy_resetn : out std_logic; gmii_txd : out std_logic_vector(7 downto 0); gmii_tx_en : out std_logic; gmii_tx_er : out std_logic; gmii_tx_clk : out std_logic; gmii_rxd : in std_logic_vector(7 downto 0); gmii_rx_dv : in std_logic; gmii_rx_er : in std_logic; gmii_rx_clk : in std_logic; gmii_col : in std_logic; gmii_crs : in std_logic; mii_tx_clk : in std_logic ); end component; -- for UDP_block : UDP_Complete use configuration work.UDP_Complete.udpc_multi_slot_arp; type state_type is (IDLE, WAIT_RX_DONE, DATA_OUT, PAUSE, CHECK_SECOND_TX, SET_SEC_HDR); type count_mode_type is (RST, INCR, HOLD); type set_clr_type is (SET, CLR, HOLD); type sec_tx_ctrl_type is (CLR,PRIME,DO,HOLD); -- system signals signal clk_int : std_logic; signal our_mac : STD_LOGIC_VECTOR (47 downto 0); signal our_ip : STD_LOGIC_VECTOR (31 downto 0); signal udp_tx_int : udp_tx_type; signal udp_tx_result_int : std_logic_vector (1 downto 0); signal udp_tx_data_out_ready_int : std_logic; signal udp_rx_int : udp_rx_type; signal udp_tx_start_int : std_logic; signal udp_rx_start_int : std_logic; signal arp_pkt_count_int : STD_LOGIC_VECTOR(7 downto 0); signal ip_pkt_count_int : STD_LOGIC_VECTOR(7 downto 0); signal ip_rx_hdr_int : ipv4_rx_header_type; -- state signals signal state : state_type; signal count : unsigned (7 downto 0); signal tx_hdr : udp_tx_header_type; signal tx_start_reg : std_logic; signal tx_started_reg : std_logic; signal tx_fin_reg : std_logic; signal prime_second_tx : std_logic; -- if want to do a 2nd tx after the first signal do_second_tx : std_logic; -- if need to do a 2nd tx as next tx -- control signals signal next_state : state_type; signal set_state : std_logic; signal set_count : count_mode_type; signal set_hdr : std_logic; signal set_tx_start : set_clr_type; signal set_last : std_logic; signal set_tx_started : set_clr_type; signal set_tx_fin : set_clr_type; signal first_byte_rx : STD_LOGIC_VECTOR(7 downto 0); signal control_int : udp_control_type; signal set_second_tx : sec_tx_ctrl_type; begin process ( our_ip, our_mac, udp_tx_result_int, udp_rx_int, udp_tx_start_int, udp_rx_start_int, ip_rx_hdr_int, udp_tx_int, count, clk_int, ip_pkt_count_int, arp_pkt_count_int, reset, tx_started_reg, tx_fin_reg, tx_start_reg, state, prime_second_tx, do_second_tx, set_second_tx, PB_DO_SECOND_TX, do_second_tx ) begin -- set up our local addresses and default controls our_ip <= x"c0a80119"; -- 192.168.1.25 our_mac <= x"002320212223"; control_int.ip_controls.arp_controls.clear_cache <= '0'; -- determine RX good and error LEDs if udp_rx_int.hdr.is_valid = '1' then UDP_RX <= '1'; else UDP_RX <= '0'; end if; UDP_Start <= udp_rx_start_int; TX_Started <= tx_start_reg; --tx_started_reg; TX_Completed <= tx_fin_reg; TX_RSLT_0 <= udp_tx_result_int(0); TX_RSLT_1 <= udp_tx_result_int(1); DO_SECOND_TX_LED <= prime_second_tx; -- set display leds to show IP pkt rx count on 7..4 and arp rx count on 3..0 display (7 downto 4) <= ip_pkt_count_int (3 downto 0); -- display (3 downto 0) <= arp_pkt_count_int (3 downto 0); case state is when IDLE => display (3 downto 0) <= "0001"; when WAIT_RX_DONE => display (3 downto 0) <= "0010"; when DATA_OUT => display (3 downto 0) <= "0011"; when PAUSE => display (3 downto 0) <= "0100"; when CHECK_SECOND_TX => display (3 downto 0) <= "0101"; when SET_SEC_HDR => display (3 downto 0) <= "0110"; end case; end process; -- AUTO TX process - on receipt of any UDP pkt, send a response. data sent is modified if a broadcast was received. -- TX response process - COMB tx_proc_combinatorial: process( -- inputs udp_rx_start_int, udp_rx_int, udp_tx_data_out_ready_int, udp_tx_result_int, ip_rx_hdr_int, udp_tx_int.data.data_out_valid, PBTX, PB_DO_SECOND_TX, -- state state, count, tx_hdr, tx_start_reg, tx_started_reg, tx_fin_reg, prime_second_tx, do_second_tx, -- controls next_state, set_state, set_count, set_hdr, set_tx_start, set_last, set_tx_started, set_tx_fin, first_byte_rx, set_second_tx ) begin -- set output_followers udp_tx_int.hdr <= tx_hdr; udp_tx_int.data.data_out_last <= set_last; udp_tx_start_int <= tx_start_reg; -- set control signal defaults next_state <= IDLE; set_state <= '0'; set_count <= HOLD; set_hdr <= '0'; set_tx_start <= HOLD; set_last <= '0'; set_tx_started <= HOLD; set_tx_fin <= HOLD; first_byte_rx <= (others => '0'); udp_tx_int.data.data_out <= (others => '0'); udp_tx_int.data.data_out_valid <= '0'; set_second_tx <= HOLD; if PB_DO_SECOND_TX = '1' then set_second_tx <= PRIME; end if; -- FSM case state is when IDLE => udp_tx_int.data.data_out_valid <= '0'; if udp_rx_start_int = '1' or PBTX = '1' then if udp_rx_start_int = '1' then first_byte_rx <= udp_rx_int.data.data_in; else first_byte_rx <= x"00"; end if; set_tx_fin <= CLR; set_count <= RST; set_hdr <= '1'; if udp_rx_int.data.data_in_last = '1' then set_tx_started <= SET; set_tx_start <= SET; next_state <= DATA_OUT; set_state <= '1'; else next_state <= WAIT_RX_DONE; set_state <= '1'; end if; end if; when WAIT_RX_DONE => -- wait until RX pkt fully received if udp_rx_int.data.data_in_last = '1' then set_tx_started <= SET; set_tx_start <= SET; next_state <= DATA_OUT; set_state <= '1'; end if; when DATA_OUT => if udp_tx_result_int = UDPTX_RESULT_ERR then -- have an error from the IP TX layer, clear down the TX set_tx_start <= CLR; set_tx_fin <= SET; set_tx_started <= CLR; set_second_tx <= CLR; next_state <= IDLE; set_state <= '1'; else if udp_tx_result_int = UDPTX_RESULT_SENDING then set_tx_start <= CLR; -- reset out start req as soon as we know we are sending end if; if ip_rx_hdr_int.is_broadcast = '1' then udp_tx_int.data.data_out <= std_logic_vector(count) or x"50"; else udp_tx_int.data.data_out <= std_logic_vector(count) or x"40"; end if; udp_tx_int.data.data_out_valid <= udp_tx_data_out_ready_int; if udp_tx_data_out_ready_int = '1' then if unsigned(count) = x"03" then set_last <= '1'; set_tx_fin <= SET; set_tx_started <= CLR; next_state <= PAUSE; set_state <= '1'; else set_count <= INCR; end if; end if; end if; when PAUSE => next_state <= CHECK_SECOND_TX; set_state <= '1'; when CHECK_SECOND_TX => if prime_second_tx = '1' then set_second_tx <= DO; next_state <= SET_SEC_HDR; set_state <= '1'; else set_second_tx <= CLR; next_state <= IDLE; set_state <= '1'; end if; when SET_SEC_HDR => set_hdr <= '1'; set_tx_started <= SET; set_tx_start <= SET; next_state <= DATA_OUT; set_state <= '1'; end case; end process; -- TX response process - SEQ tx_proc_sequential: process(clk_int) begin if rising_edge(clk_int) then if reset = '1' then -- reset state variables state <= IDLE; count <= x"00"; tx_start_reg <= '0'; tx_hdr.dst_ip_addr <= (others => '0'); tx_hdr.dst_port <= (others => '0'); tx_hdr.src_port <= (others => '0'); tx_hdr.data_length <= (others => '0'); tx_hdr.checksum <= (others => '0'); tx_started_reg <= '0'; tx_fin_reg <= '0'; PBTX_LED <= '0'; do_second_tx <= '0'; prime_second_tx <= '0'; else PBTX_LED <= PBTX; -- Next rx_state processing if set_state = '1' then state <= next_state; else state <= state; end if; -- count processing case set_count is when RST => count <= x"00"; when INCR => count <= count + 1; when HOLD => count <= count; end case; -- set tx hdr if set_hdr = '1' then -- select the dst addr of the tx: -- if do_second_tx, to solaris box -- otherwise control according to first byte of received data: -- B = broadcast -- C = to dummy address to test timeout -- D to solaris box -- otherwise, direct to sender if do_second_tx = '1' then tx_hdr.dst_ip_addr <= x"c0a80005"; -- set dst to solaris box at 192.168.0.5 elsif first_byte_rx = x"42" then tx_hdr.dst_ip_addr <= IP_BC_ADDR; -- send to Broadcast addr elsif first_byte_rx = x"43" then tx_hdr.dst_ip_addr <= x"c0bbccdd"; -- set dst unknown so get ARP timeout elsif first_byte_rx = x"44" then tx_hdr.dst_ip_addr <= x"c0a80005"; -- set dst to solaris box at 192.168.0.5 else tx_hdr.dst_ip_addr <= udp_rx_int.hdr.src_ip_addr; -- reply to sender end if; tx_hdr.dst_port <= udp_rx_int.hdr.src_port; tx_hdr.src_port <= udp_rx_int.hdr.dst_port; tx_hdr.data_length <= x"0004"; tx_hdr.checksum <= x"0000"; else tx_hdr <= tx_hdr; end if; -- set tx start signal case set_tx_start is when SET => tx_start_reg <= '1'; when CLR => tx_start_reg <= '0'; when HOLD => tx_start_reg <= tx_start_reg; end case; -- set tx started signal case set_tx_started is when SET => tx_started_reg <= '1'; when CLR => tx_started_reg <= '0'; when HOLD => tx_started_reg <= tx_started_reg; end case; -- set tx finished signal case set_tx_fin is when SET => tx_fin_reg <= '1'; when CLR => tx_fin_reg <= '0'; when HOLD => tx_fin_reg <= tx_fin_reg; end case; -- set do_second_tx case set_second_tx is when PRIME => prime_second_tx <= '1'; when DO => prime_second_tx <= '0'; do_second_tx <= '1'; when CLR => prime_second_tx <= '0'; do_second_tx <= '0'; when HOLD => prime_second_tx <= prime_second_tx; do_second_tx <= do_second_tx; end case; end if; end if; end process; ------------------------------------------------------------------------------ -- Instantiate the UDP layer ------------------------------------------------------------------------------ UDP_block : UDP_Complete generic map ( ARP_TIMEOUT => 10 -- timeout in seconds ) PORT MAP ( -- UDP interface udp_tx_start => udp_tx_start_int, udp_txi => udp_tx_int, udp_tx_result => udp_tx_result_int, udp_tx_data_out_ready=> udp_tx_data_out_ready_int, udp_rx_start => udp_rx_start_int, udp_rxo => udp_rx_int, -- IP RX signals ip_rx_hdr => ip_rx_hdr_int, -- System interface clk_in_p => clk_in_p, clk_in_n => clk_in_n, clk_out => clk_int, reset => reset, our_ip_address => our_ip, our_mac_address => our_mac, control => control_int, -- status signals arp_pkt_count => arp_pkt_count_int, ip_pkt_count => ip_pkt_count_int, -- GMII Interface ----------------- phy_resetn => phy_resetn, gmii_txd => gmii_txd, gmii_tx_en => gmii_tx_en, gmii_tx_er => gmii_tx_er, gmii_tx_clk => gmii_tx_clk, gmii_rxd => gmii_rxd, gmii_rx_dv => gmii_rx_dv, gmii_rx_er => gmii_rx_er, gmii_rx_clk => gmii_rx_clk, gmii_col => gmii_col, gmii_crs => gmii_crs, mii_tx_clk => mii_tx_clk ); end Behavioral;
-- ---------------------------------------------------------------------- -- DspUnit : Advanced So(P)C Sequential Signal Processor -- Copyright (C) 2007-2010 by Adrien LELONG (www.lelongdunet.com) -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the -- Free Software Foundation, Inc., -- 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- ---------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.dspunit_pac.all; use work.dspalu_pac.all; ------------------------------------------------------------------------------- entity dsplut is port ( --@inputs clk : in std_logic; lut_in : in std_logic_vector((lut_in_width - 1) downto 0); lut_select : in std_logic_vector((lut_sel_width - 1) downto 0); --@outputs; lut_out : out std_logic_vector((lut_out_width - 1) downto 0) ); end dsplut; --=---------------------------------------------------------------------------- architecture archi_dsplut of dsplut is ----------------------------------------------------------------------------- -- @constants definition ----------------------------------------------------------------------------- --=-------------------------------------------------------------------------- -- -- @component declarations -- ----------------------------------------------------------------------------- component gen_rom generic ( addr_width : natural; data_width : natural; init_file : string ); port ( address : in std_logic_vector((addr_width - 1) downto 0); clk : in std_logic; q : out std_logic_vector((data_width - 1) downto 0) ); end component; --=-------------------------------------------------------------------------- -- @signals definition ----------------------------------------------------------------------------- signal s_cos_out : std_logic_vector((lut_out_width - 1) downto 0); signal s_cos_addr : std_logic_vector((lut_in_width - 3) downto 0); signal s_cos_rom_out : std_logic_vector((lut_out_width - 1) downto 0); signal s_quart : std_logic_vector(1 downto 0); signal s_quart_r1 : std_logic_vector(1 downto 0); signal s_quart_r2 : std_logic_vector(1 downto 0); begin -- archs_dsplut ----------------------------------------------------------------------------- -- -- @instantiations -- ----------------------------------------------------------------------------- cos_rom : gen_rom generic map ( addr_width => lut_in_width - 2, data_width => lut_out_width, init_file => "cos.mif") port map ( address => s_cos_addr, clk => clk, q => s_cos_rom_out); --=--------------------------------------------------------------------------- pipe : process (clk) begin -- process pipe if rising_edge(clk) then -- rising clock edge s_quart_r2 <= s_quart_r1; s_quart_r1 <= s_quart; end if; end process pipe; --=--------------------------------------------------------------------------- -- -- @concurrent signal assignments -- ----------------------------------------------------------------------------- s_quart <= lut_in((lut_in_width - 1) downto (lut_in_width - 2)); s_cos_addr <= lut_in((lut_in_width - 3) downto 0) when s_quart(0) = '0' else not lut_in((lut_in_width - 3) downto 0); s_cos_out <= s_cos_rom_out when s_quart_r2(1) = '0' else not s_cos_rom_out; lut_out <= (others => '0') when lut_select = lutsel_none else s_cos_out when lut_select = lutsel_cos else s_cos_out when lut_select = lutsel_sin else (others => '0'); end archi_dsplut; -------------------------------------------------------------------------------
-- ---------------------------------------------------------------------- -- DspUnit : Advanced So(P)C Sequential Signal Processor -- Copyright (C) 2007-2010 by Adrien LELONG (www.lelongdunet.com) -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the -- Free Software Foundation, Inc., -- 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- ---------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.dspunit_pac.all; use work.dspalu_pac.all; ------------------------------------------------------------------------------- entity dsplut is port ( --@inputs clk : in std_logic; lut_in : in std_logic_vector((lut_in_width - 1) downto 0); lut_select : in std_logic_vector((lut_sel_width - 1) downto 0); --@outputs; lut_out : out std_logic_vector((lut_out_width - 1) downto 0) ); end dsplut; --=---------------------------------------------------------------------------- architecture archi_dsplut of dsplut is ----------------------------------------------------------------------------- -- @constants definition ----------------------------------------------------------------------------- --=-------------------------------------------------------------------------- -- -- @component declarations -- ----------------------------------------------------------------------------- component gen_rom generic ( addr_width : natural; data_width : natural; init_file : string ); port ( address : in std_logic_vector((addr_width - 1) downto 0); clk : in std_logic; q : out std_logic_vector((data_width - 1) downto 0) ); end component; --=-------------------------------------------------------------------------- -- @signals definition ----------------------------------------------------------------------------- signal s_cos_out : std_logic_vector((lut_out_width - 1) downto 0); signal s_cos_addr : std_logic_vector((lut_in_width - 3) downto 0); signal s_cos_rom_out : std_logic_vector((lut_out_width - 1) downto 0); signal s_quart : std_logic_vector(1 downto 0); signal s_quart_r1 : std_logic_vector(1 downto 0); signal s_quart_r2 : std_logic_vector(1 downto 0); begin -- archs_dsplut ----------------------------------------------------------------------------- -- -- @instantiations -- ----------------------------------------------------------------------------- cos_rom : gen_rom generic map ( addr_width => lut_in_width - 2, data_width => lut_out_width, init_file => "cos.mif") port map ( address => s_cos_addr, clk => clk, q => s_cos_rom_out); --=--------------------------------------------------------------------------- pipe : process (clk) begin -- process pipe if rising_edge(clk) then -- rising clock edge s_quart_r2 <= s_quart_r1; s_quart_r1 <= s_quart; end if; end process pipe; --=--------------------------------------------------------------------------- -- -- @concurrent signal assignments -- ----------------------------------------------------------------------------- s_quart <= lut_in((lut_in_width - 1) downto (lut_in_width - 2)); s_cos_addr <= lut_in((lut_in_width - 3) downto 0) when s_quart(0) = '0' else not lut_in((lut_in_width - 3) downto 0); s_cos_out <= s_cos_rom_out when s_quart_r2(1) = '0' else not s_cos_rom_out; lut_out <= (others => '0') when lut_select = lutsel_none else s_cos_out when lut_select = lutsel_cos else s_cos_out when lut_select = lutsel_sin else (others => '0'); end archi_dsplut; -------------------------------------------------------------------------------
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: ch_16_fg_16_14.vhd,v 1.2 2001-10-26 16:29:36 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- -- not in book entity example_entity is end entity example_entity; -- end not in book architecture contrived of example_entity is constant sig_width : positive := 16; signal s1, s2, s3 : bit_vector (0 to sig_width - 1); signal sel : bit; -- . . . begin mux : block is generic ( width : positive ); generic map ( width => sig_width ); port ( d0, d1 : in bit_vector(0 to width - 1); y : out bit_vector(0 to width - 1); sel : in bit); port map ( d0 => s1, d1=> s2, y => s3, sel => sel ); constant zero : bit_vector(0 to width - 1) := ( others => '0' ); signal gated_d0, gated_d1 : bit_vector(0 to width - 1); begin gated_d0 <= d0 when sel = '0' else zero; gated_d1 <= d1 when sel = '1' else zero; y <= gated_d0 or gated_d1; end block mux; -- . . . -- not in book stimulus : process is begin s1 <= X"1111"; s2 <= X"2222"; sel <= '0'; wait for 10 ns; s1 <= X"0101"; wait for 10 ns; s2 <= X"0202"; wait for 10 ns; sel <= '1'; wait for 10 ns; s1 <= X"0001"; wait for 10 ns; s2 <= X"0002"; wait for 10 ns; wait; end process stimulus; -- end not in book end architecture contrived;
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: ch_16_fg_16_14.vhd,v 1.2 2001-10-26 16:29:36 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- -- not in book entity example_entity is end entity example_entity; -- end not in book architecture contrived of example_entity is constant sig_width : positive := 16; signal s1, s2, s3 : bit_vector (0 to sig_width - 1); signal sel : bit; -- . . . begin mux : block is generic ( width : positive ); generic map ( width => sig_width ); port ( d0, d1 : in bit_vector(0 to width - 1); y : out bit_vector(0 to width - 1); sel : in bit); port map ( d0 => s1, d1=> s2, y => s3, sel => sel ); constant zero : bit_vector(0 to width - 1) := ( others => '0' ); signal gated_d0, gated_d1 : bit_vector(0 to width - 1); begin gated_d0 <= d0 when sel = '0' else zero; gated_d1 <= d1 when sel = '1' else zero; y <= gated_d0 or gated_d1; end block mux; -- . . . -- not in book stimulus : process is begin s1 <= X"1111"; s2 <= X"2222"; sel <= '0'; wait for 10 ns; s1 <= X"0101"; wait for 10 ns; s2 <= X"0202"; wait for 10 ns; sel <= '1'; wait for 10 ns; s1 <= X"0001"; wait for 10 ns; s2 <= X"0002"; wait for 10 ns; wait; end process stimulus; -- end not in book end architecture contrived;
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs 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. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: ch_16_fg_16_14.vhd,v 1.2 2001-10-26 16:29:36 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- -- not in book entity example_entity is end entity example_entity; -- end not in book architecture contrived of example_entity is constant sig_width : positive := 16; signal s1, s2, s3 : bit_vector (0 to sig_width - 1); signal sel : bit; -- . . . begin mux : block is generic ( width : positive ); generic map ( width => sig_width ); port ( d0, d1 : in bit_vector(0 to width - 1); y : out bit_vector(0 to width - 1); sel : in bit); port map ( d0 => s1, d1=> s2, y => s3, sel => sel ); constant zero : bit_vector(0 to width - 1) := ( others => '0' ); signal gated_d0, gated_d1 : bit_vector(0 to width - 1); begin gated_d0 <= d0 when sel = '0' else zero; gated_d1 <= d1 when sel = '1' else zero; y <= gated_d0 or gated_d1; end block mux; -- . . . -- not in book stimulus : process is begin s1 <= X"1111"; s2 <= X"2222"; sel <= '0'; wait for 10 ns; s1 <= X"0101"; wait for 10 ns; s2 <= X"0202"; wait for 10 ns; sel <= '1'; wait for 10 ns; s1 <= X"0001"; wait for 10 ns; s2 <= X"0002"; wait for 10 ns; wait; end process stimulus; -- end not in book end architecture contrived;
------------------------------------------------------------------------------ -- This file is a part of the GRLIB VHDL IP LIBRARY -- Copyright (C) 2003 - 2008, Gaisler Research -- Copyright (C) 2008 - 2014, Aeroflex Gaisler -- Copyright (C) 2015, Cobham Gaisler -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program 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. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ------------------------------------------------------------------------------- -- Entity: grsysmon -- File: grsysmon.vhd -- Author: Jan Andersson - Gaisler Research AB -- Description: Provides GRLIB AMBA AHB slave interface to Xilinx SYSMON library ieee; use ieee.std_logic_1164.all; library grlib, gaisler; use grlib.amba.all; use grlib.devices.all; use grlib.stdlib.all; use gaisler.misc.all; library techmap; use techmap.gencomp.all; entity grsysmon is generic ( -- GRLIB generics tech : integer := DEFFABTECH; hindex : integer := 0; -- AHB slave index hirq : integer := 0; -- Interrupt line caddr : integer := 16#000#; -- Base address for configuration area cmask : integer := 16#fff#; -- Area mask saddr : integer := 16#001#; -- Base address for sysmon register area smask : integer := 16#fff#; -- Area mask split : integer := 0; -- Enable AMBA SPLIT support extconvst : integer := 0; -- Use external CONVST signal wrdalign : integer := 0; -- Word align System Monitor registers -- Virtex 5 SYSMON generics INIT_40 : bit_vector := X"0000"; INIT_41 : bit_vector := X"0000"; INIT_42 : bit_vector := X"0800"; INIT_43 : bit_vector := X"0000"; INIT_44 : bit_vector := X"0000"; INIT_45 : bit_vector := X"0000"; INIT_46 : bit_vector := X"0000"; INIT_47 : bit_vector := X"0000"; INIT_48 : bit_vector := X"0000"; INIT_49 : bit_vector := X"0000"; INIT_4A : bit_vector := X"0000"; INIT_4B : bit_vector := X"0000"; INIT_4C : bit_vector := X"0000"; INIT_4D : bit_vector := X"0000"; INIT_4E : bit_vector := X"0000"; INIT_4F : bit_vector := X"0000"; INIT_50 : bit_vector := X"0000"; INIT_51 : bit_vector := X"0000"; INIT_52 : bit_vector := X"0000"; INIT_53 : bit_vector := X"0000"; INIT_54 : bit_vector := X"0000"; INIT_55 : bit_vector := X"0000"; INIT_56 : bit_vector := X"0000"; INIT_57 : bit_vector := X"0000"; SIM_MONITOR_FILE : string := "sysmon.txt"); port ( rstn : in std_ulogic; clk : in std_ulogic; ahbsi : in ahb_slv_in_type; ahbso : out ahb_slv_out_type; sysmoni : in grsysmon_in_type; sysmono : out grsysmon_out_type ); end grsysmon; architecture rtl of grsysmon is ----------------------------------------------------------------------------- -- Constants ----------------------------------------------------------------------------- constant REVISION : amba_version_type := 0; constant HCONFIG : ahb_config_type := ( 0 => ahb_device_reg(VENDOR_GAISLER, GAISLER_GRSYSMON, 0, REVISION, hirq), 4 => ahb_iobar(caddr, cmask), 5 => ahb_iobar(saddr, smask), others => zero32); -- BANKs constant CONF_BANK : integer := 0; constant SYSMON_BANK : integer := 1; -- Registers constant CONF_REG_OFF : std_ulogic := '0'; constant STAT_REG_OFF : std_ulogic := '1'; ----------------------------------------------------------------------------- -- Types ----------------------------------------------------------------------------- type sysmon_out_type is record alm : std_logic_vector(2 downto 0); busy : std_ulogic; channel : std_logic_vector(4 downto 0); do : std_logic_vector(15 downto 0); drdy : std_ulogic; eoc : std_ulogic; eos : std_ulogic; jtagbusy : std_ulogic; jtaglocked : std_ulogic; jtagmodified : std_ulogic; ot : std_ulogic; end record; type sysmon_in_type is record daddr : std_logic_vector(6 downto 0); den : std_ulogic; di : std_logic_vector(15 downto 0); dwe : std_ulogic; end record; type grsysmon_conf_reg_type is record ot_ien : std_ulogic; alm_ien : std_logic_vector(2 downto 0); convst : std_ulogic; eos_ien : std_ulogic; eoc_ien : std_ulogic; busy_ien : std_ulogic; jb_ien : std_ulogic; jl_ien : std_ulogic; jm_ien : std_ulogic; end record; type grsysmon_reg_type is record cfgreg : grsysmon_conf_reg_type; -- SYSMON den : std_ulogic; -- System monitor data enable sma : std_ulogic; -- System monitor access smr : std_ulogic; -- System monitor access ready -- AHB insplit : std_ulogic; -- SPLIT response issued unsplit : std_ulogic; -- SPLIT complete not issued irq : std_ulogic; -- Interrupt request hwrite : std_ulogic; hsel : std_ulogic; hmbsel : std_logic_vector(0 to 1); haddr : std_logic_vector(6 downto 0); hready : std_ulogic; srdata : std_logic_vector(15 downto 0); -- SYSMON response data rrdata : std_logic_vector(12 downto 0); -- Register response data hresp : std_logic_vector(1 downto 0); splmst : std_logic_vector(log2(NAHBMST)-1 downto 0); -- SPLIT:ed master hsplit : std_logic_vector(NAHBMST-1 downto 0); -- Other SPLIT:ed masters ahbcancel : std_ulogic; -- Locked access cancels ongoing SPLIT -- response end record; ----------------------------------------------------------------------------- -- Signals ----------------------------------------------------------------------------- signal r, rin : grsysmon_reg_type; signal syso : sysmon_out_type; signal sysi : sysmon_in_type; signal sysmon_rst : std_ulogic; signal lconvst : std_ulogic; begin -- rtl sysmon_rst <= not rstn; convstint: if extconvst = 0 generate lconvst <= r.cfgreg.convst; end generate convstint; convstext: if extconvst /= 0 generate lconvst <= sysmoni.convst; end generate convstext; ----------------------------------------------------------------------------- -- System monitor ----------------------------------------------------------------------------- macro0 : system_monitor generic map (tech => tech, INIT_40 => INIT_40, INIT_41 => INIT_41, INIT_42 => INIT_42, INIT_43 => INIT_43, INIT_44 => INIT_44, INIT_45 => INIT_45, INIT_46 => INIT_46, INIT_47 => INIT_47, INIT_48 => INIT_48, INIT_49 => INIT_49, INIT_4A => INIT_4A, INIT_4B => INIT_4B, INIT_4C => INIT_4C, INIT_4D => INIT_4D, INIT_4E => INIT_4E, INIT_4F => INIT_4F, INIT_50 => INIT_50, INIT_51 => INIT_51, INIT_52 => INIT_52, INIT_53 => INIT_53, INIT_54 => INIT_54, INIT_55 => INIT_55, INIT_56 => INIT_56, INIT_57 => INIT_57, SIM_MONITOR_FILE => SIM_MONITOR_FILE) port map (alm => syso.alm, busy => syso.busy, channel => syso.channel, do => syso.do, drdy => syso.drdy, eoc => syso.eoc, eos => syso.eos, jtagbusy => syso.jtagbusy, jtaglocked => syso.jtaglocked, jtagmodified => syso.jtagmodified, ot => syso.ot, convst => lconvst, convstclk => sysmoni.convstclk, daddr => sysi.daddr, dclk => clk, den => sysi.den, di => sysi.di, dwe => sysi.dwe, reset => sysmon_rst, vauxn => sysmoni.vauxn, vauxp => sysmoni.vauxp, vn => sysmoni.vn, vp => sysmoni.vp); ----------------------------------------------------------------------------- -- AMBA and control i/f ----------------------------------------------------------------------------- comb: process (r, rstn, ahbsi, syso) variable v : grsysmon_reg_type; variable irq : std_logic_vector((NAHBIRQ-1) downto 0); variable addr : std_logic_vector(7 downto 0); variable hsplit : std_logic_vector(NAHBMST-1 downto 0); variable regaddr : std_ulogic; variable hrdata : std_logic_vector(31 downto 0); variable hwdata : std_logic_vector(31 downto 0); begin -- process comb v := r; v.irq := '0'; irq := (others => '0'); irq(hirq) := r.irq; v.hresp := HRESP_OKAY; v.hready := '1'; v.den := '0'; regaddr := r.haddr(1-wrdalign); hsplit := (others => '0'); v.cfgreg.convst := '0'; hwdata := ahbreadword(ahbsi.hwdata, r.haddr(4 downto 2)); -- AHB communication if ahbsi.hready = '1' then if (ahbsi.hsel(hindex) and ahbsi.htrans(1)) = '1' then v.hmbsel := ahbsi.hmbsel(r.hmbsel'range); if split = 0 or (not r.sma or ahbsi.hmbsel(CONF_BANK) or ahbsi.hmastlock) = '1' then v.hready := ahbsi.hmbsel(CONF_BANK) and ahbsi.hwrite; v.hwrite := ahbsi.hwrite; v.haddr := ahbsi.haddr((7+wrdalign) downto (1+wrdalign)); v.hsel := '1'; if ahbsi.hmbsel(SYSMON_BANK) = '1' then v.den := not r.insplit; v.sma := '1'; if split /= 0 then if ahbsi.hmastlock = '0' then v.hresp := HRESP_SPLIT; v.splmst := ahbsi.hmaster; v.unsplit := '1'; else v.ahbcancel := r.insplit; end if; v.insplit := not ahbsi.hmastlock; end if; end if; else -- Core is busy, transfer is not locked and access was to sysmon -- registers. Respond with SPLIT or insert wait states v.hready := '0'; if split /= 0 then v.hresp := HRESP_SPLIT; v.hsplit(conv_integer(ahbsi.hmaster)) := '1'; end if; end if; else v.hsel := '0'; end if; end if; if (r.hready = '0') then if (r.hresp = HRESP_OKAY) then v.hready := '0'; else v.hresp := r.hresp; end if; end if; -- Read access to conf registers if (r.hsel and r.hmbsel(CONF_BANK)) = '1' then v.rrdata := (others => '0'); if r.hwrite = '0' then v.hready := '1'; v.hsel := '0'; end if; case regaddr is when CONF_REG_OFF => v.rrdata(12) := r.cfgreg.ot_ien; v.rrdata(11 downto 9) := r.cfgreg.alm_ien; if extconvst = 0 then v.rrdata(6) := r.cfgreg.convst; end if; v.rrdata(5) := r.cfgreg.eos_ien; v.rrdata(4) := r.cfgreg.eoc_ien; v.rrdata(3) := r.cfgreg.busy_ien; v.rrdata(2) := r.cfgreg.jb_ien; v.rrdata(1) := r.cfgreg.jl_ien; v.rrdata(0) := r.cfgreg.jm_ien; if r.hwrite = '1' then v.cfgreg.ot_ien := hwdata(12); v.cfgreg.alm_ien := hwdata(11 downto 9); if extconvst = 0 then v.cfgreg.convst := hwdata(6); end if; v.cfgreg.eos_ien := hwdata(5); v.cfgreg.eoc_ien := hwdata(4); v.cfgreg.busy_ien := hwdata(3); v.cfgreg.jb_ien := hwdata(2); v.cfgreg.jl_ien := hwdata(1); v.cfgreg.jm_ien := hwdata(0); end if; when STAT_REG_OFF => v.rrdata(12) := syso.ot; v.rrdata(11 downto 9) := syso.alm; v.rrdata(8 downto 4) := syso.channel; v.rrdata(3) := syso.busy; v.rrdata(2) := syso.jtagbusy; v.rrdata(1) := syso.jtaglocked; v.rrdata(0) := syso.jtagmodified; when others => null; end case; end if; -- SYSMON access finished if syso.drdy = '1' then v.srdata := syso.do; v.smr := '1'; end if; if (syso.drdy or r.smr) = '1' then if split /= 0 and r.unsplit = '1' then hsplit(conv_integer(r.splmst)) := '1'; v.unsplit := '0'; end if; if ((split = 0 or v.ahbcancel = '0') and (split = 0 or ahbsi.hmaster = r.splmst or r.insplit = '0') and -- (((split = 0 or r.insplit = '0') and r.hmbsel(SYSMON_BANK) = '1') or -- (split = 1 and ahbsi.hmbsel(SYSMON_BANK) = '1')) and (((ahbsi.hsel(hindex) and ahbsi.hready and ahbsi.htrans(1)) = '1') or ((split = 0 or r.insplit = '0') and r.hready = '0' and r.hresp = HRESP_OKAY))) then v.hresp := HRESP_OKAY; if split /= 0 then v.insplit := '0'; v.hsplit := r.hsplit; end if; v.hready := '1'; v.hsel := '0'; v.smr := '0'; v.sma := '0'; elsif split /= 0 and v.ahbcancel = '1' then v.den := '1'; v.smr := '0'; v.ahbcancel := '0'; end if; end if; -- Interrupts if (syso.ot and v.cfgreg.ot_ien) = '1' then v.irq := '1'; v.cfgreg.ot_ien := '0'; end if; for i in r.cfgreg.alm_ien'range loop if (syso.alm(i) and r.cfgreg.alm_ien(i)) = '1' then v.irq := '1'; v.cfgreg.alm_ien(i) := '0'; end if; end loop; -- i if (syso.eos and v.cfgreg.eos_ien) = '1' then v.irq := '1'; v.cfgreg.eos_ien := '0'; end if; if (syso.eoc and v.cfgreg.eoc_ien) = '1' then v.irq := '1'; v.cfgreg.eoc_ien := '0'; end if; if (syso.busy and v.cfgreg.busy_ien) = '1' then v.irq := '1'; v.cfgreg.busy_ien := '0'; end if; if (syso.jtagbusy and v.cfgreg.jb_ien) = '1' then v.irq := '1'; v.cfgreg.jb_ien := '0'; end if; if (syso.jtaglocked and v.cfgreg.jl_ien) = '1' then v.irq := '1'; v.cfgreg.jl_ien := '0'; end if; if (syso.jtagmodified and v.cfgreg.jm_ien) = '1' then v.irq := '1'; v.cfgreg.jm_ien := '0'; end if; -- Reset if rstn = '0' then v.cfgreg.ot_ien := '0'; v.cfgreg.alm_ien := (others => '0'); v.cfgreg.eos_ien := '0'; v.cfgreg.eoc_ien := '0'; v.cfgreg.busy_ien := '0'; v.cfgreg.jb_ien := '0'; v.cfgreg.jl_ien := '0'; v.cfgreg.jm_ien := '0'; v.sma := '0'; v.smr := '0'; v.insplit := '0'; v.unsplit := '0'; v.hready := '1'; v.hwrite := '0'; v.hsel := '0'; v.hmbsel := (others => '0'); v.ahbcancel := '0'; end if; if split = 0 then v.insplit := '0'; v.unsplit := '0'; v.splmst := (others => '0'); v.hsplit := (others => '0'); v.ahbcancel := '0'; end if; -- Update registers rin <= v; -- AHB slave output ahbso.hready <= r.hready; ahbso.hresp <= r.hresp; if r.hmbsel(CONF_BANK) = '1' then if wrdalign = 0 then hrdata := zero32(31 downto 13) & r.rrdata; else hrdata := '1' & zero32(30 downto 13) & r.rrdata; end if; else if wrdalign = 0 then hrdata := r.srdata & r.srdata; else hrdata := zero32(31 downto 16) & r.srdata; end if; end if; ahbso.hrdata <= ahbdrivedata(hrdata); ahbso.hconfig <= HCONFIG; ahbso.hirq <= irq; ahbso.hindex <= hindex; ahbso.hsplit <= hsplit; -- Signals to system monitor sysi.daddr <= r.haddr; sysi.den <= r.den; sysi.dwe <= r.hwrite; if wrdalign = 0 then if r.haddr(0) = '0' then sysi.di <= hwdata(31 downto 16); else sysi.di <= hwdata(15 downto 0); end if; else sysi.di <= hwdata(15 downto 0); end if; -- Signals from system monitor to core outputs sysmono.alm <= syso.alm; sysmono.ot <= syso.ot; sysmono.eoc <= syso.eoc; sysmono.eos <= syso.eos; sysmono.channel <= syso.channel; end process comb; reg: process (clk) begin -- process reg if rising_edge(clk) then r <= rin; end if; end process reg; -- Boot message -- pragma translate_off bootmsg : report_version generic map ( "grsysmon" & tost(hindex) & ": AMBA wrapper for System Monitor, rev " & tost(REVISION) & ", irq " & tost(hirq)); -- pragma translate_on end rtl;