diff options
author | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-04-01 02:27:00 +0000 |
---|---|---|
committer | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-04-01 02:27:00 +0000 |
commit | c230e35b188a22693cf470581386a0963f435034 (patch) | |
tree | 996b1f3cc71329816adcb1ab9db33075e05232d4 /simple_gemac | |
parent | 5349f9e670f53e243829c88e16b9bc7aaf4aa63f (diff) | |
download | uhd-c230e35b188a22693cf470581386a0963f435034.tar.gz uhd-c230e35b188a22693cf470581386a0963f435034.tar.bz2 uhd-c230e35b188a22693cf470581386a0963f435034.zip |
only report result for 1 cycle
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10730 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'simple_gemac')
-rw-r--r-- | simple_gemac/address_filter.v | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/simple_gemac/address_filter.v b/simple_gemac/address_filter.v index 2d2f4df51..50a52b954 100644 --- a/simple_gemac/address_filter.v +++ b/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); |