mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 08:25:16 +00:00
ARMv7: stubs for other modules, loader improved
This commit is contained in:
parent
1fa301b719
commit
62c8f2ac34
66 changed files with 2616 additions and 59 deletions
31
rpcs3/Emu/ARMv7/Modules/sceMotion.cpp
Normal file
31
rpcs3/Emu/ARMv7/Modules/sceMotion.cpp
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceMotion;
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceMotion, #name, name)
|
||||
|
||||
psv_log_base sceMotion("SceMotion", []()
|
||||
{
|
||||
sceMotion.on_load = nullptr;
|
||||
sceMotion.on_unload = nullptr;
|
||||
sceMotion.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0xBDB32767, sceMotionGetState);
|
||||
//REG_FUNC(0x47D679EA, sceMotionGetSensorState);
|
||||
//REG_FUNC(0xC1652201, sceMotionGetTiltCorrection);
|
||||
//REG_FUNC(0xAF09FCDB, sceMotionSetTiltCorrection);
|
||||
//REG_FUNC(0x112E0EAE, sceMotionGetDeadband);
|
||||
//REG_FUNC(0x917EA390, sceMotionSetDeadband);
|
||||
//REG_FUNC(0x20F00078, sceMotionRotateYaw);
|
||||
//REG_FUNC(0x0FD2CDA2, sceMotionReset);
|
||||
//REG_FUNC(0x28034AC9, sceMotionStartSampling);
|
||||
//REG_FUNC(0xAF32CB1D, sceMotionStopSampling);
|
||||
//REG_FUNC(0xDACB2A41, sceMotionSetAngleThreshold);
|
||||
//REG_FUNC(0x499B6C87, sceMotionGetAngleThreshold);
|
||||
//REG_FUNC(0x4F28BFE0, sceMotionGetBasicOrientation);
|
||||
//REG_FUNC(0x122A79F8, sceMotionMagnetometerOn);
|
||||
//REG_FUNC(0xC1A7395A, sceMotionMagnetometerOff);
|
||||
//REG_FUNC(0x3D4813AE, sceMotionGetMagnetometerState);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue