mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 08:10:10 +01:00
11 lines
225 B
C++
11 lines
225 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "Emu/SysCalls/SysCalls.h"
|
||
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
||
|
|
|
||
|
|
void cellL10n_init();
|
||
|
|
Module cellL10n(0x001e, cellL10n_init);
|
||
|
|
|
||
|
|
void cellL10n_init()
|
||
|
|
{
|
||
|
|
// (TODO: Get addresses of cellL10n functions)
|
||
|
|
}
|