From 918359acdbd67f430d43f5295976e7d3d6fbef5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sun, 3 Nov 2013 14:18:25 +0000 Subject: [PATCH] modified USB buffer location --- bas.lk.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bas.lk.in b/bas.lk.in index 6e59054..0181b2a 100644 --- a/bas.lk.in +++ b/bas.lk.in @@ -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