diff modules/bluespec/Pygar/core/audioCore.bsv~ @ 15:a1833d9f6e3d pygar svn.16

[svn r16] Recent
author punk
date Tue, 27 Apr 2010 13:11:45 -0400
parents 6d461680c6d9
children
line wrap: on
line diff
     1.1 --- a/modules/bluespec/Pygar/core/audioCore.bsv~	Tue Apr 27 09:13:34 2010 -0400
     1.2 +++ b/modules/bluespec/Pygar/core/audioCore.bsv~	Tue Apr 27 13:11:45 2010 -0400
     1.3 @@ -44,13 +44,11 @@
     1.4    // Interface from core to main memory
     1.5     interface Client#(MainMemReq,MainMemResp) mmem_client;
     1.6  
     1.7 -   interface CPUToHost tohost;
     1.8 -	 
     1.9 -   interface AudioIn audio;
    1.10 +   interface AudioOut audio;
    1.11  
    1.12  endinterface
    1.13  
    1.14 -interface AudioIn;
    1.15 +interface AudioOut;
    1.16   //     interface Put#(AudioProcessorUnit) sampleInput;
    1.17        interface Get#(AudioProcessorUnit) sampleOutput;
    1.18  endinterface      
    1.19 @@ -77,8 +75,6 @@
    1.20  
    1.21     interface mmem_client = marb.mmem_client;
    1.22  
    1.23 -   interface CPUToHost tohost = proc.tohost;
    1.24 -
    1.25 -   interface AudioIn audio = proc.audioIn;
    1.26 +   interface AudioOut audio = proc.audioOut;
    1.27  
    1.28  endmodule