From a4f965448a6ac3dccd18f3c85f4ca760d0649ad2 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 7 Dec 2014 14:32:31 +0000 Subject: [PATCH] fcc: Fix link of start code From: Will Sowerbutts crt0.s has lost the 0x100 bytes of space at the start of the executable image. Attached patch to fcc corrects the link address. --- Library/tools/fcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/tools/fcc.c b/Library/tools/fcc.c index 844de346..966d5351 100644 --- a/Library/tools/fcc.c +++ b/Library/tools/fcc.c @@ -289,7 +289,7 @@ static void build_command(void) add_argument("--no-std-crt0"); add_argument("--nostdlib"); add_argument("--code-loc"); - add_argument("0x0"); + add_argument("0x100"); add_argument("--data-loc"); add_argument("0x0"); } -- 2.34.1