xa51, work in progress
[fw/sdcc] / as / xa51 / xa_main.h
index 6a9cc14f7b9953d0e5e54828f9b67a972bb1f91e..b31227ab8135891ec84fc5502c625970d8071f4f 100644 (file)
@@ -33,6 +33,7 @@ struct symbol {
         int line_def;   /* line in which is was defined */
         int isbit;      /* 1 if a bit address, 0 otherwise */
        int isreg;      /* 1 if a register, 0 otehrwise */
+  int area;       /* the area that this symbol is in */
         struct symbol *next; };
 
 /* a list of all the symbols that are branch targets */
@@ -43,6 +44,7 @@ struct target {
         struct target *next; };
 
 struct area_struct {
+        int start;
        int alloc_position;
 };