コード例 #1
0
ファイル: AThreadState.cs プロジェクト: andrewphb/Ryujinx
 internal void OnSvcCall(long Position, int Imm)
 {
     SvcCall?.Invoke(this, new AInstExceptionEventArgs(Position, Imm));
 }
コード例 #2
0
ファイル: AThreadState.cs プロジェクト: anouarghali/Ryujinx
 internal void OnSvcCall(int Imm)
 {
     SvcCall?.Invoke(this, new AInstExceptionEventArgs(Imm));
 }
コード例 #3
0
 public void OnSvcCall(int Imm)
 {
     SvcCall?.Invoke(this, new SvcEventArgs(Imm));
 }
コード例 #4
0
 internal void OnSvcCall(long position, int imm)
 {
     SvcCall?.Invoke(this, new InstExceptionEventArgs(position, imm));
 }