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