1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
Super-Mario-Sunshine-C-Kit/linker/gecko.ld
sup39 c74a9da83b Restructure for all version
Rearrange linker script (in /linker)
Delete unnecessary files
Use extern instead of static in sms.h
2021-12-17 06:33:16 +09:00

16 lines
216 B
Text

SECTIONS {
. = DEFINED(__geckoBaseAddr__) ? __geckoBaseAddr__ : 0x817fa000;
.text : {
*(.text)
}
.rodata : {
*(.rodata*)
}
.data : {
*(.data)
}
. += 0x08;
.sdata : {
*(.sdata)
}
}