aboutsummaryrefslogtreecommitdiffstats
path: root/usrp2/top
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-02-25 21:09:34 -0800
committerMatt Ettus <matt@ettus.com>2010-02-25 21:09:34 -0800
commite775ce6c17d1e43865cdd3f9472157d0d2d26b92 (patch)
treefd22c581044fa1f7c769809bbc13ff73279116e8 /usrp2/top
parent67dd6732b70c1cd35a7134f4830b09b893255935 (diff)
downloaduhd-e775ce6c17d1e43865cdd3f9472157d0d2d26b92.tar.gz
uhd-e775ce6c17d1e43865cdd3f9472157d0d2d26b92.tar.bz2
uhd-e775ce6c17d1e43865cdd3f9472157d0d2d26b92.zip
invert the pushbuttons since they are active low
Diffstat (limited to 'usrp2/top')
-rw-r--r--usrp2/top/u1e/u1e.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/top/u1e/u1e.v b/usrp2/top/u1e/u1e.v
index 066d02ca4..329d61aa9 100644
--- a/usrp2/top/u1e/u1e.v
+++ b/usrp2/top/u1e/u1e.v
@@ -21,9 +21,9 @@ module u1e
IBUFGDS #(.IOSTANDARD("LVDS_33"), .DIFF_TERM("TRUE"))
clk_fpga_pin (.O(clk_fpga),.I(CLK_FPGA_P),.IB(CLK_FPGA_N));
- u1e_core u1e_core(.clk_fpga(clk_fpga), .rst_fpga(debug_pb[2]),
+ u1e_core u1e_core(.clk_fpga(clk_fpga), .rst_fpga(~debug_pb[2]),
.debug_led(debug_led), .debug(debug), .debug_clk(debug_clk),
- .debug_pb(debug_pb), .dip_sw(dip_sw), .debug_txd(FPGA_TXD), .debug_rxd(FPGA_RXD),
+ .debug_pb(~debug_pb), .dip_sw(dip_sw), .debug_txd(FPGA_TXD), .debug_rxd(FPGA_RXD),
.EM_CLK(EM_CLK), .EM_D(EM_D), .EM_A(EM_A), .EM_NBE(EM_NBE),
.EM_WAIT0(EM_WAIT0), .EM_NCS4(EM_NCS4), .EM_NCS6(EM_NCS6),
.EM_NWE(EM_NWE), .EM_NOE(EM_NOE),