aboutsummaryrefslogtreecommitdiffstats
path: root/usrp2/gpmc/gpmc_to_fifo.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-04-13 17:33:16 -0700
committerMatt Ettus <matt@ettus.com>2010-04-13 17:33:16 -0700
commit19d476df81cdf7a51b871154510be8f7c575ffde (patch)
tree25937abc5e956c8900cfed080390e9eb8bb77e9e /usrp2/gpmc/gpmc_to_fifo.v
parentf95bf4d8d94511d26a5bb1f52823f8ffd5f637fe (diff)
downloaduhd-19d476df81cdf7a51b871154510be8f7c575ffde.tar.gz
uhd-19d476df81cdf7a51b871154510be8f7c575ffde.tar.bz2
uhd-19d476df81cdf7a51b871154510be8f7c575ffde.zip
minor changes to get it to synthesize
Diffstat (limited to 'usrp2/gpmc/gpmc_to_fifo.v')
-rw-r--r--usrp2/gpmc/gpmc_to_fifo.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/gpmc/gpmc_to_fifo.v b/usrp2/gpmc/gpmc_to_fifo.v
index 5d499494f..267804469 100644
--- a/usrp2/gpmc/gpmc_to_fifo.v
+++ b/usrp2/gpmc/gpmc_to_fifo.v
@@ -8,6 +8,7 @@ module gpmc_to_fifo
input [15:0] frame_len, input [15:0] fifo_space, output fifo_ready);
+ reg [10:0] counter;
// Synchronize the async control signals
reg [1:0] cs_del, we_del;
always @(posedge fifo_clk)
@@ -43,7 +44,6 @@ module gpmc_to_fifo
else
src_rdy_o <= 0; // Assume it was taken
- reg [10:0] counter;
always @(posedge fifo_clk)
if(fifo_rst)
counter <= 0;