mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 07:25:26 +00:00
PSP2
This commit is contained in:
parent
5c52521a0a
commit
38c444cfa1
133 changed files with 767 additions and 478 deletions
33
rpcs3/Emu/PSP2/Modules/sceAudioIn.cpp
Normal file
33
rpcs3/Emu/PSP2/Modules/sceAudioIn.cpp
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/PSP2/ARMv7Module.h"
|
||||
|
||||
#include "sceAudioIn.h"
|
||||
|
||||
logs::channel sceAudioIn("sceAudioIn", logs::level::notice);
|
||||
|
||||
s32 sceAudioInOpenPort(s32 portType, s32 grain, s32 freq, s32 param)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioInReleasePort(s32 port)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceAudioInInput(s32 port, vm::ptr<void> destPtr)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceAudioIn, nid, name)
|
||||
|
||||
DECLARE(arm_module_manager::SceAudioIn)("SceAudioIn", []()
|
||||
{
|
||||
REG_FUNC(0x638ADD2D, sceAudioInInput);
|
||||
REG_FUNC(0x39B50DC1, sceAudioInOpenPort);
|
||||
REG_FUNC(0x3A61B8C4, sceAudioInReleasePort);
|
||||
//REG_FUNC(0x566AC433, sceAudioInGetAdopt);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue