4ce9ef5d8cfa02671bcc2e863ba7d60b90850579
[fw/sdcc] / as / hc08 / asm.h
1 /* asm.h */
2
3 /*
4  * (C) Copyright 1989-1995
5  * All Rights Reserved
6  *
7  * Alan R. Baldwin
8  * 721 Berkeley St.
9  * Kent, Ohio  44240
10  *
11  * 28-Oct-97 JLH:
12  *           - add proto for StoreString
13  *           - change s_id from [NCPS] to pointer
14  *           - change m_id from [NCPS] to pointer
15  *           - change NCPS to 80
16  *           - case sensitive
17  *           - add R_J11 for 8051 assembler
18  *           - add outr11 prototype for 8051 assembler
19  *           - always define "ccase"
20  *  2-Nov-97 JLH:
21  *           - add jflag for debug control
22  *           - prototypes for DefineNoICE_Line
23  * 30-Jan-98 JLH:
24  *           - add memory space flags to a_flag for 8051
25  *
26  *  3-Feb-00 KV:
27  *           - add DS80C390 flat mode support.
28  */
29
30 #define VERSION "V01.70 + NoICE + SDCC mods + Flat24 Feb-1999"
31
32 #if !defined(__BORLANDC__) && !defined(_MSC_VER)
33 #include <unistd.h>
34 #endif
35
36 /*
37  * Case Sensitivity Flag
38  */
39 #define CASE_SENSITIVE  1
40
41 /*)Module       asm.h
42  *
43  *      The module asm.h contains the definitions for constants,
44  *      structures, global variables, and ASxxxx functions
45  *      contained in the ASxxxx.c files.  The two functions
46  *      and three global variables from the machine dependent
47  *      files are also defined.
48  */
49
50 /*
51  *       compiler/operating system specific definitions
52  */
53
54 /* DECUS C void definition */
55 /* File/extension seperator */
56
57 #ifdef  decus
58 #define VOID    char
59 #define FSEPX   '.'
60 #endif
61
62 /* PDOS C void definition */
63 /* File/extension seperator */
64
65 #ifdef  PDOS
66 #define VOID    char
67 #define FSEPX   ':'
68 #endif
69
70 /* Default void definition */
71 /* File/extension seperator */
72
73 #ifndef VOID
74 #define VOID    void
75 #define FSEPX   '.'
76 #define OTHERSYSTEM
77 #endif
78
79 /*
80  * PATH_MAX
81  */
82 #include <limits.h>
83 #ifndef PATH_MAX                /* POSIX, but not required   */
84 #if defined(_MSC_VER) || defined(__BORLANDC__)  /* Microsoft C or Borland C*/
85 #include <stdlib.h>
86 #define PATH_MAX        _MAX_PATH
87 #else
88 #define PATH_MAX                /* define a reasonable value */
89 #endif
90 #endif
91
92 /*
93  * Assembler definitions.
94  */
95 #define LFTERM  '('             /* Left expression delimeter */
96 #define RTTERM  ')'             /* Right expression delimeter */
97
98 #define NCPS    80              /* Chars. per symbol (JLH: change from 8) */
99 #define HUGE    1000            /* A huge number */
100 #define NERR    3               /* Errors per line */
101 #define NINPUT  1024            /* Input buffer size (icodes need space) */
102 #define NCODE   128             /* Listing code buffer size */
103 #define NTITL   64              /* Title buffer size */
104 #define NSBTL   64              /* SubTitle buffer size */
105 #define NHASH   64              /* Buckets in hash table */
106 #define HMASK   077             /* Hash mask */
107 #define NLPP    60              /* Lines per page */
108 #define MAXFIL  6               /* Maximum command line input files */
109 #define MAXINC  6               /* Maximum nesting of include files */
110 #define MAXIF   10              /* Maximum nesting of if/else/endif */
111
112 #define NLIST   0               /* No listing */
113 #define SLIST   1               /* Source only */
114 #define ALIST   2               /* Address only */
115 #define BLIST   3               /* Address only with allocation */
116 #define CLIST   4               /* Code */
117 #define ELIST   5               /* Equate only */
118
119 #define dot     sym[0]          /* Dot, current loc */
120 #define dca     area[0]         /* Dca, default code area */
121
122
123 /* NB: for Flat24 extentions to work, Addr_T must be at least 24
124  * bits. This is checked at runtime when the .flat24 directive
125  * is processed.
126  */
127 typedef unsigned int Addr_T;
128
129 /*
130  *      The area structure contains the parameter values for a
131  *      specific program or data section.  The area structure
132  *      is a linked list of areas.  The initial default area
133  *      is "_CODE" defined in asdata.c, the next area structure
134  *      will be linked to this structure through the structure
135  *      element 'struct area *a_ap'.  The structure contains the
136  *      area name, area reference number ("_CODE" is 0) determined
137  *      by the order of .area directives, area size determined
138  *      from the total code and/or data in an area, area fuzz is
139  *      a variable used to track pass to pass changes in the
140  *      area size caused by variable length instruction formats,
141  *      and area flags which specify the area's relocation type.
142  */
143 struct  area
144 {
145         struct  area *a_ap;     /* Area link */
146         char    a_id[NCPS];     /* Area Name */
147         int     a_ref;          /* Ref. number */
148         Addr_T  a_addr;         /* Area address */
149         Addr_T  a_size;         /* Area size */
150         Addr_T  a_fuzz;         /* Area fuzz */
151         int     a_flag;         /* Area flags */
152 };
153
154 /*
155  *      The "A_" area constants define values used in
156  *      generating the assembler area output data.
157  *
158  * Area flags
159  *
160  *         7     6      5    4     3     2     1     0
161  *      +-----+-----+-----+-----+-----+-----+-----+-----+
162  *      | BIT |XDATA|DATA | PAG | ABS | OVR |     |     |
163  *      +-----+-----+-----+-----+-----+-----+-----+-----+
164  */
165
166 #define A_CON   0000            /* Concatenating */
167 #define A_OVR   0004            /* Overlaying */
168 #define A_REL   0000            /* Relocatable */
169 #define A_ABS   0010            /* absolute */
170 #define A_NOPAG 0000            /* Non-Paged */
171 #define A_PAG   0020            /* Paged */
172
173 /* Additional flags for 8051 address spaces */
174 #define A_DATA  0000            /* data space (default)*/
175 #define A_CODE  0040            /* code space */
176 #define A_XDATA 0100            /* external data space */
177 #define A_BIT   0200            /* bit addressable space */
178
179 #define A_NOLOAD  0400          /* nonloadable */
180 #define A_LOAD  0000            /* loadable (default) */
181
182 /*
183  *      The "R_" relocation constants define values used in
184  *      generating the assembler relocation output data for
185  *      areas, symbols, and code.
186  *
187  * Relocation flags
188  *
189  *         7     6     5     4     3     2     1     0
190  *      +-----+-----+-----+-----+-----+-----+-----+-----+
191  *      | MSB | PAGn| PAG0| USGN| BYT2| PCR | SYM | BYT |
192  *      +-----+-----+-----+-----+-----+-----+-----+-----+
193  */
194
195 #define R_WORD  0x00            /* 16 bit */
196 #define R_BYTE  0x01            /*  8 bit */
197
198 #define R_AREA  0x00            /* Base type */
199 #define R_SYM   0x02
200
201 #define R_NORM  0x00            /* PC adjust */
202 #define R_PCR   0x04
203
204 #define R_BYT1  0x00            /* Byte count for R_BYTE = 1 */
205 #define R_BYT2  0x08            /* Byte count for R_BYTE = 2 */
206
207 #define R_SGND  0x00            /* Signed Byte */
208 #define R_USGN  0x10            /* Unsigned Byte */
209
210 #define R_NOPAG 0x00            /* Page Mode */
211 #define R_PAG0  0x20            /* Page '0' */
212 #define R_PAG   0x40            /* Page 'nnn' */
213
214 #define R_LSB   0x00            /* low byte */
215 #define R_MSB   0x80            /* high byte */
216
217 #define R_BYT3  0x100           /* if R_BYTE is set, this is a
218                                  * 3 byte address, of which
219                                  * the linker must select one byte.
220                                  */
221 #define R_HIB   0x200           /* If R_BYTE & R_BYT3 are set, linker
222                                  * will select byte 3 of the relocated
223                                  * 24 bit address.
224                                  */
225
226 #define R_J11   (R_WORD|R_BYT2) /* JLH: 11 bit JMP and CALL (8051) */
227 #define R_J19   (R_WORD|R_BYT2|R_MSB) /* 19 bit JMP/CALL (DS80C390) */
228 #define R_C24   (R_WORD|R_BYT1|R_MSB) /* 24 bit address (DS80C390) */
229 #define R_J19_MASK (R_BYTE|R_BYT2|R_MSB)
230
231 #define IS_R_J19(x) (((x) & R_J19_MASK) == R_J19)
232 #define IS_R_J11(x) (((x) & R_J19_MASK) == R_J11)
233 #define IS_C24(x) (((x) & R_J19_MASK) == R_C24)
234
235 #define R_ESCAPE_MASK   0xf0    /* Used to escape relocation modes
236                                  * greater than 0xff in the .rel
237                                  * file.
238                                  */
239
240 /*
241  * Listing Control Flags
242  */
243
244 #define R_HIGH  0040000         /* High Byte */
245 #define R_RELOC 0100000         /* Relocation */
246
247 #define R_DEF   00              /* Global def. */
248 #define R_REF   01              /* Global ref. */
249 #define R_REL   00              /* Relocatable */
250 #define R_ABS   02              /* Absolute */
251 #define R_GBL   00              /* Global */
252 #define R_LCL   04              /* Local */
253
254 /*
255  *      The mne structure is a linked list of the assembler
256  *      mnemonics and directives.  The list of mnemonics and
257  *      directives contained in the device dependent file
258  *      xxxpst.c are hashed and linked into NHASH lists in
259  *      module assym.c by syminit().  The structure contains
260  *      the mnemonic/directive name, a subtype which directs
261  *      the evaluation of this mnemonic/directive, a flag which
262  *      is used to detect the end of the mnemonic/directive
263  *      list in xxxpst.c, and a value which is normally
264  *      associated with the assembler mnemonic base instruction
265  *      value.
266  */
267 struct  mne
268 {
269         struct  mne *m_mp;      /* Hash link */
270         char    *m_id;          /* Mnemonic JLH: change from [NCPS] */
271         char    m_type;         /* Mnemonic subtype */
272         char    m_flag;         /* Mnemonic flags */
273         Addr_T  m_valu;         /* Value */
274 };
275
276 /*
277  *      The sym structure is a linked list of symbols defined
278  *      in the assembler source files.  The first symbol is "."
279  *      defined in asdata.c.  The entry 'struct tsym *s_tsym'
280  *      links any temporary symbols following this symbol and
281  *      preceeding the next normal symbol.  The structure also
282  *      contains the symbol's name, type (USER or NEW), flag
283  *      (global, assigned, and multiply defined), a pointer
284  *      to the area structure defining where the symbol is
285  *      located, a reference number assigned by outgsd() in
286  *      asout.c, and the symbols address relative to the base
287  *      address of the area where the symbol is located.
288  */
289 struct  sym
290 {
291         struct  sym  *s_sp;     /* Hash link */
292         struct  tsym *s_tsym;   /* Temporary symbol link */
293         char    *s_id;          /* Symbol: JLH change from [NCPS] */
294         char    s_type;         /* Symbol subtype */
295         char    s_flag;         /* Symbol flags */
296         struct  area *s_area;   /* Area line, 0 if absolute */
297         int     s_ref;          /* Ref. number */
298         Addr_T  s_addr;         /* Address */
299         Addr_T  s_org;          /* Start Address if absolute */
300 };
301
302 #define S_GBL           01      /* Global */
303 #define S_ASG           02      /* Assigned */
304 #define S_MDF           04      /* Mult. def */
305 #define S_END           010     /* End mark for pst. */
306
307 #define S_NEW           0       /* New name */
308 #define S_USER          1       /* User name */
309                                 /* unused slot */
310                                 /* unused slot */
311                                 /* unused slot */
312
313 #define S_BYTE          5       /* .byte */
314 #define S_WORD          6       /* .word */
315 #define S_ASCII         7       /* .ascii */
316 #define S_ASCIZ         8       /* .asciz */
317 #define S_BLK           9       /* .blkb or .blkw */
318 #define S_INCL          10      /* .include */
319 #define S_DAREA         11      /* .area */
320 #define S_ATYP          12      /* .area type */
321 #define S_AREA          13      /* .area name */
322 #define S_GLOBL         14      /* .globl */
323 #define S_PAGE          15      /* .page */
324 #define S_TITLE         16      /* .title */
325 #define S_SBTL          17      /* .sbttl */
326 #define S_IF            18      /* .if */
327 #define S_ELSE          19      /* .else */
328 #define S_ENDIF         20      /* .endif */
329 #define S_EVEN          21      /* .even */
330 #define S_ODD           22      /* .odd */
331 #define S_RADIX         23      /* .radix */
332 #define S_ORG           24      /* .org */
333 #define S_MODUL         25      /* .module */
334 #define S_ASCIS         26      /* .ascis */
335 #define S_FLAT24        27  /* .flat24 */
336 #define S_OPTSDCC       28  /* .optsdcc */
337 #define S_ULEB128       29      /* .uleb128 */
338 #define S_SLEB128       30      /* .sleb128 */
339
340 /*
341  *      The tsym structure is a linked list of temporary
342  *      symbols defined in the assembler source files following
343  *      a normal symbol.  The structure contains the temporary
344  *      symbols number, a flag (multiply defined), a pointer to the
345  *      area structure defining where the temporary structure
346  *      is located, and the temporary symbol's address relative
347  *      to the base address of the area where the symbol
348  *      is located.
349  */
350 struct  tsym
351 {
352         struct  tsym *t_lnk;    /* Link to next */
353 /* sandeep changed to 'int' from 'char' */
354 /* this will increase the number temp symbols
355    that can be defined from 255 to INT_MAX */
356         int t_num;              /* 0-INT_MAX$ */
357         int t_flg;              /* flags */
358
359         struct  area *t_area;   /* Area */
360         Addr_T  t_addr;         /* Address */
361 };
362
363 /*
364  *      External Definitions for all Global Variables
365  */
366
367 extern  int     aserr;          /*      ASxxxx error counter
368                                  */
369 extern  jmp_buf jump_env;       /*      compiler dependent structure
370                                  *      used by setjmp() and longjmp()
371                                  */
372 extern  int     inpfil;         /*      count of assembler
373                                  *      input files specified
374                                  */
375 extern  int     incfil;         /*      current file handle index
376                                  *      for include files
377                                  */
378 extern  int     cfile;          /*      current file handle index
379                                  *      of input assembly files
380                                  */
381 extern  int     flevel;         /*      IF-ELSE-ENDIF flag will be non
382                                  *      zero for false conditional case
383                                  */
384 extern  int     tlevel;         /*      current conditional level
385                                  */
386 extern  int     ifcnd[MAXIF+1]; /*      array of IF statement condition
387                                  *      values (0 = FALSE) indexed by tlevel
388                                  */
389 extern  int     iflvl[MAXIF+1]; /*      array of IF-ELSE-ENDIF flevel
390                                  *      values indexed by tlevel
391                                  */
392 extern  char
393         afn[PATH_MAX];          /*      afile() temporary filespec
394                                  */
395 extern  char
396         srcfn[MAXFIL][PATH_MAX];        /*      array of source file names
397                                  */
398 extern  int
399         srcline[MAXFIL];        /*      current source file line
400                                  */
401 extern  char
402         incfn[MAXINC][PATH_MAX];        /*      array of include file names
403                                  */
404 extern  int
405         incline[MAXINC];        /*      current include file line
406                                  */
407 extern  int     radix;          /*      current number conversion radix:
408                                  *      2 (binary), 8 (octal), 10 (decimal),
409                                  *      16 (hexadecimal)
410                                  */
411 extern  int     line;           /*      current assembler source
412                                  *      line number
413                                  */
414 extern  int     page;           /*      current page number
415                                  */
416 extern  int     lop;            /*      current line number on page
417                                  */
418 extern  int     pass;           /*      assembler pass number
419                                  */
420 extern  int     lflag;          /*      -l, generate listing flag
421                                  */
422 extern  int     cflag;          /*      -c, generate sdcdb debug information
423                                  */
424 extern  int     gflag;          /*      -g, make undefined symbols global flag
425                                  */
426 extern  int     aflag;          /*      -a, make all symbols global flag
427                                  */
428 extern  int     jflag;          /*      -j, generate debug information flag
429                                  */
430 extern  int     oflag;          /*      -o, generate relocatable output flag
431                                  */
432 extern  int     sflag;          /*      -s, generate symbol table flag
433                                  */
434 extern  int     pflag;          /*      -p, enable listing pagination
435                                  */
436 extern  int     xflag;          /*      -x, listing radix flag
437                                  */
438 extern  int     fflag;          /*      -f(f), relocations flagged flag
439                                  */
440 extern  Addr_T  laddr;          /*      address of current assembler line
441                                  *      or value of .if argument
442                                  */
443 extern  Addr_T  fuzz;           /*      tracks pass to pass changes in the
444                                  *      address of symbols caused by
445                                  *      variable length instruction formats
446                                  */
447 extern  int     lmode;          /*      listing mode
448                                  */
449 extern  struct  area    area[]; /*      array of 1 area
450                                  */
451 extern  struct  area *areap;    /*      pointer to an area structure
452                                  */
453 extern  struct  sym     sym[];  /*      array of 1 symbol
454                                  */
455 extern  struct  sym *symp;      /*      pointer to a symbol structure
456                                  */
457 extern  struct  sym *symhash[NHASH]; /* array of pointers to NHASH
458                                       * linked symbol lists
459                                       */
460 extern  struct  mne *mnehash[NHASH]; /* array of pointers to NHASH
461                                       * linked mnemonic/directive lists
462                                       */
463 extern  char    *ep;            /*      pointer into error list
464                                  *      array eb[NERR]
465                                  */
466 extern  char    eb[NERR];       /*      array of generated error codes
467                                  */
468 extern  char    *ip;            /*      pointer into the assembler-source
469                                  *      text line in ib[]
470                                  */
471 extern  char    ib[NINPUT];     /*      assembler-source text line
472                                  */
473 extern  char    *cp;            /*      pointer to assembler output
474                                  *      array cb[]
475                                  */
476 extern  char    cb[NCODE];      /*      array of assembler output values
477                                  */
478 extern  int     *cpt;           /*      pointer to assembler relocation type
479                                  *      output array cbt[]
480                                  */
481 extern  int     cbt[NCODE];     /*      array of assembler relocation types
482                                  *      describing the data in cb[]
483                                  */
484 extern  char    tb[NTITL];      /*      Title string buffer
485                                  */
486 extern  char    stb[NSBTL];     /*      Subtitle string buffer
487                                  */
488 extern  char    optsdcc[NINPUT];        /*      sdcc compile options
489                          */
490 extern  int     flat24Mode;     /*      non-zero if we are using DS390 24 bit
491                                  *      flat mode (via .flat24 directive).
492                                  */
493 extern  char    symtbl[];       /*      string "Symbol Table"
494                                  */
495 extern  char    aretbl[];       /*      string "Area Table"
496                                  */
497 extern  char    module[NCPS];   /*      module name string
498                                  */
499 extern  FILE    *lfp;           /*      list output file handle
500                                  */
501 extern  FILE    *ofp;           /*      relocation output file handle
502                                  */
503 extern  FILE    *tfp;           /*      symbol table output file handle
504                                  */
505 extern  FILE    *sfp[MAXFIL];   /*      array of assembler-source file handles
506                                  */
507 extern  FILE    *ifp[MAXINC];   /*      array of include-file file handles
508                                  */
509 extern  unsigned char   ctype[128];     /*      array of character types, one per
510                                  *      ASCII character
511                                  */
512
513 extern  char    ccase[128];     /* an array of characters which
514                                  * perform the case translation function
515                                  */
516 /*
517  * Definitions for Character Types
518  */
519 #define SPACE   0000
520 #define ETC     0000
521 #define LETTER  0001
522 #define DIGIT   0002
523 #define BINOP   0004
524 #define RAD2    0010
525 #define RAD8    0020
526 #define RAD10   0040
527 #define RAD16   0100
528 #define ILL     0200
529
530 #define DGT2    DIGIT|RAD16|RAD10|RAD8|RAD2
531 #define DGT8    DIGIT|RAD16|RAD10|RAD8
532 #define DGT10   DIGIT|RAD16|RAD10
533 #define LTR16   LETTER|RAD16
534
535 /*
536  *      The exp structure is used to return the evaluation
537  *      of an expression.  The structure supports three valid
538  *      cases:
539  *      (1)     The expression evaluates to a constant,
540  *              mode = S_USER, flag = 0, addr contains the
541  *              constant, and base = NULL.
542  *      (2)     The expression evaluates to a defined symbol
543  *              plus or minus a constant, mode = S_USER,
544  *              flag = 0, addr contains the constant, and
545  *              base = pointer to area symbol.
546  *      (3)     The expression evaluates to a external
547  *              global symbol plus or minus a constant,
548  *              mode = S_NEW, flag = 1, addr contains the
549  *              constant, and base = pointer to symbol.
550  */
551 struct  expr
552 {
553         char    e_mode;         /* Address mode */
554         char    e_flag;         /* Symbol flag */
555         Addr_T  e_addr;         /* Address */
556         union   {
557                 struct area *e_ap;
558                 struct sym  *e_sp;
559         } e_base;               /* Rel. base */
560         int     e_rlcf;         /* Rel. flags */
561 };
562
563 /* C Library functions */
564 /* for reference only
565 extern  VOID            exit();
566 extern  int             fclose();
567 extern  char *          fgets();
568 extern  FILE *          fopen();
569 extern  int             fprintf();
570 extern  VOID            longjmp();
571 extern  VOID *          malloc();
572 extern  int             printf();
573 extern  char            putc();
574 extern  int             rewind();
575 extern  int             setjmp();
576 extern  int             strcmp();
577 extern  char *          strcpy();
578 extern  int             strlen();
579 extern  char *          strncpy();
580 */
581
582 /* Machine independent functions */
583
584 /* asmain.c */
585 extern  FILE *          afile();
586 extern  VOID            asexit();
587 extern  VOID            asmbl();
588 extern  int             main();
589 extern  VOID            newdot();
590 extern  VOID            phase();
591 extern  VOID            usage();
592
593 /* aslex.c */
594 extern  char            endline();
595 extern  char            get();
596 extern  VOID            getid();
597 extern  int             as_getline();
598 extern  int             getmap();
599 extern  char            getnb();
600 extern  VOID            getst();
601 extern  int             more();
602 extern  VOID            unget();
603 extern  VOID            chop_crlf();
604
605 /* assym.c */
606 extern  struct  area *  alookup();
607 extern  struct  mne *   mlookup();
608 extern  int             hash();
609 extern  struct  sym *   lookup();
610 extern  VOID *          new();
611 extern  char *          strsto(char *str);
612 extern  int             symeq();
613 extern  VOID            syminit();
614 extern  VOID            symglob();
615 extern  VOID            allglob();
616
617 /* assubr.c */
618 extern  VOID            aerr();
619 extern  VOID            diag();
620 extern  VOID            err();
621 extern  VOID            warnBanner(void);
622 extern  char *          geterr();
623 extern  VOID            qerr();
624 extern  VOID            rerr();
625
626 /* asexpr.c */
627 extern  VOID            abscheck();
628 extern  Addr_T          absexpr();
629 extern  VOID            clrexpr();
630 extern  int             digit();
631 extern  int             is_abs();
632 extern  VOID            expr();
633 extern  int             oprio();
634 extern  VOID            term();
635
636 /* aslist.c */
637 extern  VOID            list();
638 extern  VOID            list1();
639 extern  VOID            list2();
640 extern  VOID            lstsym();
641 extern  VOID            slew();
642
643 /* asout.c */
644 extern  int             hibyte();
645 extern  int             lobyte();
646 extern  int             byte3(int);
647 extern  VOID            out();
648 extern  VOID            outab();
649 extern  VOID            outarea();
650 extern  VOID            outaw();
651 extern  VOID            outall();
652 extern  VOID            outdot();
653 extern  VOID            outbuf();
654 extern  VOID            outchk();
655 extern  VOID            outgsd();
656 extern  VOID            outrb();
657 extern  VOID            outrw(struct expr *, int);
658 extern  VOID            outr24(struct expr *, int);
659 extern  VOID            outsym();
660 extern  VOID            out_lb();
661 extern  VOID            out_lw();
662 extern  VOID            out_l24(int, int);
663 extern  VOID            out_rw();
664 extern  VOID            out_tw();
665 extern  VOID            out_t24(int);
666 extern  VOID            outr11();       /* JLH */
667 extern  VOID            outr19(struct expr *, int, int);
668 extern  VOID            outdp(struct area *, struct expr *);
669
670 /* asstore.c */
671 extern char *StoreString( char *str );
672
673 /* asnoice.c */
674 extern void DefineNoICE_Line();
675 extern void DefineCDB_Line();
676
677 /* Machine dependent variables */
678
679 extern  char *          cpu;
680 extern  char *          dsft;
681 extern  int             hilo;
682 extern  struct  mne     mne[];
683
684 /* Machine dependent functions */
685
686 extern  VOID            minit();
687 extern  VOID            machine(struct mne *);
688
689 /* strcmpi.c */
690 extern  int as_strcmpi(const char *s1, const char *s2);
691 extern  int as_strncmpi(const char *s1, const char *s2, size_t n);