mirror of
https://github.com/par274/sharpemu.git
synced 2026-08-01 15:39:47 +08:00
21 lines
565 B
C#
21 lines
565 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
using SharpEmu.HLE;
|
|
|
|
namespace SharpEmu.Libs.Np;
|
|
|
|
public static class NpSessionSignalingExports
|
|
{
|
|
[SysAbiExport(
|
|
Nid = "ysmw6J-P8Ak",
|
|
ExportName = "sceNpSessionSignalingInitialize",
|
|
Target = Generation.Gen4 | Generation.Gen5,
|
|
LibraryName = "libSceNpSessionSignaling")]
|
|
public static int NpSessionSignalingInitialize(CpuContext ctx)
|
|
{
|
|
ctx[CpuRegister.Rax] = 0;
|
|
return (int)OrbisGen2Result.ORBIS_GEN2_OK;
|
|
}
|
|
}
|