From 7bdb093da84e10812adff9cd2dd6d283a77ef4bb Mon Sep 17 00:00:00 2001 From: epetrich Date: Thu, 9 Oct 2003 06:46:12 +0000 Subject: [PATCH] Removed the hc08 port references git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2932 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCmain.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/SDCCmain.c b/src/SDCCmain.c index 2002576f..6ac338a4 100644 --- a/src/SDCCmain.c +++ b/src/SDCCmain.c @@ -304,7 +304,6 @@ static PORT *_ports[] = #if !OPT_DISABLE_DS400 &ds400_port, #endif - &hc08_port, }; #define NUM_PORTS (sizeof(_ports)/sizeof(_ports[0])) @@ -491,7 +490,7 @@ setParseWithComma (set **dest, char *src) /* skip the initial white spaces */ while (isspace(*src)) src++; - + /* skip the trailing white spaces */ length = strlen(src); while (length && isspace(src[length-1])) @@ -1388,7 +1387,7 @@ linkEdit (char **envp) /* standard library path */ if (!options.nostdlib) { - if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80 || TARGET_IS_HC08)) /*Not for the z80, gbz80*/ + if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80)) /*Not for the z80, gbz80*/ { switch (options.model) { @@ -1427,9 +1426,7 @@ linkEdit (char **envp) } else /*for the z80, gbz80*/ { - if (TARGET_IS_HC08) - c = "hc08"; - else if (TARGET_IS_Z80) + if (TARGET_IS_Z80) c = "z80"; else c = "gbz80"; @@ -1468,18 +1465,13 @@ linkEdit (char **envp) } #endif #endif - if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80 - || TARGET_IS_HC08)) /*Not for the z80, gbz80*/ + if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80)) /*Not for the z80, gbz80*/ { /*Why the z80 port is not using the standard libraries?*/ fprintf (lnkfile, "-l %s\n", STD_LIB); fprintf (lnkfile, "-l %s\n", STD_INT_LIB); fprintf (lnkfile, "-l %s\n", STD_LONG_LIB); fprintf (lnkfile, "-l %s\n", STD_FP_LIB); } - else if (TARGET_IS_HC08) - { - fprintf (lnkfile, "-l hc08\n"); - } else if (TARGET_IS_Z80) { fprintf (lnkfile, "-l z80\n"); -- 2.30.2