diff modules/bluespec/Pygar/core/audioCore.bsv @ 26:f5dfbe28fa59 pygar svn.27

[svn r27] Fixed Instruction trace issue.
author punk
date Fri, 30 Apr 2010 09:03:10 -0400
parents cffe0829ce14
children 99519a031813
line wrap: on
line diff
     1.1 --- a/modules/bluespec/Pygar/core/audioCore.bsv	Wed Apr 28 12:01:37 2010 -0400
     1.2 +++ b/modules/bluespec/Pygar/core/audioCore.bsv	Fri Apr 30 09:03:10 2010 -0400
     1.3 @@ -62,8 +62,8 @@
     1.4  
     1.5    mkConnection( proc.statsEn_get,   icache.statsEn_put );
     1.6    mkConnection( proc.statsEn_get,   dcache.statsEn_put );
     1.7 -//  mkConnection( proc.imem_client,   icache.proc_server );
     1.8 -//  mkConnection( proc.dmem_client,   dcache.proc_server );
     1.9 +  mkConnection( proc.imem_client,   icache.proc_server );
    1.10 +  mkConnection( proc.dmem_client,   dcache.proc_server );
    1.11    mkConnection( icache.mmem_client, marb.cache0_server );
    1.12    mkConnection( dcache.mmem_client, marb.cache1_server );
    1.13  
    1.14 @@ -72,8 +72,5 @@
    1.15     interface mmem_client = marb.mmem_client;
    1.16        
    1.17     interface sampleOutput = proc.sampleOutput;
    1.18 -  // interface sampleOutput = proc.audioOut;
    1.19 -  // interface AudioOut audio = proc.audioOut;
    1.20 -      
    1.21  
    1.22  endmodule