commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r6458 - gnuradio/branches/developers/matt/u2f/control_


From: matt
Subject: [Commit-gnuradio] r6458 - gnuradio/branches/developers/matt/u2f/control_lib
Date: Mon, 17 Sep 2007 22:00:14 -0600 (MDT)

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)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]