diff --git a/modules/common/gc_fsm_watchdog.vhd b/modules/common/gc_fsm_watchdog.vhd
index 9c1b2c3dccb31b52622976464fb2f4a2787b4f58..9d57d80d5a0b9b08121bbc0b61516f2c79cb2086 100644
--- a/modules/common/gc_fsm_watchdog.vhd
+++ b/modules/common/gc_fsm_watchdog.vhd
@@ -66,7 +66,7 @@ architecture behav of gc_fsm_watchdog is
   --============================================================================
   -- Signal declarations
   --============================================================================
-  signal wdt : unsigned(f_log2_size(g_wdt_max)-1 downto 0);
+  signal wdt                : unsigned(f_log2_size(g_wdt_max)-1 downto 0);
 
 --==============================================================================
 --  architecture begin
@@ -84,7 +84,7 @@ begin
         fsm_rst_o <= '0';
       else
         wdt <= wdt + 1;
-        if (wdt = g_wdt_max) then
+        if (wdt = g_wdt_max-1) then
           fsm_rst_o <= '1';
         end if;
       end if;
diff --git a/sim/gc_fsm_watchdog/tb_gc_fsm_watchdog.vhd b/sim/gc_fsm_watchdog/tb_gc_fsm_watchdog.vhd
index 0e50d1c8e1695271ea9741dde067241c73ae273f..aef8372288c70b307a2ca4f3672f589845c52b55 100644
--- a/sim/gc_fsm_watchdog/tb_gc_fsm_watchdog.vhd
+++ b/sim/gc_fsm_watchdog/tb_gc_fsm_watchdog.vhd
@@ -61,7 +61,7 @@ architecture behav of tb_gc_fsm_watchdog is
   constant c_clk_per : time := 50 ns;
   constant c_reset_width : time := 112 ns;
 
-  constant c_fsm_time : positive := 32767;
+  constant c_fsm_time : positive := 32766;
 
   --============================================================================
   -- Signal declarations
@@ -105,7 +105,7 @@ begin
   DUT : gc_fsm_watchdog
   generic map
   (
-    g_wdt_max => 65536
+    g_wdt_max => 32768
   )
   port map
   (