Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Nov 26, 2023
1 parent b8f814d commit 303e8d2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# splat Release Notes

### 0.19.6

* The `*_END` linker symbol of every section for each segment is now aligned to the configured alignment by default.
* New yaml option: `ld_align_section_vram_end`
* Allows to toggle aligning the `*_END` linker symbol of each section.
* Defaults to `True`.

### 0.19.5

* The `*_VRAM_END` linker symbol is now aligned to the configured alignment by default.
* The `*_VRAM_END` linker symbol for each segment is now aligned to the configured alignment by default.
* New yaml option: `ld_align_segment_vram_end`
* Allows to toggle aligning the `*_VRAM_END` linker symbol.
* Defaults to `True`.
Expand Down
9 changes: 9 additions & 0 deletions docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,15 @@ Setting this to `True` will make the `*_VRAM_END` to be aligned to the configure
Defaults to `True`.


### ld_align_section_vram_end

Allows to toggle aligning the `*_VRAM_END` linker symbol of each section for every segment.

Setting this to `True` will make the `*_END` linker symbol of every section to be aligned to the configured alignment of the segment.

Defaults to `True`.


## C file options

### create_c_files
Expand Down
2 changes: 1 addition & 1 deletion split.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from segtypes.segment import Segment
from util import log, options, palettes, symbols, relocs

VERSION = "0.19.5"
VERSION = "0.19.6"

parser = argparse.ArgumentParser(
description="Split a rom given a rom, a config, and output directory"
Expand Down

0 comments on commit 303e8d2

Please sign in to comment.