code cleaning, // comments replaced with /* */
[fw/sdcc] / src / izt / i186.c
index 8ee41fb2597ab5f925b8829c8d760f21fabd7e91..60048a43888f726333c6b12edadca16e656d51a4 100644 (file)
@@ -136,6 +136,7 @@ PORT i186_port = {
     TARGET_ID_I186,
     "i186",
     "Intel 80186",      /* Target name */
+    NULL,
     {
         FALSE,          /* Emit glue around main */
         MODEL_SMALL,
@@ -147,7 +148,8 @@ PORT i186_port = {
         NULL,
         NULL,
         0,
-        ".s"
+        ".s",
+       NULL                    /* no do_assemble function */
     },
     {
         _linkCmd,
@@ -197,6 +199,7 @@ PORT i186_port = {
     _i186_getRegName ,
     _i186_keywords,
     _i186_genAssemblerPreamble,
+    NULL,                              /* no genAssemblerEnd */
     _i186_genIVT ,
     NULL, // _i186_genXINIT
     _i186_reset_regparm,
@@ -214,5 +217,8 @@ PORT i186_port = {
     FALSE,                        /* No array initializer support. */
     0,                            /* no CSE cost estimation yet */
     NULL,                      /* no builtin functions */
+    GPOINTER,                  /* treat unqualified pointers as "generic" pointers */
+    1,                         /* reset labelKey to 1 */
+    1,                         /* globals & local static allowed */
     PORT_MAGIC
 };