ad_data_out: Revert change (issue) inserted in commit 075ee05189

* Issue is with ODDR and ODDRE1 inputs D1 and D2

Signed-off-by: Iulia Moldovan <Iulia.Moldovan@analog.com>
main
Iulia Moldovan 2023-04-12 15:09:02 +03:00 committed by imoldovan
parent e0ab169fed
commit 9a91dd8857
1 changed files with 4 additions and 4 deletions

View File

@ -176,8 +176,8 @@ module ad_data_out #(
) i_tx_data_oddr ( ) i_tx_data_oddr (
.SR (1'b0), .SR (1'b0),
.C (tx_clk), .C (tx_clk),
.D1 (tx_data_p), .D1 (tx_data_n),
.D2 (tx_data_n), .D2 (tx_data_p),
.Q (tx_data_oddr_s)); .Q (tx_data_oddr_s));
end end
endgenerate endgenerate
@ -191,8 +191,8 @@ module ad_data_out #(
.R (1'b0), .R (1'b0),
.S (1'b0), .S (1'b0),
.C (tx_clk), .C (tx_clk),
.D1 (tx_data_p), .D1 (tx_data_n),
.D2 (tx_data_n), .D2 (tx_data_p),
.Q (tx_data_oddr_s)); .Q (tx_data_oddr_s));
end end
endgenerate endgenerate