User Tools

Site Tools


gba:guide:memory_management

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
gba:guide:memory_management [2024/05/07 19:17] asiegba:guide:memory_management [2024/05/08 03:52] (current) asie
Line 1: Line 1:
 ====== Linking and memory management ====== ====== Linking and memory management ======
  
-===== wf-gbatool link =====+===== Using wf-gbatool link =====
  
 In Wonderful's ecosystem, instead of relying on the linker and a post-link tool, linker wrappers are utilized instead. This allows handling everything from object linking to program file output in one step on the user side, as well as implementing high-level configuration facilities which generate a link script. In Wonderful's ecosystem, instead of relying on the linker and a post-link tool, linker wrappers are utilized instead. This allows handling everything from object linking to program file output in one step on the user side, as well as implementing high-level configuration facilities which generate a link script.
Line 15: Line 15:
   $ wf-gbatool link rom|multiboot -c other_wfconfig.toml -o program.gba --output-elf program.elf -- [objects...] [flags...]   $ wf-gbatool link rom|multiboot -c other_wfconfig.toml -o program.gba --output-elf program.elf -- [objects...] [flags...]
  
-===== Cartridge output configuration =====+===== Cartridge metadata =====
  
 GBA cartridges contain some user-configurable metadata. To edit it, create a ''wfconfig.toml'' file with the following contents: GBA cartridges contain some user-configurable metadata. To edit it, create a ''wfconfig.toml'' file with the following contents:
Line 25: Line 25:
 code = "XXXX" code = "XXXX"
 maker = "WF" maker = "WF"
 +</code>
 +
 +===== Default memory placement =====
 +
 +The GBA contains two separate blocks of memory: 32 kilobytes of fast IWRAM and 256 kilobytes of slower EWRAM. In Wonderful's GBA target, memory which is not explicitly marked as belonging to IWRAM or EWRAM with a section attribute is placed in EWRAM by default. However, this can be changed to IWRAM by using he following wfconfig.toml configuration:
 +
 +<code TOML>
 +[memory]
 +data-region = "iwram"
 </code> </code>
  
gba/guide/memory_management.1715109445.txt.gz · Last modified: 2024/05/07 19:17 by asie