mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
PSV modules refactoring
This commit is contained in:
parent
8229c0ed3d
commit
bc9481db1b
129 changed files with 5000 additions and 4588 deletions
|
|
@ -2,13 +2,7 @@
|
|||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceCodecEngine;
|
||||
|
||||
struct SceCodecEnginePmonProcessorLoad
|
||||
{
|
||||
u32 size;
|
||||
u32 average;
|
||||
};
|
||||
#include "sceCodecEngine.h"
|
||||
|
||||
s32 sceCodecEnginePmonStart()
|
||||
{
|
||||
|
|
@ -20,7 +14,7 @@ s32 sceCodecEnginePmonStop()
|
|||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceCodecEnginePmonGetProcessorLoad(vm::psv::ptr<SceCodecEnginePmonProcessorLoad> pProcessorLoad)
|
||||
s32 sceCodecEnginePmonGetProcessorLoad(vm::ptr<SceCodecEnginePmonProcessorLoad> pProcessorLoad)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -38,6 +32,7 @@ psv_log_base sceCodecEngine("SceCodecEngine", []()
|
|||
sceCodecEngine.on_load = nullptr;
|
||||
sceCodecEngine.on_unload = nullptr;
|
||||
sceCodecEngine.on_stop = nullptr;
|
||||
sceCodecEngine.on_error = nullptr;
|
||||
|
||||
REG_FUNC(0x3E718890, sceCodecEnginePmonStart);
|
||||
REG_FUNC(0x268B1EF5, sceCodecEnginePmonStop);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue