diff --git a/vita3k/modules/CMakeLists.txt b/vita3k/modules/CMakeLists.txt index ce3028eaa2..f85841c0c6 100644 --- a/vita3k/modules/CMakeLists.txt +++ b/vita3k/modules/CMakeLists.txt @@ -192,6 +192,7 @@ set(SOURCE_LIST SceTouch/SceTouch.cpp SceTriggerUtil/SceTriggerUtil.cpp SceUdcd/SceUdcd.cpp + SceUlobjDbg/SceUlobjDbg.cpp SceUlobjMgr/SceUlobjMgr.cpp SceUlt/SceUlt.cpp SceUsbd/SceUsbdForUser.cpp diff --git a/vita3k/modules/SceUlobjDbg/SceUlobjDbg.cpp b/vita3k/modules/SceUlobjDbg/SceUlobjDbg.cpp new file mode 100644 index 0000000000..05c80ae59f --- /dev/null +++ b/vita3k/modules/SceUlobjDbg/SceUlobjDbg.cpp @@ -0,0 +1,26 @@ +// Vita3K emulator project +// Copyright (C) 2024 Vita3K team +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this program; if not, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +#include + +EXPORT(int, SceUlobjDbg_D7F0F610) { + return UNIMPLEMENTED(); +} + +EXPORT(int, SceUlobjDbg_F9C0F5DA) { + return UNIMPLEMENTED(); +} diff --git a/vita3k/nids/include/nids/nids.inc b/vita3k/nids/include/nids/nids.inc index 2d0cef96cd..5b173501fa 100644 --- a/vita3k/nids/include/nids/nids.inc +++ b/vita3k/nids/include/nids/nids.inc @@ -7186,6 +7186,10 @@ NID(sceUdcdGetDrvState, 0x99B3DA5D) NID(sceUdcdRegisterCallback, 0xA7070093) NID(sceUdcdUnregisterCallback, 0xC3FBA889) NID(sceUdcdWaitState, 0x59EFFAF1) +// Module "SceUlobjDbg" +// Library "SceUlobjDbg" +NID(SceUlobjDbg_D7F0F610, 0xD7F0F610) +NID(SceUlobjDbg_F9C0F5DA, 0xF9C0F5DA) // Module "SceUlobjMgr" // Library "SceUlobjMgr" NID(_sceUlobjMgrRegisterLibultProtocolRevision, 0x50F2F2AA)