aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/OpCode32Mem.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /ARMeilleure/Decoders/OpCode32Mem.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'ARMeilleure/Decoders/OpCode32Mem.cs')
-rw-r--r--ARMeilleure/Decoders/OpCode32Mem.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/ARMeilleure/Decoders/OpCode32Mem.cs b/ARMeilleure/Decoders/OpCode32Mem.cs
deleted file mode 100644
index ceb1e49f..00000000
--- a/ARMeilleure/Decoders/OpCode32Mem.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using ARMeilleure.Instructions;
-
-namespace ARMeilleure.Decoders
-{
- class OpCode32Mem : OpCode32, IOpCode32Mem
- {
- public int Rt { get; protected set; }
- public int Rn { get; }
-
- public int Immediate { get; protected set; }
-
- public bool Index { get; }
- public bool Add { get; }
- public bool WBack { get; }
- public bool Unprivileged { get; }
-
- public bool IsLoad { get; }
-
- public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32Mem(inst, address, opCode);
-
- public OpCode32Mem(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
- {
- Rt = (opCode >> 12) & 0xf;
- Rn = (opCode >> 16) & 0xf;
-
- bool isLoad = (opCode & (1 << 20)) != 0;
- bool w = (opCode & (1 << 21)) != 0;
- bool u = (opCode & (1 << 23)) != 0;
- bool p = (opCode & (1 << 24)) != 0;
-
- Index = p;
- Add = u;
- WBack = !p || w;
- Unprivileged = !p && w;
-
- IsLoad = isLoad || inst.Name == InstName.Ldrd;
- }
- }
-} \ No newline at end of file