mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
update multiboot linker
This commit is contained in:
parent
28513335fb
commit
13df836b91
|
@ -11,18 +11,17 @@ MEMORY {
|
|||
|
||||
__text_start = ORIGIN(ewram);
|
||||
|
||||
INPUT (agb.a)
|
||||
|
||||
SECTIONS {
|
||||
. = __text_start;
|
||||
|
||||
.crt0 : {
|
||||
KEEP (crt0.o(.text));
|
||||
. = ALIGN(4);
|
||||
} > ewram
|
||||
|
||||
.text : {
|
||||
KEEP(*(.crt0));
|
||||
*(.crt0 .crt0*);
|
||||
*(.text .text*);
|
||||
. = ALIGN(4);
|
||||
} > ewram
|
||||
} > rom
|
||||
__text_end = .;
|
||||
|
||||
.rodata : {
|
||||
|
|
Loading…
Reference in a new issue