diff options
author | Ac_K <Acoustik666@gmail.com> | 2023-06-28 17:36:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 17:36:30 +0200 |
commit | 9288ffd26d0b0b831f62cfc0281c71662d251884 (patch) | |
tree | 190677d6b4344cd7315ffd0616c5bf7b6055734f /src/ARMeilleure/Translation/PTC/Ptc.cs | |
parent | 2cdc82cb910d03e13d36b6a31148b5b87e35fde9 (diff) |
Cpu: Implement VCVT (between floating-point and fixed-point) instruction (#5343)1.1.932
* cpu: Implement VCVT (between floating-point and fixed-point) instruction
Rebase, fix and superseed of https://github.com/Ryujinx/Ryujinx/pull/2915
(Since I only have little CPU knowledge, I hope I have done everything good)
* Update Ptc.cs
* Fix wrong cast
* Rename tests
* Addresses feedback
Co-Authored-By: gdkchan <5624669+gdkchan@users.noreply.github.com>
* Remove extra empty line
---------
Co-authored-by: gdkchan <5624669+gdkchan@users.noreply.github.com>
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 72b60fab..14d4e471 100644 --- a/src/ARMeilleure/Translation/PTC/Ptc.cs +++ b/src/ARMeilleure/Translation/PTC/Ptc.cs @@ -29,7 +29,7 @@ namespace ARMeilleure.Translation.PTC private const string OuterHeaderMagicString = "PTCohd\0\0"; private const string InnerHeaderMagicString = "PTCihd\0\0"; - private const uint InternalVersion = 5292; //! To be incremented manually for each change to the ARMeilleure project. + private const uint InternalVersion = 5343; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |