mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-25 15:41:31 -05:00
Add support for changing start address in 3dsx linker script
Use LDFLAGS --defsym="__start__=0x14000000" for example to change start address
This commit is contained in:
parent
ac39e253ff
commit
3fcebd74b2
|
|
@ -13,8 +13,8 @@ SECTIONS
|
||||||
{
|
{
|
||||||
/* =========== CODE section =========== */
|
/* =========== CODE section =========== */
|
||||||
|
|
||||||
. = 0x100000;
|
PROVIDE(__start__ = 0x100000);
|
||||||
__start__ = . ;
|
. = __start__;
|
||||||
|
|
||||||
.text ALIGN(0x1000) :
|
.text ALIGN(0x1000) :
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user