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/dol.ld

17 lines
212 B
Text
Raw Permalink Normal View History

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