aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders32
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders32')
-rw-r--r--ChocolArm64/Decoders32/A32OpCode.cs15
-rw-r--r--ChocolArm64/Decoders32/A32OpCodeBImmAl.cs16
2 files changed, 0 insertions, 31 deletions
diff --git a/ChocolArm64/Decoders32/A32OpCode.cs b/ChocolArm64/Decoders32/A32OpCode.cs
deleted file mode 100644
index f0177a43..00000000
--- a/ChocolArm64/Decoders32/A32OpCode.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ChocolArm64.Decoders;
-using ChocolArm64.Instructions;
-
-namespace ChocolArm64.Decoders32
-{
- class A32OpCode : OpCode64
- {
- public Cond Cond { get; private set; }
-
- public A32OpCode(Inst inst, long position, int opCode) : base(inst, position, opCode)
- {
- Cond = (Cond)((uint)opCode >> 28);
- }
- }
-} \ No newline at end of file
diff --git a/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs b/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs
deleted file mode 100644
index c4a196b6..00000000
--- a/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ChocolArm64.Instructions;
-
-namespace ChocolArm64.Decoders32
-{
- class A32OpCodeBImmAl : A32OpCode
- {
- public int Imm;
- public int H;
-
- public A32OpCodeBImmAl(Inst inst, long position, int opCode) : base(inst, position, opCode)
- {
- Imm = (opCode << 8) >> 6;
- H = (opCode >> 23) & 2;
- }
- }
-} \ No newline at end of file