mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
SPU done
This commit is contained in:
@ -19,6 +19,8 @@
|
||||
#ifndef SPU_H
|
||||
#define SPU_H
|
||||
|
||||
#include "Savestate.h"
|
||||
|
||||
namespace SPU
|
||||
{
|
||||
|
||||
@ -27,6 +29,8 @@ void DeInit();
|
||||
void Reset();
|
||||
void Stop();
|
||||
|
||||
void DoSavestate(Savestate* file);
|
||||
|
||||
void SetBias(u16 bias);
|
||||
|
||||
void Mix(u32 samples);
|
||||
@ -46,6 +50,7 @@ public:
|
||||
Channel(u32 num);
|
||||
~Channel();
|
||||
void Reset();
|
||||
void DoSavestate(Savestate* file);
|
||||
|
||||
u32 Num;
|
||||
|
||||
@ -137,6 +142,7 @@ public:
|
||||
CaptureUnit(u32 num);
|
||||
~CaptureUnit();
|
||||
void Reset();
|
||||
void DoSavestate(Savestate* file);
|
||||
|
||||
u32 Num;
|
||||
|
||||
|
Reference in New Issue
Block a user