view modules/bluespec/Pygar/core/AudioCoreRRR.h @ 33:2c8166d205d5 pygar svn.34

[svn r34] uses scratchpad, set up for audio through c
author punk
date Tue, 04 May 2010 10:13:53 -0400
parents 0cfbb1e2de22
children 49049f97312c
line wrap: on
line source

2 #ifndef _AUDIOCORERRR_
3 #define _AUDIOCORERRR_
5 #include <stdio.h>
6 #include <sys/time.h>
8 #include "asim/provides/low_level_platform_interface.h"
9 #include "asim/provides/funcp_simulated_memory.h"
10 #include "asim/provides/rrr.h"
14 typedef class AUDIOCORERRR_SERVER_CLASS* AUDIOCORERRR_SERVER;
15 class AUDIOCORERRR_SERVER_CLASS: public RRR_SERVER_CLASS, public PLATFORMS_MODULE_CLASS
16 {
17 private:
18 // self-instantiation
19 static AUDIOCORERRR_SERVER_CLASS instance;
20 FILE *outputFile;
21 FUNCP_SIMULATED_MEMORY_CLASS *memory;
23 // server stub
24 RRR_SERVER_STUB serverStub;
26 int count;
28 public:
29 AUDIOCORERRR_SERVER_CLASS();
30 ~AUDIOCORERRR_SERVER_CLASS();
32 // static methods
33 static AUDIOCORERRR_SERVER GetInstance() { return &instance; }
35 // required RRR methods
36 void Init(PLATFORMS_MODULE);
37 void Uninit();
38 void Cleanup();
40 //
41 // RRR service methods
42 //
44 /* Not Used by ScratchPad
45 UINT32 MemoryRequestLoad (UINT32 address);
46 void MemoryRequestStore (UINT32 address, UINT32 data);
47 */
49 void SendProcessedStream(UINT16 control, UINT16 data0);
50 };
54 // include server stub
55 #include "asim/rrr/server_stub_AUDIOCORERRR.h"
57 #endif