Mercurial > pygar
diff modules/bluespec/Pygar/core/AudioCoreRRR.rrr @ 13:6d461680c6d9 pygar svn.14
[svn r14] more stuff
author | punk |
---|---|
date | Tue, 27 Apr 2010 09:03:28 -0400 |
parents | |
children | 2c8166d205d5 |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/modules/bluespec/Pygar/core/AudioCoreRRR.rrr Tue Apr 27 09:03:28 2010 -0400 1.3 @@ -0,0 +1,16 @@ 1.4 +service AUDIOCORERRR 1.5 +{ 1.6 + server hw (bsv, connection) <- sw (cpp, method) 1.7 + { 1.8 + method ReadCPUToHost (out UINT32[32] regValue, in UINT32[32] dummy); 1.9 + method SendUnprocessedStream (in UINT32[32] ctrl, in UINT32[32] sample); 1.10 + }; 1.11 + 1.12 + server sw (cpp, method) <- hw (bsv, connection) 1.13 + { 1.14 + method SendProcessedStream (in UINT32[32] ctrl, in UINT32[32] sample); 1.15 + method MemoryRequestLoad (in UINT32[32] address, out UINT32[32] value); 1.16 + method MemoryRequestStore (in UINT32[32] address, in UINT32[32] value); 1.17 + }; 1.18 + 1.19 + };