commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r10730 - gnuradio/trunk/usrp2/fpga/simple_gemac


From: matt
Subject: [Commit-gnuradio] r10730 - gnuradio/trunk/usrp2/fpga/simple_gemac
Date: Tue, 31 Mar 2009 20:27:01 -0600 (MDT)

Author: matt
Date: 2009-03-31 20:27:00 -0600 (Tue, 31 Mar 2009)
New Revision: 10730

Modified:
   gnuradio/trunk/usrp2/fpga/simple_gemac/address_filter.v
Log:
only report result for 1 cycle


Modified: gnuradio/trunk/usrp2/fpga/simple_gemac/address_filter.v
===================================================================
--- gnuradio/trunk/usrp2/fpga/simple_gemac/address_filter.v     2009-04-01 
02:26:19 UTC (rev 10729)
+++ gnuradio/trunk/usrp2/fpga/simple_gemac/address_filter.v     2009-04-01 
02:27:00 UTC (rev 10730)
@@ -24,6 +24,7 @@
           3 : af_state <= (data == address[23:16]) ? 4 : 7;
           4 : af_state <= (data == address[15:8])  ? 5 : 7;
           5 : af_state <= (data == address[7:0]) ? 6 : 7;
+          6, 7 : af_state <= 0;
         endcase // case (af_state)
 
    assign match  = (af_state==6);





reply via email to

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