From c19ed4c8ef150eda88b47e0bc1b68beea751aaf3 Mon Sep 17 00:00:00 2001 From: AndreiGrozav Date: Tue, 14 Jun 2016 14:30:28 +0300 Subject: [PATCH] axi_hdmi_tx_core: Fixed embedded sync synchronization signals --- library/axi_hdmi_tx/axi_hdmi_tx_core.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/axi_hdmi_tx/axi_hdmi_tx_core.v b/library/axi_hdmi_tx/axi_hdmi_tx_core.v index 8ce7afebf..6a3ff7bb9 100644 --- a/library/axi_hdmi_tx/axi_hdmi_tx_core.v +++ b/library/axi_hdmi_tx/axi_hdmi_tx_core.v @@ -582,8 +582,8 @@ module axi_hdmi_tx_core ( // hdmi embedded sync always @(posedge hdmi_clk) begin - hdmi_es_hs_de <= hdmi_16_hsync_d; - hdmi_es_vs_de <= hdmi_16_vsync_d; + hdmi_es_hs_de <= hdmi_16_hsync_data_e_d; + hdmi_es_vs_de <= hdmi_16_vsync_data_e_d; if (hdmi_16_data_e_d == 1'b0) begin hdmi_es_data[15:8] <= 8'h80; end else begin