From af9c419ec95c665b9f7921957115c870aea0ce46 Mon Sep 17 00:00:00 2001 From: Matt Ettus Date: Tue, 21 Sep 2010 23:15:53 -0700 Subject: first steps to a command packet handler for u1+ --- usrp2/gpif/ctrl_resp.v | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 usrp2/gpif/ctrl_resp.v (limited to 'usrp2/gpif/ctrl_resp.v') diff --git a/usrp2/gpif/ctrl_resp.v b/usrp2/gpif/ctrl_resp.v new file mode 100644 index 000000000..1877478e6 --- /dev/null +++ b/usrp2/gpif/ctrl_resp.v @@ -0,0 +1,16 @@ + + +module ctrl_resp + (input clk, input reset, + input [17:0] ctrl_i, input ctrl_src_rdy_i, output ctrl_dst_rdy_o, + output [17:0] resp_i, output resp_src_rdy_o, input resp_dst_rdy_i, + + output [15:0] wb_adr_o, output [15:0] wb_dat_mosi, input [15:0] wb_dat_miso, + output [1:0] wb_sel_o, output wb_cyc_o, output wb_stb_o, output wb_we_o, input wb_ack_i, + + input [3:0] trigger_i + ); + + + +endmodule // ctrl_resp -- cgit v1.2.3