diff options
Diffstat (limited to 'usrp2/top/B100/B100.v')
-rw-r--r-- | usrp2/top/B100/B100.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usrp2/top/B100/B100.v b/usrp2/top/B100/B100.v index dcda974b4..e333e82aa 100644 --- a/usrp2/top/B100/B100.v +++ b/usrp2/top/B100/B100.v @@ -143,13 +143,13 @@ module B100 always @(posedge clk_fpga) if(rxsync_0) begin - rx_i <= rx_b; - rx_q <= rx_a; + rx_i <= ~rx_b; + rx_q <= ~rx_a; end else begin - rx_i <= rx_a; - rx_q <= rx_b; + rx_i <= ~rx_a; + rx_q <= ~rx_b; end // ///////////////////////////////////////////////////////////////////////// |