diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-02-10 14:20:46 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-10 14:20:46 -0300 |
| commit | 55743c0cba7d1f3daafcedff4f9f623fdcf24b83 (patch) | |
| tree | 6f2257fff3925a8887de90aebeb003be68241d8b /Ryujinx/Cpu/Decoder/AOpCodeBReg.cs | |
| parent | 9f612682e0026a82f13e28b0e3b610e129ee98a5 (diff) | |
Only throw undefined instruction exception at execution, not at translation stage
Diffstat (limited to 'Ryujinx/Cpu/Decoder/AOpCodeBReg.cs')
| -rw-r--r-- | Ryujinx/Cpu/Decoder/AOpCodeBReg.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Cpu/Decoder/AOpCodeBReg.cs b/Ryujinx/Cpu/Decoder/AOpCodeBReg.cs index a71fc338..c9c600af 100644 --- a/Ryujinx/Cpu/Decoder/AOpCodeBReg.cs +++ b/Ryujinx/Cpu/Decoder/AOpCodeBReg.cs @@ -6,7 +6,7 @@ namespace ChocolArm64.Decoder { public int Rn { get; private set; } - public AOpCodeBReg(AInst Inst, long Position, int OpCode) : base(Inst, Position) + public AOpCodeBReg(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) { int Op4 = (OpCode >> 0) & 0x1f; int Op2 = (OpCode >> 16) & 0x1f; |
