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/AOpCodeSimdMemSs.cs | |
parent | 9f612682e0026a82f13e28b0e3b610e129ee98a5 (diff) |
Only throw undefined instruction exception at execution, not at translation stage
Diffstat (limited to 'Ryujinx/Cpu/Decoder/AOpCodeSimdMemSs.cs')
-rw-r--r-- | Ryujinx/Cpu/Decoder/AOpCodeSimdMemSs.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Cpu/Decoder/AOpCodeSimdMemSs.cs b/Ryujinx/Cpu/Decoder/AOpCodeSimdMemSs.cs index c2917dfc..5bad95ed 100644 --- a/Ryujinx/Cpu/Decoder/AOpCodeSimdMemSs.cs +++ b/Ryujinx/Cpu/Decoder/AOpCodeSimdMemSs.cs @@ -14,7 +14,7 @@ namespace ChocolArm64.Decoder public bool Replicate { get; private set; } public bool WBack { get; private set; } - public AOpCodeSimdMemSs(AInst Inst, long Position, int OpCode) : base(Inst, Position) + public AOpCodeSimdMemSs(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) { int Size = (OpCode >> 10) & 3; int S = (OpCode >> 12) & 1; |