Mercurial > pygar
diff modules/bluespec/Pygar/core/audioCore.bsv @ 36:99519a031813 pygar svn.37
[svn r37] moved the server into audioCorePipeline
author | punk |
---|---|
date | Tue, 04 May 2010 18:54:54 -0400 |
parents | f5dfbe28fa59 |
children | a139cc07b773 |
line wrap: on
line diff
1.1 --- a/modules/bluespec/Pygar/core/audioCore.bsv Tue May 04 12:14:24 2010 -0400 1.2 +++ b/modules/bluespec/Pygar/core/audioCore.bsv Tue May 04 18:54:54 2010 -0400 1.3 @@ -46,7 +46,10 @@ 1.4 interface Client#(MainMemReq,MainMemResp) mmem_client; 1.5 1.6 interface Get#(AudioProcessorUnit) sampleOutput; 1.7 - 1.8 + interface Put#(AudioProcessorUnit) sampleInput; 1.9 + 1.10 +// interface CPUToHost tohost; 1.11 + 1.12 endinterface 1.13 1.14 module [CONNECTED_MODULE] mkCore( Core ); 1.15 @@ -72,5 +75,8 @@ 1.16 interface mmem_client = marb.mmem_client; 1.17 1.18 interface sampleOutput = proc.sampleOutput; 1.19 + interface sampleInput = proc.sampleInput; 1.20 + 1.21 +// interface CPUToHost tohost = proc.tohost; 1.22 1.23 endmodule