mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
19 lines
546 B
C++
19 lines
546 B
C++
#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);
|
|
}
|