gateware/rtl: Fix sysmgr_3 reset generation

Seems that having the reset not being 1 directly causes some
issue somewhere so fix it.

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2023-03-21 16:22:17 +01:00
parent c21605e845
commit 4cba7c201b
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ module sysmgr (
wire clk_led_i;
reg [7:0] rst_cnt = 8'h00;
reg rst_i;
reg rst_i = 1'b1;
wire rst_gbuf;
reg [2:0] sys_start_s;