* shared/startup/linkcmds.base: Split up fast region.
This commit is contained in:
Sebastian Huber
2010-12-03 10:09:59 +00:00
parent dd853a3973
commit e792ecf4ff
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/startup/linkcmds.base: Split up fast region.
2010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de> 2010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de>
* preinstall.am, shared/lpc/include/lpc-i2s.h, * preinstall.am, shared/lpc/include/lpc-i2s.h,

View File

@@ -364,7 +364,7 @@ SECTIONS {
*(.bsp_fast_text) *(.bsp_fast_text)
. = ALIGN (bsp_section_align); . = ALIGN (bsp_section_align);
bsp_section_fast_text_end = .; bsp_section_fast_text_end = .;
} > REGION_FAST AT > REGION_FAST_LOAD } > REGION_FAST_TEXT AT > REGION_FAST_TEXT_LOAD
bsp_section_fast_text_size = bsp_section_fast_text_end - bsp_section_fast_text_begin; bsp_section_fast_text_size = bsp_section_fast_text_end - bsp_section_fast_text_begin;
bsp_section_fast_text_load_begin = LOADADDR (.fast_text); bsp_section_fast_text_load_begin = LOADADDR (.fast_text);
bsp_section_fast_text_load_end = bsp_section_fast_text_load_begin + bsp_section_fast_text_size; bsp_section_fast_text_load_end = bsp_section_fast_text_load_begin + bsp_section_fast_text_size;
@@ -374,7 +374,7 @@ SECTIONS {
*(.bsp_fast_data) *(.bsp_fast_data)
. = ALIGN (bsp_section_align); . = ALIGN (bsp_section_align);
bsp_section_fast_data_end = .; bsp_section_fast_data_end = .;
} > REGION_FAST AT > REGION_FAST_LOAD } > REGION_FAST_DATA AT > REGION_FAST_DATA_LOAD
bsp_section_fast_data_size = bsp_section_fast_data_end - bsp_section_fast_data_begin; bsp_section_fast_data_size = bsp_section_fast_data_end - bsp_section_fast_data_begin;
bsp_section_fast_data_load_begin = LOADADDR (.fast_data); bsp_section_fast_data_load_begin = LOADADDR (.fast_data);
bsp_section_fast_data_load_end = bsp_section_fast_data_load_begin + bsp_section_fast_data_size; bsp_section_fast_data_load_end = bsp_section_fast_data_load_begin + bsp_section_fast_data_size;