moved .data where it belongs (to RAM)

This commit is contained in:
Markus Fröschle
2012-10-22 11:08:26 +00:00
parent 04cbe047a1
commit ddaf164925
4 changed files with 12 additions and 4 deletions

View File

@@ -69,14 +69,16 @@ SECTIONS {
.bas _Bas_base : AT (ADDR(.text) + SIZEOF(.text))
{
objs/BaS.o(.text)
# put other routines into the same segment (RAM) as BaS.o
/* put other routines into the same segment (RAM) as BaS.o */
objs/sd_card.o(.text)
objs/mmu.o(.text)
objs/exceptions.o(.text)
objs/supervisor.o(.text)
objs/ewf.o(.text)
objs/illegal_instruction.o(.text)
*(.data)
_bas_end = ABSOLUTE(.);
} > ram