PSV modules refactoring

This commit is contained in:
Nekotekina 2015-06-21 02:04:01 +03:00
parent 8229c0ed3d
commit bc9481db1b
129 changed files with 5000 additions and 4588 deletions

View file

@ -4,17 +4,17 @@
#include "sceTouch.h"
s32 sceTouchGetPanelInfo(u32 port, vm::psv::ptr<SceTouchPanelInfo> pPanelInfo)
s32 sceTouchGetPanelInfo(u32 port, vm::ptr<SceTouchPanelInfo> pPanelInfo)
{
throw __FUNCTION__;
}
s32 sceTouchRead(u32 port, vm::psv::ptr<SceTouchData> pData, u32 nBufs)
s32 sceTouchRead(u32 port, vm::ptr<SceTouchData> pData, u32 nBufs)
{
throw __FUNCTION__;
}
s32 sceTouchPeek(u32 port, vm::psv::ptr<SceTouchData> pData, u32 nBufs)
s32 sceTouchPeek(u32 port, vm::ptr<SceTouchData> pData, u32 nBufs)
{
throw __FUNCTION__;
}
@ -24,7 +24,7 @@ s32 sceTouchSetSamplingState(u32 port, u32 state)
throw __FUNCTION__;
}
s32 sceTouchGetSamplingState(u32 port, vm::psv::ptr<u32> pState)
s32 sceTouchGetSamplingState(u32 port, vm::ptr<u32> pState)
{
throw __FUNCTION__;
}
@ -37,6 +37,7 @@ psv_log_base sceTouch("SceTouch", []()
sceTouch.on_load = nullptr;
sceTouch.on_unload = nullptr;
sceTouch.on_stop = nullptr;
sceTouch.on_error = nullptr;
REG_FUNC(0x169A1D58, sceTouchRead);
REG_FUNC(0xFF082DF0, sceTouchPeek);