From 7594ac0775b92c05516a47b52fc5a4c2c92b46a3 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Sun, 17 Oct 2021 02:13:14 -0700 Subject: [PATCH] Init and reset to same value --- rtl/eth_phy_10g_rx_ber_mon.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/eth_phy_10g_rx_ber_mon.v b/rtl/eth_phy_10g_rx_ber_mon.v index 50f9c8ed7..04f393916 100644 --- a/rtl/eth_phy_10g_rx_ber_mon.v +++ b/rtl/eth_phy_10g_rx_ber_mon.v @@ -63,7 +63,7 @@ localparam [1:0] SYNC_DATA = 2'b10, SYNC_CTRL = 2'b01; -reg [COUNT_WIDTH-1:0] time_count_reg = 0, time_count_next; +reg [COUNT_WIDTH-1:0] time_count_reg = COUNT_125US, time_count_next; reg [3:0] ber_count_reg = 4'd0, ber_count_next; reg rx_high_ber_reg = 1'b0, rx_high_ber_next;