blob: ca46e08f8792a0eab72b76efaba2212da7b20a1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using ChocolArm64.Instructions;
namespace ChocolArm64.Decoders
{
class OpCode32MemImm : OpCode32Mem
{
public OpCode32MemImm(Inst inst, long position, int opCode) : base(inst, position, opCode)
{
Imm = opCode & 0xfff;
}
}
}
|