Split main project into core,graphics and chocolarm4 subproject (#29)
This commit is contained in:
11
ChocolArm64/Decoder/AOpCodeBImm.cs
Normal file
11
ChocolArm64/Decoder/AOpCodeBImm.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using ChocolArm64.Instruction;
|
||||
|
||||
namespace ChocolArm64.Decoder
|
||||
{
|
||||
class AOpCodeBImm : AOpCode
|
||||
{
|
||||
public long Imm { get; protected set; }
|
||||
|
||||
public AOpCodeBImm(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user