diff options
author | Matt Ettus <matt@ettus.com> | 2010-04-14 18:13:49 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-04-14 18:13:49 -0700 |
commit | 204c591cd478958b4e2ddea4c61d3908d9520bbe (patch) | |
tree | c3dd3259ca9060a27792cab3324f5381814582b9 /usrp2 | |
parent | fc54a55f97171f5714c370d566f31429ce112e89 (diff) | |
download | uhd-204c591cd478958b4e2ddea4c61d3908d9520bbe.tar.gz uhd-204c591cd478958b4e2ddea4c61d3908d9520bbe.tar.bz2 uhd-204c591cd478958b4e2ddea4c61d3908d9520bbe.zip |
renamed to async. Will be building a sync version for GPMC_CLK
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/gpmc/gpmc_to_fifo_async.v (renamed from usrp2/gpmc/gpmc_to_fifo.v) | 4 | ||||
-rw-r--r-- | usrp2/top/u1e/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usrp2/gpmc/gpmc_to_fifo.v b/usrp2/gpmc/gpmc_to_fifo_async.v index 267804469..c47d69d7d 100644 --- a/usrp2/gpmc/gpmc_to_fifo.v +++ b/usrp2/gpmc/gpmc_to_fifo_async.v @@ -1,5 +1,5 @@ -module gpmc_to_fifo +module gpmc_to_fifo_async (input EM_CLK, input [15:0] EM_D, input [1:0] EM_NBE, input EM_NCS, input EM_NWE, @@ -55,4 +55,4 @@ module gpmc_to_fifo assign fifo_ready = first_write & (fifo_space > frame_len); -endmodule // gpmc_to_fifo +endmodule // gpmc_to_fifo_async diff --git a/usrp2/top/u1e/Makefile b/usrp2/top/u1e/Makefile index 1cb56d7a9..ca4d9ce89 100644 --- a/usrp2/top/u1e/Makefile +++ b/usrp2/top/u1e/Makefile @@ -178,7 +178,7 @@ timing/timer.v \ gpmc/gpmc.v \ gpmc/edge_sync.v \ gpmc/dbsm.v \ -gpmc/gpmc_to_fifo.v \ +gpmc/gpmc_to_fifo_async.v \ gpmc/gpmc_wb.v \ top/u1e/u1e_core.v \ top/u1e/u1e.ucf \ |