rpcsx/rpcs3/Emu/PSP2/Modules/sceAudio.cpp

64 lines
1.4 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/System.h"
2016-05-13 12:17:26 +02:00
#include "Emu/PSP2/ARMv7Module.h"
2015-06-21 01:04:01 +02:00
#include "sceAudio.h"
2017-05-13 20:30:37 +02:00
logs::channel sceAudio("sceAudio");
2016-02-01 22:53:16 +01:00
2015-01-29 18:42:51 +01:00
s32 sceAudioOutOpenPort(s32 portType, s32 len, s32 freq, s32 param)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
s32 sceAudioOutReleasePort(s32 port)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
2015-06-21 01:04:01 +02:00
s32 sceAudioOutOutput(s32 port, vm::ptr<void> ptr)
2015-01-29 18:42:51 +01:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
2015-06-21 01:04:01 +02:00
s32 sceAudioOutSetVolume(s32 port, s32 flag, vm::ptr<s32> vol)
2015-01-29 18:42:51 +01:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
s32 sceAudioOutSetConfig(s32 port, s32 len, s32 freq, s32 param)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
s32 sceAudioOutGetConfig(s32 port, s32 configType)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
s32 sceAudioOutGetRestSample(s32 port)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
s32 sceAudioOutGetAdopt(s32 portType)
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-29 18:42:51 +01:00
}
2016-02-01 22:53:16 +01:00
#define REG_FUNC(nid, name) REG_FNID(SceAudio, nid, name)
2016-02-01 22:53:16 +01:00
DECLARE(arm_module_manager::SceAudio)("SceAudio", []()
{
2015-01-29 18:42:51 +01:00
REG_FUNC(0x5BC341E4, sceAudioOutOpenPort);
REG_FUNC(0x69E2E6B5, sceAudioOutReleasePort);
REG_FUNC(0x02DB3F5F, sceAudioOutOutput);
REG_FUNC(0x64167F11, sceAudioOutSetVolume);
REG_FUNC(0xB8BA0D07, sceAudioOutSetConfig);
REG_FUNC(0x9C8EDAEA, sceAudioOutGetConfig);
REG_FUNC(0x9A5370C4, sceAudioOutGetRestSample);
REG_FUNC(0x12FB1767, sceAudioOutGetAdopt);
//REG_FUNC(0xC6D8D775, sceAudioInRaw);
});