diff options
author | Matt Ettus <matt@ettus.com> | 2010-09-16 14:01:43 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-09-16 14:01:43 -0700 |
commit | f177ce94fb4d4d2bdb19339c24bf5dc6035f1411 (patch) | |
tree | bc37f125a85eb48d547dafb9b08485d3fdb2d464 /usrp2/top/u1e_ethdebug/u1e.v | |
parent | 08eb9d2937c28edfb6d1fe7fb168ef77727406d5 (diff) | |
download | uhd-f177ce94fb4d4d2bdb19339c24bf5dc6035f1411.tar.gz uhd-f177ce94fb4d4d2bdb19339c24bf5dc6035f1411.tar.bz2 uhd-f177ce94fb4d4d2bdb19339c24bf5dc6035f1411.zip |
send all gpmc signals to mictor
Diffstat (limited to 'usrp2/top/u1e_ethdebug/u1e.v')
-rw-r--r-- | usrp2/top/u1e_ethdebug/u1e.v | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/usrp2/top/u1e_ethdebug/u1e.v b/usrp2/top/u1e_ethdebug/u1e.v new file mode 100644 index 000000000..c4740b941 --- /dev/null +++ b/usrp2/top/u1e_ethdebug/u1e.v @@ -0,0 +1,26 @@ +`timescale 1ns / 1ps +////////////////////////////////////////////////////////////////////////////////// + +//`define DCM 1 + +module u1e + (output [3:0] debug_led, output [31:0] debug, output [1:0] debug_clk, + input debug_pb, + + // GPMC + input EM_CLK, input [15:0] EM_D, input [10:1] EM_A, input [1:0] EM_NBE, + input EM_WAIT0, input EM_NCS4, input EM_NCS5, input EM_NCS6, input EM_NWE, input EM_NOE, + input EM_NADV_ALE, input EM_NWP + ); + + assign debug_clk = {EM_CLK, EM_NADV_ALE}; + + assign debug_led = {EM_NWP, EM_A[9], EM_A[8], debug_pb}; + + assign debug = { { EM_NBE[1:0], EM_WAIT0, EM_NCS4, EM_NCS5, EM_NCS6, EM_NWE, EM_NOE }, + { EM_A[10], EM_A[7:1] }, + { EM_D[15:8] }, + { EM_D[7:0] } }; + + +endmodule // u1e |