URL
https://opencores.org/ocsvn/amber/amber/trunk
Subversion Repositories amber
Compare Revisions
- This comparison shows the changes necessary to convert path
/amber/trunk/sw/hello-world
- from Rev 11 to Rev 43
- ↔ Reverse comparison
Rev 11 → Rev 43
/sections.lds
48,36 → 48,16
|
SECTIONS { |
|
. = 0x0080e400; |
. = 0x00000000; |
|
.text : { start*(.text); *(.text); } |
|
._start : |
{ |
start*(.text) |
} |
|
.text : |
{ |
*(.text) |
} |
.data : { *(.data); } |
|
.rodata : { *(.rodata); } |
|
.rodata : |
{ |
*(.rodata) |
} |
.bss : { *(.bss); } |
|
.data : |
{ |
*(.data) |
} |
.stack : { __stack = . ; } |
|
.bss : |
{ |
*(.bss) |
} |
|
.stack : |
{ |
__stack = . ; |
} |
|
} |
/Makefile
45,5 → 45,6
LDS = sections.lds |
|
USE_MINI_LIBC = 1 |
CREATE_FLT_OUTPUT = 1 |
|
include ../include/common.mk |
/start.S
68,6 → 68,8
AdrStack: .word 0x8000000 |
|
|
.section .bss |
.word 0x0 |
/* ========================================================================= */ |
/* ========================================================================= */ |
|
.
Property changes :
Modified: svn:ignore
## -2,4 +2,6 ##
*.mem
*.dis
*.elf
-*_memparams.v
+*.flt
+*.gdb
+*_memparams*.v