mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
21 lines
598 B
C++
21 lines
598 B
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
logs::channel cellSpudll("cellSpudll", logs::level::notice);
|
|
|
|
s32 cellSpudllGetImageSize(vm::ptr<u32> psize, vm::cptr<void> so_elf, vm::cptr<struct CellSpudllHandleConfig> config)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellSpudllHandleConfigSetDefaultValues(vm::ptr<struct CellSpudllHandleConfig> config)
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::cellSpudll)("cellSpudll", []()
|
|
{
|
|
REG_FUNC(cellSpudll, cellSpudllGetImageSize);
|
|
REG_FUNC(cellSpudll, cellSpudllHandleConfigSetDefaultValues);
|
|
});
|