diff options
author | Matt Ettus <matt@ettus.com> | 2011-06-15 17:33:42 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-06-15 17:33:42 -0700 |
commit | b986e58f4d8b202f37728b249cbc0d94e5a27b09 (patch) | |
tree | 5e29669524eba0007d22b9835ddf9ceb77e0e990 /usrp2/gpmc/gpmc_async.v | |
parent | 967637278132513f66be3cd505f77be88ee75691 (diff) | |
download | uhd-b986e58f4d8b202f37728b249cbc0d94e5a27b09.tar.gz uhd-b986e58f4d8b202f37728b249cbc0d94e5a27b09.tar.bz2 uhd-b986e58f4d8b202f37728b249cbc0d94e5a27b09.zip |
u1e: experimental rewrite of read path of gpmc
Diffstat (limited to 'usrp2/gpmc/gpmc_async.v')
-rw-r--r-- | usrp2/gpmc/gpmc_async.v | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usrp2/gpmc/gpmc_async.v b/usrp2/gpmc/gpmc_async.v index 4270abb5c..14bdd0fb0 100644 --- a/usrp2/gpmc/gpmc_async.v +++ b/usrp2/gpmc/gpmc_async.v @@ -117,12 +117,11 @@ module gpmc_async .datain(rx18_data), .src_rdy_i(rx18_src_rdy), .dst_rdy_o(rx18_dst_rdy), .space(rx_fifo_space), .dataout(rx18b_data), .src_rdy_o(rx18b_src_rdy), .dst_rdy_i(rx18b_dst_rdy), .occupied()); - fifo_to_gpmc_async fifo_to_gpmc_async + new_read new_read (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), .data_i(rx18b_data), .src_rdy_i(rx18b_src_rdy), .dst_rdy_o(rx18b_dst_rdy), .EM_D(EM_D_fifo), .EM_NCS(EM_NCS4), .EM_NOE(EM_NOE), .frame_len(rx_frame_len) ); - fifo_watcher fifo_watcher (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), |