#include "stdafx.h" #include "Emu/System.h" #include "Emu/ARMv7/PSVFuncList.h" #include "sceTouch.h" s32 sceTouchGetPanelInfo(u32 port, vm::ptr pPanelInfo) { throw EXCEPTION(""); } s32 sceTouchRead(u32 port, vm::ptr pData, u32 nBufs) { throw EXCEPTION(""); } s32 sceTouchPeek(u32 port, vm::ptr pData, u32 nBufs) { throw EXCEPTION(""); } s32 sceTouchSetSamplingState(u32 port, u32 state) { throw EXCEPTION(""); } s32 sceTouchGetSamplingState(u32 port, vm::ptr pState) { throw EXCEPTION(""); } #define REG_FUNC(nid, name) reg_psv_func(nid, &sceTouch, #name, name) 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); REG_FUNC(0x1B9C5D14, sceTouchSetSamplingState); REG_FUNC(0x26531526, sceTouchGetSamplingState); REG_FUNC(0x10A2CA25, sceTouchGetPanelInfo); });