diff options
Diffstat (limited to 'ARMeilleure/Decoders/OpCodeBImmCond.cs')
| -rw-r--r-- | ARMeilleure/Decoders/OpCodeBImmCond.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ARMeilleure/Decoders/OpCodeBImmCond.cs b/ARMeilleure/Decoders/OpCodeBImmCond.cs index f898821a..b57a7ea8 100644 --- a/ARMeilleure/Decoders/OpCodeBImmCond.cs +++ b/ARMeilleure/Decoders/OpCodeBImmCond.cs @@ -2,7 +2,9 @@ namespace ARMeilleure.Decoders { class OpCodeBImmCond : OpCodeBImm, IOpCodeCond { - public Condition Cond { get; private set; } + public Condition Cond { get; } + + public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeBImmCond(inst, address, opCode); public OpCodeBImmCond(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { |
