Fixed errors in ARM linker. Converted all files to Unix format.

This commit is contained in:
L. Bradley LaBoon 2013-12-06 14:20:46 -05:00
parent 74035befbf
commit bf60ad29f4
8 changed files with 386 additions and 386 deletions

View File

@ -3,7 +3,7 @@ ENTRY(Start)
SECTIONS SECTIONS
{ {
/* Starts at LOADER_ADDR */ /* Starts at LOADER_ADDR */
. = 0x8000 . = 0x8000;
_start = .; _start = .;
_text_start = .; _text_start = .;
.text : .text :
@ -19,7 +19,7 @@ SECTIONS
{ {
*(.rodata) *(.rodata)
} }
. = ALIGN(4096) . = ALIGN(4096);
_rodata_end = .; _rodata_end = .;
_data_start = .; _data_start = .;
@ -36,7 +36,7 @@ SECTIONS
bss = .; bss = .;
*(.bss) *(.bss)
} }
. = ALIGN(4096) . = ALIGN(4096);
_bss_end = .; _bss_end = .;
_end = .; _end = .;
} }