mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-10-29 17:36:10 +01:00
13 lines
196 B
C++
Executable File
13 lines
196 B
C++
Executable File
class DSP4 : public Memory {
|
|
public:
|
|
void init();
|
|
void enable();
|
|
void power();
|
|
void reset();
|
|
|
|
uint8 read (unsigned addr);
|
|
void write(unsigned addr, uint8 data);
|
|
};
|
|
|
|
extern DSP4 dsp4;
|