]> jspc29.x-matter.uni-frankfurt.de Git - TOMcat.git/commitdiff
cleanup
authorMichael Boehmer <mboehmer@ph.tum.de>
Wed, 20 Jul 2022 07:53:04 +0000 (09:53 +0200)
committerMichael Boehmer <mboehmer@ph.tum.de>
Wed, 20 Jul 2022 07:53:04 +0000 (09:53 +0200)
gbe/tomcat_gbe.vhd

index fe49f2cdc923824c68f98d5855e738f8b22c21fb..ac9ecc0627bd08c5bdf53f4e6c2334923844d4fe 100644 (file)
@@ -165,6 +165,9 @@ architecture arch of tomcat_gbe is
   
   signal control_reg                : std_logic_vector(31 downto 0);
 
+  signal tick_ms_int                : std_logic;
+  signal tick_us_int                : std_logic;
+  
 begin
 
 ---------------------------------------------------------------------------
@@ -193,8 +196,8 @@ begin
     CLEAR_OUT         => clear_i,
     CLEAR_N_OUT       => clear_n_i,
     --
-    TICK_MS_OUT       => open, --tick_int,
-    TICK_US_OUT       => tick_int,
+    TICK_MS_OUT       => tick_ms_int,
+    TICK_US_OUT       => tick_us_int,
     --
     LED_RED_OUT       => open,
     LED_GREEN_OUT     => open
@@ -236,6 +239,7 @@ begin
     -- Status
     PCS_AN_READY_OUT      => pcs_an_ready,
     LINK_ACTIVE_OUT       => link_active,
+    TICK_MS_IN            => tick_us_int,
     -- Debug
     STATUS_OUT            => status(7 downto 0),
     DEBUG_OUT             => open --debug(63 downto 0) 
@@ -392,7 +396,7 @@ begin
     FWD_ENABLE_IN       => additional_reg(31),
     FWD_DELAY_IN        => control_reg(31 downto 16),
 --    FWD_SIZE_IN         => control_reg(15 downto 0),
-    FWD_START_IN        => tick_int,
+    FWD_START_IN        => tick_us_int,
     FWD_BUSY_OUT        => fwd_busy_int, --open
     --
     FWD_READY_IN        => fwd_ready_int,