diff options
| author | FICTURE7 <FICTURE7@gmail.com> | 2021-10-05 21:04:55 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-05 14:04:55 -0300 |
| commit | ecc64c934da43f881c2821bc9bc52ee42e55af2f (patch) | |
| tree | eb75ff0b3e0426b59b6d0f8c9bed6078f06ef15e /ARMeilleure/Translation | |
| parent | 11b437eafc59f81e767c6389c16dcbb5c7e82f11 (diff) | |
Add `Operand.Label` support to `Assembler` (#2680)
* Add `Operand.Label` support to `Assembler`
This adds label support to `Assembler` and enables branch tightening
when compiling with relocatables. Jump management and patching has been
moved to the `Assembler`.
* Move instruction table to `Assembler.Table`
* Set PTC internal version
* Rename `Assembler.Table` to `AssemblerTable`
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 8bebb844..ba5116a3 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 = 2693; //! To be incremented manually for each change to the ARMeilleure project. + private const uint InternalVersion = 2680; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |
