Removed the hc08 port references
authorepetrich <epetrich@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 9 Oct 2003 06:46:12 +0000 (06:46 +0000)
committerepetrich <epetrich@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 9 Oct 2003 06:46:12 +0000 (06:46 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2932 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCmain.c

index 2002576ff8f922d86aa5f5941096b1e10f4e6133..6ac338a433de2db8aebda684befc647847371f41 100644 (file)
@@ -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");