ARMv7: stubs for other modules, loader improved

This commit is contained in:
Nekotekina 2015-01-29 18:48:05 +03:00
parent 1fa301b719
commit 62c8f2ac34
66 changed files with 2616 additions and 59 deletions

View file

@ -0,0 +1,24 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/ARMv7/PSVFuncList.h"
extern psv_log_base sceAudio;
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceAudio, #name, name)
psv_log_base sceAudio("SceAudio", []()
{
sceAudio.on_load = nullptr;
sceAudio.on_unload = nullptr;
sceAudio.on_stop = nullptr;
//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);
});