]> git.gag.com Git - fw/sdcc/blobdiff - src/SDCCmain.c
Break DS80C390 support into seperate port (ds390); first pass at spilling temporaries...
[fw/sdcc] / src / SDCCmain.c
index 4e32a37eb710193db9e0f0e15dc0971b6c79809e..3becb08b915e34005430c518b5f8cc8ec6f91b7f 100644 (file)
@@ -143,6 +143,10 @@ extern PORT z80_port;
 #if !OPT_DISABLE_AVR
 extern PORT avr_port;
 #endif
+#if !OPT_DISABLE_DS390
+extern PORT ds390_port;
+#endif
+
 
 PORT *port;
 
@@ -159,6 +163,9 @@ static PORT *_ports[] = {
 #if !OPT_DISABLE_AVR
     &avr_port,
 #endif
+#if !OPT_DISABLE_DS390
+    &ds390_port,
+#endif
 };
 
 #define NUM_PORTS (sizeof(_ports)/sizeof(_ports[0]))