From 1b713d8265d00b6ff1167d9d804a125cbfcb24ac Mon Sep 17 00:00:00 2001 From: Istvan Csomortani Date: Fri, 25 Sep 2020 09:39:08 +0100 Subject: [PATCH] axi_hdmi_tx: Update register initialization Quartus Standard 19.1 throw a critical warning for registers that have different reset and initial power-up level. Do not initialize those registers so we can get rid of the warning. --- library/common/up_hdmi_tx.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/common/up_hdmi_tx.v b/library/common/up_hdmi_tx.v index 219e34c05..964e2b8e9 100644 --- a/library/common/up_hdmi_tx.v +++ b/library/common/up_hdmi_tx.v @@ -88,7 +88,7 @@ module up_hdmi_tx #( // internal registers - reg up_core_preset = 'd0; + reg up_core_preset; reg [31:0] up_scratch = 'd0; reg up_resetn = 'd0; reg up_csc_bypass = 'd0; @@ -109,8 +109,8 @@ module up_hdmi_tx #( reg [15:0] up_vs_width = 'd0; reg [15:0] up_ve_max = 'd0; reg [15:0] up_ve_min = 'd0; - reg [23:0] up_clip_max = 'd0; - reg [23:0] up_clip_min = 'd0; + reg [23:0] up_clip_max; + reg [23:0] up_clip_min; // internal signals