From: Alan Cox Date: Sun, 7 Dec 2014 14:32:31 +0000 (+0000) Subject: fcc: Fix link of start code X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a4f965448a6ac3dccd18f3c85f4ca760d0649ad2;p=FUZIX.git 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. --- 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"); }