Move solution and projects to src
This commit is contained in:
15
src/ARMeilleure/Decoders/OpCode32MemStEx.cs
Normal file
15
src/ARMeilleure/Decoders/OpCode32MemStEx.cs
Normal file
@ -0,0 +1,15 @@
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
class OpCode32MemStEx : OpCode32Mem, IOpCode32MemEx
|
||||
{
|
||||
public int Rd { get; }
|
||||
|
||||
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32MemStEx(inst, address, opCode);
|
||||
|
||||
public OpCode32MemStEx(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||||
{
|
||||
Rd = (opCode >> 12) & 0xf;
|
||||
Rt = (opCode >> 0) & 0xf;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user