mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Update all the gba.ld files
This commit is contained in:
parent
90b5e39b42
commit
28513335fb
|
@ -12,11 +12,7 @@ MEMORY {
|
||||||
|
|
||||||
__text_start = ORIGIN(rom);
|
__text_start = ORIGIN(rom);
|
||||||
|
|
||||||
INPUT (
|
INPUT (agb.a)
|
||||||
crt0.o
|
|
||||||
interrupt_handler.o
|
|
||||||
mixer.o
|
|
||||||
)
|
|
||||||
|
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
. = __text_start;
|
. = __text_start;
|
||||||
|
|
|
@ -12,11 +12,7 @@ MEMORY {
|
||||||
|
|
||||||
__text_start = ORIGIN(rom);
|
__text_start = ORIGIN(rom);
|
||||||
|
|
||||||
INPUT (
|
INPUT (agb.a)
|
||||||
crt0.o
|
|
||||||
interrupt_handler.o
|
|
||||||
mixer.o
|
|
||||||
)
|
|
||||||
|
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
. = __text_start;
|
. = __text_start;
|
||||||
|
|
|
@ -12,11 +12,7 @@ MEMORY {
|
||||||
|
|
||||||
__text_start = ORIGIN(rom);
|
__text_start = ORIGIN(rom);
|
||||||
|
|
||||||
INPUT (
|
INPUT (agb.a)
|
||||||
crt0.o
|
|
||||||
interrupt_handler.o
|
|
||||||
mixer.o
|
|
||||||
)
|
|
||||||
|
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
. = __text_start;
|
. = __text_start;
|
||||||
|
|
|
@ -12,15 +12,15 @@ MEMORY {
|
||||||
|
|
||||||
__text_start = ORIGIN(rom);
|
__text_start = ORIGIN(rom);
|
||||||
|
|
||||||
|
INPUT (agb.a)
|
||||||
|
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
. = __text_start;
|
. = __text_start;
|
||||||
|
|
||||||
.crt0 : {
|
|
||||||
KEEP (crt0.o(.text));
|
|
||||||
. = ALIGN(4);
|
|
||||||
} > rom
|
|
||||||
|
|
||||||
.text : {
|
.text : {
|
||||||
|
KEEP(*(.crt0));
|
||||||
|
*(.crt0 .crt0*);
|
||||||
*(.text .text*);
|
*(.text .text*);
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
} > rom
|
} > rom
|
||||||
|
|
Loading…
Reference in a new issue