| 1 | // signal_grabber.v |
|---|
| 2 | |
|---|
| 3 | // This file was auto-generated as a prototype implementation of a module |
|---|
| 4 | // created in component editor. It ties off all outputs to ground and |
|---|
| 5 | // ignores all inputs. It needs to be edited to make it do something |
|---|
| 6 | // useful. |
|---|
| 7 | // |
|---|
| 8 | // This file will not be automatically regenerated. You should check it in |
|---|
| 9 | // to your version control system if you want to keep it. |
|---|
| 10 | |
|---|
| 11 | `timescale 1 ps / 1 ps |
|---|
| 12 | module signal_grabber #( |
|---|
| 13 | parameter ctrl_addr_width = 32, |
|---|
| 14 | parameter ctrl_data_width = 32, |
|---|
| 15 | parameter audio_str_width = 32, |
|---|
| 16 | parameter exg_str_width = 32, |
|---|
| 17 | parameter etis_si_width = 32 |
|---|
| 18 | ) ( |
|---|
| 19 | input wire clk, // clock.clk |
|---|
| 20 | input wire reset, // reset.reset |
|---|
| 21 | input wire [ctrl_addr_width-1:0] avs_ctrl_address, // ctrl.address |
|---|
| 22 | input wire avs_ctrl_read, // .read |
|---|
| 23 | output wire [31:0] avs_ctrl_readdata, // .readdata |
|---|
| 24 | input wire avs_ctrl_write, // .write |
|---|
| 25 | input wire [31:0] avs_ctrl_writedata, // .writedata |
|---|
| 26 | output wire avs_ctrl_waitrequest, // .waitrequest |
|---|
| 27 | output wire [31:0] aso_raw_audio_data, // audio.data |
|---|
| 28 | input wire aso_raw_audio_ready, // .ready |
|---|
| 29 | output wire aso_raw_audio_valid, // .valid |
|---|
| 30 | output wire [31:0] aso_raw_exg_data, // exg.data |
|---|
| 31 | input wire aso_raw_exg_ready, // .ready |
|---|
| 32 | output wire aso_raw_exg_valid |
|---|
| 33 | ); |
|---|
| 34 | |
|---|
| 35 | // TODO: Auto-generated HDL template |
|---|
| 36 | |
|---|
| 37 | assign avs_ctrl_waitrequest = 1'b0; |
|---|
| 38 | |
|---|
| 39 | assign avs_ctrl_readdata = 32'b00000000000000000000000000000000; |
|---|
| 40 | |
|---|
| 41 | assign aso_raw_audio_valid = 1'b0; |
|---|
| 42 | |
|---|
| 43 | assign aso_raw_audio_data = 32'b00000000000000000000000000000000; |
|---|
| 44 | |
|---|
| 45 | assign aso_raw_exg_valid = 1'b0; |
|---|
| 46 | |
|---|
| 47 | assign aso_raw_exg_data = 32'b00000000000000000000000000000000; |
|---|
| 48 | |
|---|
| 49 | assign asi_etis_ready = 1'b0; |
|---|
| 50 | |
|---|
| 51 | endmodule |
|---|