corrected indents

This commit is contained in:
Markus Fröschle
2013-12-07 07:06:35 +00:00
parent 98a84cb523
commit fbd120b7b9

View File

@@ -91,28 +91,28 @@ SECTIONS
#if (TARGET_ADDRESS == BOOTFLASH_BASE_ADDRESS) #if (TARGET_ADDRESS == BOOTFLASH_BASE_ADDRESS)
/* BaS in RAM */ /* BaS in RAM */
.bas : .bas :
/* /*
* The BaS is stored in the flash, just after the init part. * The BaS is stored in the flash, just after the init part.
* Then it will be copied to its final location in the RAM. * Then it will be copied to its final location in the RAM.
* This data must be aligned for optimal copy loop speed. * This data must be aligned for optimal copy loop speed.
*/ */
AT (ALIGN(ADDR(.text) + SIZEOF(.text), 4)) AT (ALIGN(ADDR(.text) + SIZEOF(.text), 4))
{ {
. = ALIGN(16); . = ALIGN(16);
__BAS_DATA_START = .; __BAS_DATA_START = .;
*(.data) *(.data)
__BAS_DATA_END = .; __BAS_DATA_END = .;
__BAS_BSS_START = .; __BAS_BSS_START = .;
*(.bss) *(.bss)
__BAS_BSS_END = .; __BAS_BSS_END = .;
/* The BaS copy routine assumes that tha BaS size /* The BaS copy routine assumes that tha BaS size
* is a multiple of the following value. * is a multiple of the following value.
*/ */
. = ALIGN(16); . = ALIGN(16);
_usb_buffer = .; _usb_buffer = .;
//. = . + USB_BUFFER_SIZE; //. = . + USB_BUFFER_SIZE;
} > bas_ram } > bas_ram
#endif #endif
/* /*