mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-17 16:02:40 +00:00
Move solution and projects to src
This commit is contained in:
11
src/ARMeilleure/Decoders/OpCodeBImm.cs
Normal file
11
src/ARMeilleure/Decoders/OpCodeBImm.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
class OpCodeBImm : OpCode, IOpCodeBImm
|
||||
{
|
||||
public long Immediate { get; protected set; }
|
||||
|
||||
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeBImm(inst, address, opCode);
|
||||
|
||||
public OpCodeBImm(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user