mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 00:14:56 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
28
rpcs3/Emu/Cell/lv2/sys_crypto_engine.cpp
Normal file
28
rpcs3/Emu/Cell/lv2/sys_crypto_engine.cpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#include "stdafx.h"
|
||||
|
||||
#include "Emu/Cell/ErrorCodes.h"
|
||||
|
||||
#include "sys_crypto_engine.h"
|
||||
|
||||
LOG_CHANNEL(sys_crypto_engine);
|
||||
|
||||
error_code sys_crypto_engine_create(vm::ptr<u32> id)
|
||||
{
|
||||
sys_crypto_engine.todo("sys_crypto_engine_create(id=*0x%x)", id);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_crypto_engine_destroy(u32 id)
|
||||
{
|
||||
sys_crypto_engine.todo("sys_crypto_engine_destroy(id=0x%x)", id);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_crypto_engine_random_generate(vm::ptr<void> buffer, u64 buffer_size)
|
||||
{
|
||||
sys_crypto_engine.todo("sys_crypto_engine_random_generate(buffer=*0x%x, buffer_size=0x%x", buffer, buffer_size);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue