From c487045b7a5f5f92619f6d2a2b0ebb65e953ddfe Mon Sep 17 00:00:00 2001 From: riperiperi Date: Sat, 18 Jan 2020 23:37:30 +0000 Subject: [PATCH] Remove urgency from DMB comment in MRRC DMB is currently a no-op via the instruction, so it should likely still be a no-op here. --- ARMeilleure/Instructions/InstEmitSystem32.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ARMeilleure/Instructions/InstEmitSystem32.cs b/ARMeilleure/Instructions/InstEmitSystem32.cs index f917f27237..b8365f0ded 100644 --- a/ARMeilleure/Instructions/InstEmitSystem32.cs +++ b/ARMeilleure/Instructions/InstEmitSystem32.cs @@ -154,6 +154,7 @@ namespace ARMeilleure.Instructions switch (op.Opc2) { case 5: // Data Memory Barrier Register + return; // no-op default: throw new NotImplementedException($"Unknown MRC Opc2 0x{op.Opc2:X16} at 0x{op.Address:X16}."); }