]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
*** empty log message ***
authorhadeshyp <hadeshyp>
Mon, 10 Dec 2007 10:41:43 +0000 (10:41 +0000)
committerhadeshyp <hadeshyp>
Mon, 10 Dec 2007 10:41:43 +0000 (10:41 +0000)
trb_net16_hub_logic.vhd

index c086fa8060221477c8e879eac736c1ebc66496a0..dd69809f12905f0a20be17bf525ed93fed468f74 100644 (file)
@@ -143,6 +143,7 @@ architecture trb_net16_hub_logic_arch of trb_net16_hub_logic is
   signal comb_REPLY_muxed_PACKET_NUM          : std_logic_vector(NUM_WIDTH-1 downto 0);
   signal reply_arbiter_CLK_EN                 : std_logic;
   signal init_arbiter_CLK_EN                  : std_logic;
+  signal init_arbiter_ENABLE                  : std_logic;
   signal init_arbiter_read_out                : std_logic_vector(POINT_NUMBER-1 downto 0);
   signal reply_arbiter_input                  : std_logic_vector(POINT_NUMBER-1 downto 0);
 
@@ -201,10 +202,11 @@ STAT_ERRORBITS <= REPLY_combined_trm_F1 & REPLY_combined_trm_F2;
       CLK_EN  => init_arbiter_CLK_EN,
       INPUT_IN  => INIT_DATAREADY_IN,
       RESULT_OUT => init_arbiter_read_out,
-      ENABLE  => not init_locked,
+      ENABLE  => init_arbiter_ENABLE,
       CTRL => (others => '0')
       );
   init_arbiter_CLK_EN <= not locked;
+  init_arbiter_ENABLE <= not init_locked;
 
 --Datapool for Init-Channel
   INIT_muxed_DATAREADY <= or_all(INIT_DATAREADY_IN) and not init_locked and INIT_muxed_READ;