From 9670c096e410add36314a247b77334c0c1d61256 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sat, 26 May 2018 17:49:21 -0300 Subject: Initial work to support AArch32 with a interpreter, plus nvmm stubs (not used for now) --- ChocolArm64/Decoder32/A32OpCodeBImmAl.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ChocolArm64/Decoder32/A32OpCodeBImmAl.cs (limited to 'ChocolArm64/Decoder32/A32OpCodeBImmAl.cs') diff --git a/ChocolArm64/Decoder32/A32OpCodeBImmAl.cs b/ChocolArm64/Decoder32/A32OpCodeBImmAl.cs new file mode 100644 index 00000000..71bca7f9 --- /dev/null +++ b/ChocolArm64/Decoder32/A32OpCodeBImmAl.cs @@ -0,0 +1,16 @@ +using ChocolArm64.Instruction; + +namespace ChocolArm64.Decoder32 +{ + class A32OpCodeBImmAl : A32OpCode + { + public int Imm; + public int H; + + public A32OpCodeBImmAl(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) + { + Imm = (OpCode << 8) >> 6; + H = (OpCode >> 23) & 2; + } + } +} \ No newline at end of file -- cgit v1.2.3