Changeset 758 for trunk/softs/tsar_boot/conf
- Timestamp:
- Jul 24, 2014, 3:19:18 PM (10 years ago)
- Location:
- trunk/softs/tsar_boot/conf
- Files:
-
- 4 added
- 3 deleted
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/tsar_boot/conf/platform_de2_115_fpga/ldscript
r757 r758 1 1 /********************************************************** 2 File : ldscript 2 File : ldscript 3 3 Author : Cesar Fuguet 4 4 Date : June 2011 5 5 **********************************************************/ 6 6 7 /* Definition of the base address for code segment */7 /* Definition of the base address for segments */ 8 8 9 seg_reset_code_base = 0xBFC00000; 10 11 seg_reset_stack_base = 0x08000000 - 0x4000;; 12 seg_reset_stack_size = 0x4000; 9 seg_code_base = 0xFF000000; 10 seg_data_base = 0x03F00000; 13 11 14 12 /* Grouping sections into segments */ … … 18 16 SECTIONS 19 17 { 20 . = seg_ reset_code_base;21 .text : 18 . = seg_code_base; 19 .text : 22 20 { 23 21 *(.reset) … … 29 27 } 30 28 31 . = seg_ reset_stack_base;32 .bss ALIGN(0x4) (NOLOAD) : 29 . = seg_data_base; 30 .bss ALIGN(0x4) (NOLOAD) : 33 31 { 34 32 *(.data) -
trunk/softs/tsar_boot/conf/platform_tsar_generic_iob/ldscript
r741 r758 1 1 /********************************************************** 2 File : ldscript 2 File : ldscript 3 3 Author : Cesar Fuguet 4 4 Date : June 2011 5 5 **********************************************************/ 6 6 7 /* Definition of the base address for code segment */7 /* Definition of the base address for segments */ 8 8 9 seg_reset_code_base = 0xBFC00000; 10 11 seg_reset_stack_base = 0x000D0000; 12 seg_reset_stack_size = 0x00050000; 9 seg_code_base = 0xBFC00000; 10 seg_data_base = 0x000D0000; 13 11 14 12 /* Grouping sections into segments */ … … 18 16 SECTIONS 19 17 { 20 . = seg_ reset_code_base;21 .text : 18 . = seg_code_base; 19 .text : 22 20 { 23 21 *(.reset) … … 29 27 } 30 28 31 . = seg_ reset_stack_base;32 .bss ALIGN(0x4) (NOLOAD) : 29 . = seg_data_base; 30 .bss ALIGN(0x4) (NOLOAD) : 33 31 { 34 32 *(.data)
Note: See TracChangeset
for help on using the changeset viewer.