modified USB buffer location

This commit is contained in:
Markus Fröschle
2013-11-03 14:18:25 +00:00
parent 7815c29075
commit 918359acdb

View File

@@ -69,16 +69,16 @@ SECTIONS
*(.data)
__BAS_DATA_END = .;
*(.bss)
. = ALIGN(16);
#endif /* TARGET_ADDRESS */
#if (FORMAT == elf32-m68k)
*(.rodata)
*(.rodata.*)
#endif
#if (TARGET_ADDRESS < 0x1FFFFFFF && TARGET_ADDRESS > 0)
. = ALIGN(16);
_usb_buffer = .;
//. = . + USB_BUFFER_SIZE;
#endif
} > bas_rom
#if (TARGET_ADDRESS == BOOTFLASH_BASE_ADDRESS)
@@ -102,7 +102,7 @@ SECTIONS
*/
. = ALIGN(16);
_usb_buffer = .;
//. = . + USB_BUFFER_SIZE;
. = . + USB_BUFFER_SIZE;
} > bas_ram
#endif