2015-07-24 19:31:16 +03:00
|
|
|
#include "stdafx.h"
|
2016-03-21 22:42:14 +03:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
2015-07-24 19:31:16 +03:00
|
|
|
|
|
|
|
|
#include "sceNp.h"
|
2015-07-26 12:15:15 +03:00
|
|
|
#include "sceNpUtil.h"
|
2015-07-24 19:31:16 +03:00
|
|
|
|
2016-05-13 16:55:34 +03:00
|
|
|
logs::channel sceNpUtil("sceNpUtil", logs::level::notice);
|
2015-07-24 19:31:16 +03:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-21 22:42:14 +03:00
|
|
|
DECLARE(ppu_module_manager::sceNpUtil)("sceNpUtil", []()
|
2015-07-24 19:31:16 +03:00
|
|
|
{
|
|
|
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestInitStart);
|
|
|
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestShutdown);
|
|
|
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestGetStatus);
|
|
|
|
|
REG_FUNC(sceNpUtil, sceNpUtilBandwidthTestAbort);
|
2015-08-01 00:47:29 +03:00
|
|
|
});
|