From 9a91dd88579ea752f60b1992853ebad01ce70cc5 Mon Sep 17 00:00:00 2001 From: Iulia Moldovan Date: Wed, 12 Apr 2023 15:09:02 +0300 Subject: [PATCH] ad_data_out: Revert change (issue) inserted in commit 075ee05189cb285d66a35496c7eb9b044c380b11 * Issue is with ODDR and ODDRE1 inputs D1 and D2 Signed-off-by: Iulia Moldovan --- library/xilinx/common/ad_data_out.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/xilinx/common/ad_data_out.v b/library/xilinx/common/ad_data_out.v index e26b91075..b1f4c3e3f 100755 --- a/library/xilinx/common/ad_data_out.v +++ b/library/xilinx/common/ad_data_out.v @@ -176,8 +176,8 @@ module ad_data_out #( ) i_tx_data_oddr ( .SR (1'b0), .C (tx_clk), - .D1 (tx_data_p), - .D2 (tx_data_n), + .D1 (tx_data_n), + .D2 (tx_data_p), .Q (tx_data_oddr_s)); end endgenerate @@ -191,8 +191,8 @@ module ad_data_out #( .R (1'b0), .S (1'b0), .C (tx_clk), - .D1 (tx_data_p), - .D2 (tx_data_n), + .D1 (tx_data_n), + .D2 (tx_data_p), .Q (tx_data_oddr_s)); end endgenerate