mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
337 B
C++
15 lines
337 B
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
logs::channel cellVideoUpload("cellVideoUpload", logs::level::notice);
|
|
|
|
s32 cellVideoUploadInitialize()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::cellVideoUpload)("cellVideoUpload", []()
|
|
{
|
|
REG_FUNC(cellVideoUpload, cellVideoUploadInitialize);
|
|
});
|