diff options
| author | Piyachet Kanda <piyachetk@gmail.com> | 2021-12-09 03:05:59 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-08 17:05:59 -0300 |
| commit | 3e2f89b4fd863e7052721e735036fc24fd740b40 (patch) | |
| tree | ae28177844d9c138a89f8c3ef4068b1efb773c7a /ARMeilleure/Translation | |
| parent | acc0b0f3138b0ea4d573db5152927026c29bd61d (diff) | |
Implement UHADD8 instruction (#2908)
* Implement UHADD8 instruction along with a test unit
* Update PTC revision number
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 04cab561..4375832b 100644 --- a/ARMeilleure/Translation/PTC/Ptc.cs +++ b/ARMeilleure/Translation/PTC/Ptc.cs @@ -27,7 +27,7 @@ namespace ARMeilleure.Translation.PTC private const string OuterHeaderMagicString = "PTCohd\0\0"; private const string InnerHeaderMagicString = "PTCihd\0\0"; - private const uint InternalVersion = 2721; //! To be incremented manually for each change to the ARMeilleure project. + private const uint InternalVersion = 2908; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |
