From f39f35fd9baecf52b696fa1b33f7945b8dfa8e24 Mon Sep 17 00:00:00 2001 From: matt Date: Wed, 1 Apr 2009 02:27:00 +0000 Subject: only report result for 1 cycle git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10730 221aa14e-8319-0410-a670-987f0aec2ac5 --- usrp2/fpga/simple_gemac/address_filter.v | 1 + 1 file changed, 1 insertion(+) (limited to 'usrp2') diff --git a/usrp2/fpga/simple_gemac/address_filter.v b/usrp2/fpga/simple_gemac/address_filter.v index 2d2f4df51..50a52b954 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); -- cgit