aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp2/extramfifo/nobl_if.v
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-11-23 13:53:14 -0800
committerJosh Blum <josh@joshknows.com>2010-11-23 13:53:14 -0800
commit18ce33d2286a428705bc19e5dc091f2d6a6d4d5b (patch)
treec355fbde9d8804b29ab76bef7412874fe03955a1 /fpga/usrp2/extramfifo/nobl_if.v
parent30ce5acedd3e0dc6fc97d7597781a0a4828812f2 (diff)
parent74bb6b39d9a677e6a7a41b6e3d62488aa265f706 (diff)
downloaduhd-18ce33d2286a428705bc19e5dc091f2d6a6d4d5b.tar.gz
uhd-18ce33d2286a428705bc19e5dc091f2d6a6d4d5b.tar.bz2
uhd-18ce33d2286a428705bc19e5dc091f2d6a6d4d5b.zip
Merge branch 'fpga_next' into next
Conflicts: fpga/usrp2/top/u1e_passthru/.gitignore fpga/usrp2/top/u1e_passthru/Makefile fpga/usrp2/top/u2plus/.gitignore fpga/usrp2/top/u2plus/Makefile usrp2/top/u1e_passthru/.gitignore usrp2/top/u1e_passthru/Makefile
Diffstat (limited to 'fpga/usrp2/extramfifo/nobl_if.v')
-rw-r--r--fpga/usrp2/extramfifo/nobl_if.v9
1 files changed, 6 insertions, 3 deletions
diff --git a/fpga/usrp2/extramfifo/nobl_if.v b/fpga/usrp2/extramfifo/nobl_if.v
index adf9f165b..b5ebe9c6b 100644
--- a/fpga/usrp2/extramfifo/nobl_if.v
+++ b/fpga/usrp2/extramfifo/nobl_if.v
@@ -56,18 +56,21 @@ module nobl_if
address_pipe1 <= 0;
write_pipe1 <= 0;
data_out_pipe1 <= 0;
+ RAM_WEn <= 1;
+ RAM_CE1n <= 1;
+
end
else
begin
enable_pipe1 <= enable;
- RAM_CE1n <= ~enable; // Creates IOB flob
-
+ RAM_CE1n <= ~enable; // Creates IOB flop
+ RAM_WEn <= ~write; // Creates IOB flop
if (enable)
begin
address_pipe1 <= address_gray;
write_pipe1 <= write;
- RAM_WEn <= ~write; // Creates IOB flob
+// RAM_WEn <= ~write; // Creates IOB flop
if (write)