mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
39 lines
819 B
C++
39 lines
819 B
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
#include "sceNp.h"
|
|
#include "sceNpUtil.h"
|
|
|
|
logs::channel sceNpUtil("sceNpUtil", logs::level::notice);
|
|
|
|
s32 sceNpUtilBandwidthTestInitStart(u32 prio, size_t stack)
|
|
{
|
|
UNIMPLEMENTED_FUNC(sceNpUtil);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 sceNpUtilBandwidthTestGetStatus()
|
|
{
|
|
UNIMPLEMENTED_FUNC(sceNpUtil);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 sceNpUtilBandwidthTestShutdown()
|
|
{
|
|
UNIMPLEMENTED_FUNC(sceNpUtil);
|
|
return CELL_OK;
|
|
}
|
|
|
|
s32 sceNpUtilBandwidthTestAbort()
|
|
{
|
|
UNIMPLEMENTED_FUNC(sceNpUtil);
|
|
return CELL_OK;
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::sceNpUtil)("sceNpUtil", []()
|
|
{
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestInitStart);
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestShutdown);
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestGetStatus);
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestAbort);
|
|
});
|