mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
PSV modules refactoring
This commit is contained in:
parent
8229c0ed3d
commit
bc9481db1b
129 changed files with 5000 additions and 4588 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue