Skip to content

Commit

Permalink
modules: Add SceUlobjDbg related new NIDs (Vita3K#3388)
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnsky authored Oct 3, 2024
1 parent 1f6ce2f commit faab9d6
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions vita3k/modules/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
26 changes: 26 additions & 0 deletions vita3k/modules/SceUlobjDbg/SceUlobjDbg.cpp
Original file line number Diff line number Diff line change
@@ -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 <module/module.h>

EXPORT(int, SceUlobjDbg_D7F0F610) {
return UNIMPLEMENTED();
}

EXPORT(int, SceUlobjDbg_F9C0F5DA) {
return UNIMPLEMENTED();
}
4 changes: 4 additions & 0 deletions vita3k/nids/include/nids/nids.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit faab9d6

Please sign in to comment.