mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +00:00
PSP2
This commit is contained in:
parent
5c52521a0a
commit
38c444cfa1
133 changed files with 767 additions and 478 deletions
91
rpcs3/Emu/PSP2/Modules/sceDeflt.cpp
Normal file
91
rpcs3/Emu/PSP2/Modules/sceDeflt.cpp
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/PSP2/ARMv7Module.h"
|
||||
|
||||
#include "sceDeflt.h"
|
||||
|
||||
logs::channel sceDeflt("sceDeflt", logs::level::notice);
|
||||
|
||||
s32 sceGzipIsValid(vm::cptr<void> pSrcGzip)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceGzipGetInfo(vm::cptr<void> pSrcGzip, vm::cpptr<void> ppvExtra, vm::cpptr<char> ppszName, vm::cpptr<char> ppszComment, vm::ptr<u16> pusCrc, vm::cpptr<void> ppvData)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
vm::cptr<char> sceGzipGetName(vm::cptr<void> pSrcGzip)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
vm::cptr<char> sceGzipGetComment(vm::cptr<void> pSrcGzip)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
vm::cptr<void> sceGzipGetCompressedData(vm::cptr<void> pSrcGzip)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceGzipDecompress(vm::ptr<void> pDst, u32 uiBufSize, vm::cptr<void> pSrcGzip, vm::ptr<u32> puiCrc32)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceZlibIsValid(vm::cptr<void> pSrcZlib)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceZlibGetInfo(vm::cptr<void> pSrcZlib, vm::ptr<u8> pbCmf, vm::ptr<u8> pbFlg, vm::ptr<u32> puiDictId, vm::cpptr<void> ppvData)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
vm::cptr<void> sceZlibGetCompressedData(vm::cptr<void> pSrcZlib)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceZlibDecompress(vm::ptr<void> pDst, u32 uiBufSize, vm::cptr<void> pSrcZlib, vm::ptr<u32> puiAdler32)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
u32 sceZlibAdler32(u32 uiAdler, vm::cptr<u8> pSrc, u32 uiSize)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceDeflateDecompress(vm::ptr<void> pDst, u32 uiBufSize, vm::cptr<void> pSrcDeflate, vm::cpptr<void> ppNext)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceZipGetInfo(vm::cptr<void> pSrc, vm::cpptr<void> ppvExtra, vm::ptr<u32> puiCrc, vm::cpptr<void> ppvData)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceDeflt, nid, name)
|
||||
|
||||
DECLARE(arm_module_manager::SceDeflt)("SceDeflt", []()
|
||||
{
|
||||
REG_FUNC(0xCD83A464, sceZlibAdler32);
|
||||
REG_FUNC(0x110D5050, sceDeflateDecompress);
|
||||
REG_FUNC(0xE3CB51A3, sceGzipDecompress);
|
||||
REG_FUNC(0xBABCF5CF, sceGzipGetComment);
|
||||
REG_FUNC(0xE1844802, sceGzipGetCompressedData);
|
||||
REG_FUNC(0x1B8E5862, sceGzipGetInfo);
|
||||
REG_FUNC(0xAEBAABE6, sceGzipGetName);
|
||||
REG_FUNC(0xDEDADC31, sceGzipIsValid);
|
||||
REG_FUNC(0xE38F754D, sceZlibDecompress);
|
||||
REG_FUNC(0xE680A65A, sceZlibGetCompressedData);
|
||||
REG_FUNC(0x4C0A685D, sceZlibGetInfo);
|
||||
REG_FUNC(0x14A0698D, sceZlibIsValid);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue