diff options
| author | FICTURE7 <FICTURE7@gmail.com> | 2021-05-20 16:09:17 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-20 09:09:17 -0300 |
| commit | 0181068016bc9ca98ee71f1d7b6ab6010c4302f0 (patch) | |
| tree | 89f7e20bc6db8c5cd1e0fdfbde1093ccbd5f2f47 /ARMeilleure/Translation | |
| parent | 49745cfa37b247c3e49bfae126bafbe41e166bc6 (diff) | |
Add `BIC/ORR Vd.T, #imm` fast path (#2279)
* Add fast path for BIC Vd.T, #imm
* Add fast path for ORR Vd.T, #imm
* Set PTC version
* Fixup Exception to InvalidOperationException
Diffstat (limited to 'ARMeilleure/Translation')
| -rw-r--r-- | ARMeilleure/Translation/PTC/Ptc.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Translation/PTC/Ptc.cs b/ARMeilleure/Translation/PTC/Ptc.cs index 1bb8659c..a61cf5b7 100644 --- a/ARMeilleure/Translation/PTC/Ptc.cs +++ b/ARMeilleure/Translation/PTC/Ptc.cs @@ -28,7 +28,7 @@ namespace ARMeilleure.Translation.PTC private const string OuterHeaderMagicString = "PTCohd\0\0"; private const string InnerHeaderMagicString = "PTCihd\0\0"; - private const uint InternalVersion = 2285; //! To be incremented manually for each change to the ARMeilleure project. + private const uint InternalVersion = 2279; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |
