Author: matt
Date: 2007-09-17 22:00:14 -0600 (Mon, 17 Sep 2007)
New Revision: 6458
Modified:
gnuradio/branches/developers/matt/u2f/control_lib/longfifo.v
Log:
fix for full flag
Modified: gnuradio/branches/developers/matt/u2f/control_lib/longfifo.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/control_lib/longfifo.v
2007-09-17 22:25:52 UTC (rev 6457)
+++ gnuradio/branches/developers/matt/u2f/control_lib/longfifo.v
2007-09-18 04:00:14 UTC (rev 6458)
@@ -90,7 +90,7 @@
full_reg <= 0;
else if(read & ~write)
full_reg <= 0;
- else if(write & ~read & (wr_addr == (rd_addr-2)))
+ else if(write & ~read & (wr_addr == (rd_addr-3)))
full_reg <= 1;
/* always @(posedge clk)
_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio