mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +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
20
ps3fw/cellSysutilMisc.cpp
Normal file
20
ps3fw/cellSysutilMisc.cpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/system_config.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
#include "cellSysutil.h"
|
||||
|
||||
LOG_CHANNEL(cellSysutilMisc);
|
||||
|
||||
s32 cellSysutilGetLicenseArea()
|
||||
{
|
||||
cellSysutilMisc.warning("cellSysutilGetLicenseArea()");
|
||||
|
||||
const CellSysutilLicenseArea license_area = g_cfg.sys.license_area;
|
||||
cellSysutilMisc.notice("cellSysutilGetLicenseArea(): %s", license_area);
|
||||
return license_area;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellSysutilMisc)("cellSysutilMisc", []()
|
||||
{
|
||||
REG_FUNC(cellSysutilMisc, cellSysutilGetLicenseArea);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue