signal mpod_b_txdis : std_logic_vector(11 downto 0);
signal mpod_c_txdis : std_logic_vector(11 downto 0);
signal mpod_d_txdis : std_logic_vector(11 downto 0);
+
+ signal hub_data_active : std_logic_vector(INTERFACE_NUM - 2 downto 0);
+ signal hub_data_out : std_logic_vector((INTERFACE_NUM * (2 * c_DATA_WIDTH)) - 2 downto 0);
+ signal hub_data_ready : std_logic_vector(INTERFACE_NUM - 2 downto 0);
+ signal hub_data_address_sender : std_logic_vector((INTERFACE_NUM * c_DATA_WIDTH) - 2 downto 0);
+ signal hub_data_seqnmbr : std_logic_vector((INTERFACE_NUM * 8) - 2 downto 0);
+ signal hub_data_length : std_logic_vector((INTERFACE_NUM * c_DATA_WIDTH) - 2 downto 0);
+
+ attribute MARK_DEBUG : string;
+ attribute KEEP : string;
+
+ attribute MARK_DEBUG of hub_data_active : signal is "true";
+ attribute MARK_DEBUG of hub_data_out : signal is "true";
+ attribute MARK_DEBUG of hub_data_ready : signal is "true";
+ attribute MARK_DEBUG of hub_data_address_sender : signal is "true";
+ attribute MARK_DEBUG of hub_data_seqnmbr : signal is "true";
+ attribute MARK_DEBUG of hub_data_length : signal is "true";
+
+ attribute KEEP of hub_data_active : signal is "true";
+ attribute KEEP of hub_data_out : signal is "true";
+ attribute KEEP of hub_data_ready : signal is "true";
+ attribute KEEP of hub_data_address_sender : signal is "true";
+ attribute KEEP of hub_data_seqnmbr : signal is "true";
+ attribute KEEP of hub_data_length : signal is "true";
begin
MPOD_RESET_N <= "1111";