modified USB buffer location

This commit is contained in:
Markus Fröschle
2013-11-03 14:18:25 +00:00
parent a008f078bd
commit a9cf58589e

View File

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