mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
198 B
C++
13 lines
198 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "Emu/SysCalls/SysCalls.h"
|
||
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
||
|
|
|
||
|
|
#include "sceNp.h"
|
||
|
|
|
||
|
|
void sceNp_init();
|
||
|
|
Module sceNp(0x0016, sceNpTrophy_init);
|
||
|
|
|
||
|
|
void sceNpTrophy_init()
|
||
|
|
{
|
||
|
|
}
|