rpcsx/rpcs3/Emu/Cell/Modules/sys_mmapper_.cpp

19 lines
546 B
C++
Raw Normal View History

2015-08-02 05:15:49 +03:00
#include "stdafx.h"
#include "Emu/System.h"
2016-03-21 22:42:14 +03:00
#include "Emu/Cell/PPUModule.h"
2015-08-02 05:15:49 +03:00
2016-03-21 22:42:14 +03:00
#include "Emu/Cell/lv2/sys_mmapper.h"
2015-08-02 05:15:49 +03:00
#include "sysPrxForUser.h"
2016-05-13 16:55:34 +03:00
extern logs::channel sysPrxForUser;
2015-08-02 05:15:49 +03:00
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);
}