mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
PSV modules refactoring
This commit is contained in:
parent
8229c0ed3d
commit
bc9481db1b
129 changed files with 5000 additions and 4588 deletions
|
|
@ -2,7 +2,79 @@
|
|||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceFpu;
|
||||
#include "sceFpu.h"
|
||||
|
||||
float sceFpuSinf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuCosf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuTanf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuAtanf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuAtan2f(float y, float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuAsinf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuAcosf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
|
||||
float sceFpuLogf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuLog2f(float fs)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuLog10f(float fs)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuExpf(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuExp2f(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuExp10f(float x)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
float sceFpuPowf(float x, float y)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceFpu, #name, name)
|
||||
|
||||
|
|
@ -11,6 +83,7 @@ psv_log_base sceFpu("SceFpu", []()
|
|||
sceFpu.on_load = nullptr;
|
||||
sceFpu.on_unload = nullptr;
|
||||
sceFpu.on_stop = nullptr;
|
||||
sceFpu.on_error = nullptr;
|
||||
|
||||
//REG_FUNC(0x33E1AC14, sceFpuSinf);
|
||||
//REG_FUNC(0xDB66BA89, sceFpuCosf);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue