MochaLite/ios_mcp/link.ld
dimok789 43f1af08a3 wip commit of the FAT32 nativ USB support
NOTE:
This is a work in progress commit. It includes debug and test functions and some features that existed before might not even work. It is not finished and not very well tested. So it's warning to NOT use this for everyday playing! This is target for developers to look some stuff up that I was working on. See also my post on gbatemp for more information.
2017-02-07 18:15:16 +01:00

24 lines
240 B
Plaintext

OUTPUT_ARCH(arm)
SECTIONS
{
.text 0x05116000 : {
_text_start = .;
build/crt0.o(.init)
*(.text*)
*(.rodata*)
}
_text_end = .;
.bss 0x050BD000 : {
_bss_start = .;
*(.bss*);
}
_bss_end = .;
/DISCARD/ : {
*(*);
}
}