-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathld_script.ld
More file actions
57 lines (48 loc) · 1.26 KB
/
ld_script.ld
File metadata and controls
57 lines (48 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
SECTIONS
{
. = 0x2000000;
ewram (NOLOAD) :
ALIGN(0)
{
}
. = 0x3000000;
.bss (NOLOAD) :
ALIGN(0)
{
}
. = 0x8000000;
.text :
{
asm/text08000000.o(.text);
asm/heap.o(.text);
asm/text08018E24.o(.text);
src/process.o(.text);
asm/text08019CA4.o(.text);
src/game_boy_player_logo.o(.text);
asm/text0801A548.o(.text);
src/option_screens.o(.text);
asm/option_screens.o(.text);
asm/text080542C4.o(.text);
src/title_screen.o(.text);
asm/text08057568.o(.text);
asm/rodata081DD790.o(.rodata);
src/title_screen.o(.rodata);
asm/rodata081E2764.o(.rodata);
asm/mariobros.o(.text);
}
/* DWARF 2 sections */
.debug_aranges 0 : { *(.debug_aranges) }
.debug_pubnames 0 : { *(.debug_pubnames) }
.debug_info 0 : { *(.debug_info) }
.debug_abbrev 0 : { *(.debug_abbrev) }
.debug_line 0 : { *(.debug_line) }
.debug_frame 0 : { *(.debug_frame) }
.debug_str 0 : { *(.debug_str) }
.debug_loc 0 : { *(.debug_loc) }
.debug_macinfo 0 : { *(.debug_macinfo) }
/* Discard everything not specifically mentioned above. */
/DISCARD/ :
{
*(*);
}
}