Add FCVTL and FCVTN instruction (no Half support yet), stub SvcClearEvent
This commit is contained in:
parent
c9ef25681d
commit
0e343a748d
4 changed files with 72 additions and 0 deletions
|
@ -20,6 +20,15 @@ namespace Ryujinx.Core.OsHle.Svc
|
|||
Ns.Os.ExitProcess(ThreadState.ProcessId);
|
||||
}
|
||||
|
||||
private void SvcClearEvent(AThreadState ThreadState)
|
||||
{
|
||||
int Handle = (int)ThreadState.X0;
|
||||
|
||||
//TODO: Implement events.
|
||||
|
||||
ThreadState.X0 = (int)SvcResult.Success;
|
||||
}
|
||||
|
||||
private void SvcCloseHandle(AThreadState ThreadState)
|
||||
{
|
||||
int Handle = (int)ThreadState.X0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue