mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-04-09 16:57:51 +00:00
18 lines
362 B
C#
18 lines
362 B
C#
namespace Ryujinx.Horizon.Ins
|
|
{
|
|
class InsMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
InsIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|