Added support for gsinit packing.
[fw/sdcc] / src / z80 / main.c
index 0f6f498f1605a763faeceb450ccd6c86327798b8..f60636d7503425672f70761478c0fe0d3f1d60a3 100644 (file)
@@ -531,6 +531,7 @@ PORT z80_port =
   1,                           /* transform >= to ! < */
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
+  TRUE,                         /* Array initializer support. */       
   PORT_MAGIC
 };
 
@@ -609,5 +610,6 @@ PORT gbz80_port =
   1,                           /* transform >= to ! < */
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
+  FALSE,                        /* No array initializer support. */
   PORT_MAGIC
 };