Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update config.asm #2295

Merged
merged 2 commits into from
Sep 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading