device/lib/_startup.c: quick & dirty fix for ds390/ds400;
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 28 Aug 2003 12:22:30 +0000 (12:22 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 28 Aug 2003 12:22:30 +0000 (12:22 +0000)
these ports have their own _sdcc_external_start()

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2855 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
device/lib/_startup.c

index 6d0d44725e4a770732b31bca8ce6ba4d314df6f5..023f4335a8a2ba20d8a1546e349884cf6a78bf3f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-28  Bernhard Held <bernhard@bernhardheld.de>
+
+       * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
+       these ports have their own __sdcc_external_start()
+
 2003-08-26  Bernhard Held <bernhard@bernhardheld.de>
 
        pic patch provided by Slade Rich <slade_rich@yahoo.com>
index 54677884bd1cd717558d34ec1309573896d5738d..ab2d4d58cc6a4e5d0f8a9fc7f1d63de4ee2d9c33 100644 (file)
    returns a non-zero value then global &
    static variable initialisation will be skipped */
 
+#if !defined(SDCC_ds390) && !defined(SDCC_ds400)
+
 unsigned char _sdcc_external_startup ()
 {
     return 0;
 }
+
+#endif
+