diff options
author | Josh Blum <josh@joshknows.com> | 2011-05-09 16:47:04 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-05-09 16:47:04 -0700 |
commit | 91e32eaea25b023ec33b0efc80a653dac5a676df (patch) | |
tree | 0b1841b9a95a8ff22e47ec48387decd4005ca8db /fpga/usrp2/vrt/vita_tx_deframer.v | |
parent | 9daf1f0a7be5f6a2cc220e0c2f746e65dc649568 (diff) | |
parent | d8aae182ffdafdd61bbd0100f845d7c93e6ec591 (diff) | |
download | uhd-91e32eaea25b023ec33b0efc80a653dac5a676df.tar.gz uhd-91e32eaea25b023ec33b0efc80a653dac5a676df.tar.bz2 uhd-91e32eaea25b023ec33b0efc80a653dac5a676df.zip |
Merge branch 'next' into use_vita_length
Diffstat (limited to 'fpga/usrp2/vrt/vita_tx_deframer.v')
-rw-r--r-- | fpga/usrp2/vrt/vita_tx_deframer.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga/usrp2/vrt/vita_tx_deframer.v b/fpga/usrp2/vrt/vita_tx_deframer.v index eb39feaec..163c2af20 100644 --- a/fpga/usrp2/vrt/vita_tx_deframer.v +++ b/fpga/usrp2/vrt/vita_tx_deframer.v @@ -38,8 +38,8 @@ module vita_tx_deframer assign has_secs = ~(data_i[23:22]==2'b00); assign has_tics = ~(data_i[21:20]==2'b00); assign has_trailer = data_i[26]; - assign is_sob = data_i[25]; - assign is_eob = data_i[24]; + wire is_sob = data_i[25]; + wire is_eob = data_i[24]; wire eof = data_i[33]; reg has_streamid_reg, has_classid_reg, has_secs_reg, has_tics_reg; reg has_trailer_reg, is_sob_reg, is_eob_reg; |