comparison 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
comparison
equal deleted inserted replaced
35:14f7a7ace3f5 36:99519a031813
44 44
45 // Interface from core to main memory 45 // Interface from core to main memory
46 interface Client#(MainMemReq,MainMemResp) mmem_client; 46 interface Client#(MainMemReq,MainMemResp) mmem_client;
47 47
48 interface Get#(AudioProcessorUnit) sampleOutput; 48 interface Get#(AudioProcessorUnit) sampleOutput;
49 49 interface Put#(AudioProcessorUnit) sampleInput;
50
51 // interface CPUToHost tohost;
52
50 endinterface 53 endinterface
51 54
52 module [CONNECTED_MODULE] mkCore( Core ); 55 module [CONNECTED_MODULE] mkCore( Core );
53 56
54 // Instantiate the modules 57 // Instantiate the modules
70 // Methods 73 // Methods
71 74
72 interface mmem_client = marb.mmem_client; 75 interface mmem_client = marb.mmem_client;
73 76
74 interface sampleOutput = proc.sampleOutput; 77 interface sampleOutput = proc.sampleOutput;
78 interface sampleInput = proc.sampleInput;
79
80 // interface CPUToHost tohost = proc.tohost;
75 81
76 endmodule 82 endmodule