From 6d68c07ae141f859ae5094c0d6163ccf3b1cccf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Mon, 5 Aug 2013 19:35:59 +0000 Subject: [PATCH] modified to make RAM version run again --- bas.lk.in | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bas.lk.in b/bas.lk.in index a045070..bc78db8 100644 --- a/bas.lk.in +++ b/bas.lk.in @@ -14,9 +14,14 @@ SECTIONS objs/fault_vectors.o(.text) objs/init_fpga.o(.text) objs/wait.o(.text) + objs/exceptions.o(.text) + objs/illegal_instruction.o(.text) + objs/supervisor.o(.text) + objs/mmu.o(.text) objs/BaS.o(.text) objs/wait.o(.text) + /* put other routines into the same segment (RAM) as BaS.o */ objs/unicode.o(.text) objs/mmc.o(.text) @@ -49,10 +54,6 @@ SECTIONS AT (ALIGN(ADDR(.text) + SIZEOF(.text), 4)) { . = ALIGN(16); - objs/exceptions.o(.text) - objs/illegal_instruction.o(.text) - objs/supervisor.o(.text) - objs/mmu.o(.text) . = ALIGN(16); __BAS_DATA_START = .; *(.data)