diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-06-10 21:51:35 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 00:51:35 +0000 |
commit | 193ca3c9a28b63613407c2923f5903e1dd33fdce (patch) | |
tree | c0ce3f32dc145bb98312afdf7538995538fa0d5c /src/ARMeilleure/Translation/PTC/Ptc.cs | |
parent | eb0bb36bbfc3a4f5f2ac1c8721e192239f899a1d (diff) |
Implement fast path for AES crypto instructions on Arm64 (#5281)1.1.883
* Implement fast path for AES crypto instructions on Arm64
* PPTC version bump
* Use AES HW feature check
Diffstat (limited to 'src/ARMeilleure/Translation/PTC/Ptc.cs')
-rw-r--r-- | src/ARMeilleure/Translation/PTC/Ptc.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ARMeilleure/Translation/PTC/Ptc.cs b/src/ARMeilleure/Translation/PTC/Ptc.cs index ea4e715b..366dea6b 100644 --- a/src/ARMeilleure/Translation/PTC/Ptc.cs +++ b/src/ARMeilleure/Translation/PTC/Ptc.cs @@ -30,7 +30,7 @@ namespace ARMeilleure.Translation.PTC private const string OuterHeaderMagicString = "PTCohd\0\0"; private const string InnerHeaderMagicString = "PTCihd\0\0"; - private const uint InternalVersion = 4661; //! To be incremented manually for each change to the ARMeilleure project. + private const uint InternalVersion = 5281; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |