diff options
author | Josh Blum <josh@joshknows.com> | 2012-01-27 13:20:34 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-01-27 13:20:34 -0800 |
commit | bcda4624deb5a81ba2ad338157c44855dab56397 (patch) | |
tree | 83a1157f7715dd05e426d9ab2d954d5f7cec0916 /usrp2/vrt/vita_tx_chain.v | |
parent | e633f884d728c24e6f5749d5821b9c62ec8fd17e (diff) | |
download | uhd-bcda4624deb5a81ba2ad338157c44855dab56397.tar.gz uhd-bcda4624deb5a81ba2ad338157c44855dab56397.tar.bz2 uhd-bcda4624deb5a81ba2ad338157c44855dab56397.zip |
dsp rework: implemented dsp changes for other top levels
added user registers into each toplevel (not used yet)
Diffstat (limited to 'usrp2/vrt/vita_tx_chain.v')
-rw-r--r-- | usrp2/vrt/vita_tx_chain.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/vrt/vita_tx_chain.v b/usrp2/vrt/vita_tx_chain.v index 1db16de63..07e143f19 100644 --- a/usrp2/vrt/vita_tx_chain.v +++ b/usrp2/vrt/vita_tx_chain.v @@ -30,6 +30,7 @@ module vita_tx_chain output [35:0] err_data_o, output err_src_rdy_o, input err_dst_rdy_i, output [31:0] sample, input strobe, output underrun, output run, + output clear_vita, output [31:0] debug); localparam MAXCHAN = 1; @@ -37,7 +38,6 @@ module vita_tx_chain wire [FIFOWIDTH-1:0] tx1_data; wire tx1_src_rdy, tx1_dst_rdy; - wire clear_vita; wire [31:0] streamid, message; wire trigger, sent; wire [31:0] debug_vtc, debug_vtd, debug_tx_dsp; |