Stub a few services, add support for generating call stacks on the CPU
This commit is contained in:
parent
4906acdde9
commit
bd9b1e2c6b
20 changed files with 267 additions and 41 deletions
|
@ -3,6 +3,7 @@ using Ryujinx.Core.OsHle.Services.Am;
|
|||
using Ryujinx.Core.OsHle.Services.Apm;
|
||||
using Ryujinx.Core.OsHle.Services.Aud;
|
||||
using Ryujinx.Core.OsHle.Services.Bsd;
|
||||
using Ryujinx.Core.OsHle.Services.Caps;
|
||||
using Ryujinx.Core.OsHle.Services.Friend;
|
||||
using Ryujinx.Core.OsHle.Services.FspSrv;
|
||||
using Ryujinx.Core.OsHle.Services.Hid;
|
||||
|
@ -57,9 +58,18 @@ namespace Ryujinx.Core.OsHle.Services
|
|||
case "bsd:u":
|
||||
return new IClient();
|
||||
|
||||
case "caps:a":
|
||||
return new IAlbumAccessorService();
|
||||
|
||||
case "caps:ss":
|
||||
return new IScreenshotService();
|
||||
|
||||
case "friend:a":
|
||||
return new IServiceCreator();
|
||||
|
||||
case "friend:u":
|
||||
return new IServiceCreator();
|
||||
|
||||
case "fsp-srv":
|
||||
return new IFileSystemProxy();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue