diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2022-09-10 22:51:00 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-10 22:51:00 -0300 |
| commit | f468db76028086a6645856383fecdf8180b04dd1 (patch) | |
| tree | cb296f05888eae9fa04d386391525d37e9031192 /ARMeilleure/Decoders/OpCode32AluBf.cs | |
| parent | c5f1d1749aeb4a1fff8f7552b949f652eaefe52a (diff) | |
Implement Thumb (32-bit) memory (ordered), multiply, extension and bitfield instructions (#3687)
* Implement Thumb (32-bit) memory (ordered), multiply and bitfield instructions
* Remove public from interface
* Fix T32 BL immediate and implement signed and unsigned extend instructions
Diffstat (limited to 'ARMeilleure/Decoders/OpCode32AluBf.cs')
| -rw-r--r-- | ARMeilleure/Decoders/OpCode32AluBf.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ARMeilleure/Decoders/OpCode32AluBf.cs b/ARMeilleure/Decoders/OpCode32AluBf.cs index f8dc6db0..0cee34e6 100644 --- a/ARMeilleure/Decoders/OpCode32AluBf.cs +++ b/ARMeilleure/Decoders/OpCode32AluBf.cs @@ -6,12 +6,8 @@ public int Rn { get; } public int Msb { get; } - public int Lsb { get; } - public int SourceMask => (int)(0xFFFFFFFF >> (31 - Msb)); - public int DestMask => SourceMask & (int)(0xFFFFFFFF << Lsb); - public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32AluBf(inst, address, opCode); public OpCode32AluBf(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) |
