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