Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-04-23 21:54:00 +0400
committerNick Clifton <nickc@redhat.com>2003-04-23 21:54:00 +0400
commit5ee50240760867e5907468d932f898ba1cd8a41f (patch)
tree1ad58016a1472ee03d7eb7523bb7e0330dcd6210 /libgloss/xstormy16/eva_app.ld
parent5f92bef8a8193a3b9a089f39da768cbcd3b40df5 (diff)
Handle the simulation of programs that load with data in ROM which needs to be
copied into RAM before execution starts.
Diffstat (limited to 'libgloss/xstormy16/eva_app.ld')
-rw-r--r--libgloss/xstormy16/eva_app.ld2
1 files changed, 2 insertions, 0 deletions
diff --git a/libgloss/xstormy16/eva_app.ld b/libgloss/xstormy16/eva_app.ld
index 484a53297..5afc2b494 100644
--- a/libgloss/xstormy16/eva_app.ld
+++ b/libgloss/xstormy16/eva_app.ld
@@ -16,6 +16,8 @@ SECTIONS
__malloc_start = 0x800;
.data :
{
+ __rdata = .;
+ __data = .;
*(.data)
*(.data.*)
*(.gnu.linkonce.d.*)