mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Partial commit: Modules
This commit is contained in:
parent
2553e45d76
commit
7e30a0f464
46 changed files with 1021 additions and 2710 deletions
18
rpcs3/Emu/Cell/Modules/sys_mmapper_.cpp
Normal file
18
rpcs3/Emu/Cell/Modules/sys_mmapper_.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
#include "Emu/Cell/lv2/sys_mmapper.h"
|
||||
#include "sysPrxForUser.h"
|
||||
|
||||
extern _log::channel sysPrxForUser;
|
||||
|
||||
void sysPrxForUser_sys_mmapper_init()
|
||||
{
|
||||
// TODO: split syscalls and liblv2 functions
|
||||
REG_FUNC(sysPrxForUser, sys_mmapper_allocate_memory);
|
||||
REG_FUNC(sysPrxForUser, sys_mmapper_allocate_memory_from_container);
|
||||
REG_FUNC(sysPrxForUser, sys_mmapper_map_memory);
|
||||
REG_FUNC(sysPrxForUser, sys_mmapper_unmap_memory);
|
||||
REG_FUNC(sysPrxForUser, sys_mmapper_free_memory);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue