Mercurial > pygar
diff modules/bluespec/Pygar/core/audioCorePipeline.bsv @ 39:5a30f173bbac pygar svn.40
[svn r40] no longer cpu terminating dependent
author | punk |
---|---|
date | Tue, 04 May 2010 19:32:25 -0400 |
parents | 05598d745f99 |
children | 16ba43f0a7c3 |
line wrap: on
line diff
1.1 --- a/modules/bluespec/Pygar/core/audioCorePipeline.bsv Tue May 04 19:27:38 2010 -0400 1.2 +++ b/modules/bluespec/Pygar/core/audioCorePipeline.bsv Tue May 04 19:32:25 2010 -0400 1.3 @@ -50,6 +50,8 @@ 1.4 Core core <- mkCore; 1.5 Reg#(int) cycle <- mkReg(0); 1.6 1.7 +// Reg#(Bit#(32)) ac_fini <- mkReg(0); 1.8 + 1.9 //External memory 1.10 // I'm not comfortable assuming that the memory subsystem is in order 1.11 // So I'll insert a completion buffer here. 1.12 @@ -107,14 +109,14 @@ 1.13 1.14 //***** SERVER Side ***** 1.15 1.16 - (* conservative_implicit_conditions *) 1.17 +/* (* conservative_implicit_conditions *) 1.18 rule handleCPUToHost; 1.19 let req <- server_stub.acceptRequest_ReadCPUToHost(); 1.20 case (req) 1.21 0: server_stub.sendResponse_ReadCPUToHost(cp0_tohost); 1.22 endcase 1.23 endrule 1.24 - 1.25 +*/ 1.26 rule feedInput; 1.27 let command <- server_stub.acceptRequest_SendUnprocessedStream(); 1.28 AudioProcessorControl ctrl = unpack(truncate(command.ctrl));