source: PROJECT_SMART_EEG/trunk/hw/sync_sys/audio_codec/audio_codec.v @ 87

Last change on this file since 87 was 84, checked in by lambert, 10 years ago

Adding hierarchical subdirectory for every component

File size: 1.7 KB
Line 
1// audio_codec.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 audio_codec #(
13                parameter AUTO_CLOCK_CLOCK_RATE = "-1"
14        ) (
15                input  wire        clk,                //      clock.clk
16                input  wire        reset,              //      reset.reset
17                input  wire [31:0] asi_raw_audio_data,       //        raw_audio.data
18                output wire        asi_raw_audio_ready,      //           .ready
19                input  wire        asi_raw_audio_valid,      //           .valid
20                input  wire [7:0]  avs_ctrl_address,     //       ctrl.address
21                input  wire        avs_ctrl_read,        //           .read
22                output wire [31:0] avs_ctrl_readdata,    //           .readdata
23                input  wire        avs_ctrl_write,       //           .write
24                input  wire [31:0] avs_ctrl_writedata,   //           .writedata
25                output wire        avs_ctrl_waitrequest, //           .waitrequest
26                output wire [31:0] aso_comp_audio_data,      // comp_audio.data
27                input  wire        aso_comp_audio_ready,     //           .ready
28                output wire        aso_comp_audio_valid      //           .valid
29        );
30
31        // TODO: Auto-generated HDL template
32
33        assign asi_raw_audio_ready = 1'b0;
34
35        assign avs_ctrl_waitrequest = 1'b0;
36
37        assign avs_ctrl_readdata = 32'b00000000000000000000000000000000;
38
39        assign aso_comp_audio_valid = 1'b0;
40
41        assign aso_comp_audio_data = 32'b00000000000000000000000000000000;
42
43endmodule
Note: See TracBrowser for help on using the repository browser.