diff --git a/ASM/src/config.asm b/ASM/src/config.asm index 06eceebfe..f6100fc42 100644 --- a/ASM/src/config.asm +++ b/ASM/src/config.asm @@ -1,6 +1,12 @@ ;================================================================================================== ; Settings and tables which the front-end may write ;================================================================================================== +; These values must be properly aligned to prevent an Address Error Exception on access. You can +; see what address a symbol was given after building in the build/asm_symbols.txt file. +; Byte values do not need to be aligned. +; Halfword values must be on an even byte boundary. ".align 2" can fix this value type's alignment. +; Word values must be on a byte boundary divisible by 4. ".align 4" can correct a misalignment. +; Doubleword values must be on a byte boundary divisible by 8. ".align 8" can fix a misalignment. ; This is used to determine if and how the cosmetics can be patched ; It this moves then the version will no longer be valid, so it is important that this does not move diff --git a/version.py b/version.py index e2e9f62b0..4467e5553 100644 --- a/version.py +++ b/version.py @@ -1,4 +1,4 @@ -__version__ = '8.1.82' +__version__ = '8.1.83' # This is a supplemental version number for branches based off of main dev. supplementary_version = 0