mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
PSV modules refactoring
This commit is contained in:
parent
8229c0ed3d
commit
bc9481db1b
129 changed files with 5000 additions and 4588 deletions
|
|
@ -2,7 +2,7 @@
|
|||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceAudioIn;
|
||||
#include "sceAudioIn.h"
|
||||
|
||||
s32 sceAudioInOpenPort(s32 portType, s32 grain, s32 freq, s32 param)
|
||||
{
|
||||
|
|
@ -14,7 +14,7 @@ s32 sceAudioInReleasePort(s32 port)
|
|||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioInInput(s32 port, vm::psv::ptr<void> destPtr)
|
||||
s32 sceAudioInInput(s32 port, vm::ptr<void> destPtr)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -27,6 +27,7 @@ psv_log_base sceAudioIn("SceAudioIn", []()
|
|||
sceAudioIn.on_load = nullptr;
|
||||
sceAudioIn.on_unload = nullptr;
|
||||
sceAudioIn.on_stop = nullptr;
|
||||
sceAudioIn.on_error = nullptr;
|
||||
|
||||
REG_FUNC(0x638ADD2D, sceAudioInInput);
|
||||
REG_FUNC(0x39B50DC1, sceAudioInOpenPort);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue