diff modules/bluespec/Pygar/core/Processor.bsv @ 53:2991344775f8 pygar svn.54

[svn r54] mixer integrated
author punk
date Sun, 09 May 2010 10:58:40 -0400
parents 9fe5ed4af92d
children 1d5cbb5343d2
line wrap: on
line diff
     1.1 --- a/modules/bluespec/Pygar/core/Processor.bsv	Thu May 06 08:57:53 2010 -0400
     1.2 +++ b/modules/bluespec/Pygar/core/Processor.bsv	Sun May 09 10:58:40 2010 -0400
     1.3 @@ -501,7 +501,7 @@
     1.4                 5'd20 : wbQ.enq(tagged WB_ALU {dest:it.rdst, data:cp0_fromhost });
     1.5                 5'd21 : wbQ.enq(tagged WB_ALU {dest:it.rdst, data:cp0_tohost   });
     1.6  	       5'd25 : begin
     1.7 -			  $display( "**** EOF Requested\n ");
     1.8 +//			  $display( "**** EOF Requested\n ");
     1.9  			  let sample = inAudioFifo.first();
    1.10  			  case (sample) matches
    1.11  			     tagged EndOfFile :
    1.12 @@ -515,7 +515,7 @@
    1.13  			  endcase
    1.14  		       end
    1.15  	       5'd28 : begin
    1.16 -			  $display( "***** Reqesting Sample \n");
    1.17 +//			  $display( "***** Reqesting Sample \n");
    1.18  			  let sample = inAudioFifo.first();        // is this going to cause perf. delay?
    1.19  			  if (sample matches tagged Sample .audio) // if it is EOF another rule sets the cp0_audioEOF  
    1.20  	     		     wbQ.enq(tagged WB_ALU {dest:it.rdst, data:zext(pack(audio)) });  // do I need pack?