source: PROJECT_SMART_EEG/trunk/hw/sync_sys/signal_grabber.v @ 83

Last change on this file since 83 was 83, checked in by szahmed, 10 years ago

Initial Commit

File size: 1.8 KB
Line 
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
12module 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
51endmodule
Note: See TracBrowser for help on using the repository browser.