subrepo: subdir: "emummc" merged: "2fc47cbb8" upstream: origin: "https://github.com/lulle2007200/emuMMC.git" branch: "develop" commit: "2fc47cbb8" git-subrepo: version: "0.4.9" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "30db3b8"
26 lines
351 B
Plaintext
Vendored
26 lines
351 B
Plaintext
Vendored
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
KEEP(*(._boot_cfg));
|
|
KEEP(*(._ipl_version));
|
|
*(.text._irq_setup);
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
}
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(COMMON)
|
|
*(.bss*)
|
|
__bss_end = .;
|
|
}
|
|
}
|