Skip to content

Commit

Permalink
Merge 'Update config.asm' (#2295)
Browse files Browse the repository at this point in the history
  • Loading branch information
fenhl committed Sep 2, 2024
2 parents ca61663 + 67bf21b commit 87019a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ASM/src/config.asm
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 87019a9

Please sign in to comment.