mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-25 19:44:21 -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 =========== */
|
||||
|
||||
. = 0x100000;
|
||||
__start__ = . ;
|
||||
PROVIDE(__start__ = 0x100000);
|
||||
. = __start__;
|
||||
|
||||
.text ALIGN(0x1000) :
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user