From: matt Date: Wed, 1 Apr 2009 02:27:00 +0000 (+0000) Subject: only report result for 1 cycle X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f39f35fd9baecf52b696fa1b33f7945b8dfa8e24;p=debian%2Fgnuradio only report result for 1 cycle git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10730 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/usrp2/fpga/simple_gemac/address_filter.v b/usrp2/fpga/simple_gemac/address_filter.v index 2d2f4df5..50a52b95 100644 --- a/usrp2/fpga/simple_gemac/address_filter.v +++ b/usrp2/fpga/simple_gemac/address_filter.v @@ -24,6 +24,7 @@ module address_filter 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);