home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 267_01 / a85.c < prev    next >
Text File  |  1989-01-13  |  11KB  |  435 lines

  1. /*
  2.     HEADER:        CUG267;
  3.     TITLE:        8085 Cross-Assembler (Portable);
  4.     FILENAME:    A85.C;
  5.     VERSION:    0.1;
  6.     DATE:        08/27/1988;
  7.     SEE-ALSO:    A85.H;
  8.     AUTHORS:    William C. Colley III;
  9. */
  10.  
  11. /*
  12.               8085 Cross-Assembler in Portable C
  13.  
  14.         Copyright (c) 1985,1987 William C. Colley, III
  15.  
  16. Revision History:
  17.  
  18. Ver    Date        Description
  19.  
  20. 0.0    AUG 1987    Derived from version 3.4 of my portable 6800/6801
  21.             cross-assembler.  WCC3.
  22.  
  23. 0.1    AUG 1988    Fixed a bug in the command line parser that puts it
  24.             into a VERY long loop if the user types a command line
  25.             like "A85 FILE.ASM -L".  WCC3 per Alex Cameron.
  26.  
  27. This file contains the main program and line assembly routines for the
  28. assembler.  The main program parses the command line, feeds the source lines
  29. to the line assembly routine, and sends the results to the listing and object
  30. file output routines.  It also coordinates the activities of everything.  The
  31. line assembly routines uses the expression analyzer and the lexical analyzer
  32. to parse the source line and convert it into the object bytes that it
  33. represents.
  34. */
  35.  
  36. /*  Get global goodies:  */
  37.  
  38. #include "a85.h"
  39.  
  40. /*  Define global mailboxes for all modules:                */
  41.  
  42. char errcode, line[MAXLINE + 1], title[MAXLINE];
  43. int pass = 0;
  44. int eject, filesp, forwd, listhex;
  45. unsigned  address, bytes, errors, listleft, obj[MAXLINE], pagelen, pc;
  46. FILE *filestk[FILES], *source;
  47. TOKEN token;
  48.  
  49. /*  Mainline routine.  This routine parses the command line, sets up    */
  50. /*  the assembler at the beginning of each pass, feeds the source text    */
  51. /*  to the line assembler, feeds the result to the listing and hex file    */
  52. /*  drivers, and cleans everything up at the end of the run.        */
  53.  
  54. static int done, ifsp, off;
  55.  
  56. void main(argc,argv)
  57. int argc;
  58. char **argv;
  59. {
  60.     SCRATCH unsigned *o;
  61.     int newline();
  62.     void asm_line();
  63.     void lclose(), lopen(), lputs();
  64.     void hclose(), hopen(), hputc();
  65.     void error(), fatal_error(), warning();
  66.  
  67.     printf("8085 Cross-Assembler (Portable) Ver 0.1\n");
  68.     printf("Copyright (c) 1985,1987 William C. Colley, III\n\n");
  69.  
  70.     while (--argc > 0) {
  71.     if (**++argv == '-') {
  72.         switch (toupper(*++*argv)) {
  73.         case 'L':   if (!*++*argv) {
  74.                 if (!--argc) { warning(NOLST);  break; }
  75.                 else ++argv;
  76.                 }
  77.                 lopen(*argv);
  78.                 break;
  79.  
  80.         case 'O':   if (!*++*argv) {
  81.                 if (!--argc) { warning(NOHEX);  break; }
  82.                 else ++argv;
  83.                 }
  84.                 hopen(*argv);
  85.                 break;
  86.  
  87.         default:    warning(BADOPT);
  88.         }
  89.     }
  90.     else if (filestk[0]) warning(TWOASM);
  91.     else if (!(filestk[0] = fopen(*argv,"r"))) fatal_error(ASMOPEN);
  92.     }
  93.     if (!filestk[0]) fatal_error(NOASM);
  94.  
  95.     while (++pass < 3) {
  96.     fseek(source = filestk[0],0L,0);  done = off = FALSE;
  97.     errors = filesp = ifsp = pagelen = pc = 0;  title[0] = '\0';
  98.     while (!done) {
  99.         errcode = ' ';
  100.         if (newline()) {
  101.         error('*');
  102.         strcpy(line,"\tEND\n");
  103.         done = eject = TRUE;  listhex = FALSE;
  104.         bytes = 0;
  105.         }
  106.         else asm_line();
  107.         pc = word(pc + bytes);
  108.         if (pass == 2) {
  109.         lputs();
  110.         for (o = obj; bytes--; hputc(*o++));
  111.         }
  112.     }
  113.     }
  114.  
  115.     fclose(filestk[0]);  lclose();  hclose();
  116.  
  117.     if (errors) printf("%d Error(s)\n",errors);
  118.     else printf("No Errors\n");
  119.  
  120.     exit(errors);
  121. }
  122.  
  123. /*  Line assembly routine.  This routine gets expressions and tokens    */
  124. /*  from the source file using the expression evaluator and lexical    */
  125. /*  analyzer, respectively.  It fills a buffer with the machine code    */
  126. /*  bytes and returns nothing.                        */
  127.  
  128. static char label[MAXLINE];
  129. static int ifstack[IFDEPTH] = { ON };
  130.  
  131. static OPCODE *opcod;
  132.  
  133. void asm_line()
  134. {
  135.     SCRATCH char *p;
  136.     SCRATCH int i;
  137.     int isalph(), popc();
  138.     OPCODE *find_code(), *find_operator();
  139.     void do_label(), flush(), normal_op(), pseudo_op();
  140.     void error(), pops(), pushc(), trash();
  141.  
  142.     address = pc;  bytes = 0;  eject = forwd = listhex = FALSE;
  143.     for (i = 0; i < BIGINST; obj[i++] = NOP);
  144.  
  145.     label[0] = '\0';
  146.     if ((i = popc()) != ' ' && i != '\n') {
  147.     if (isalph(i)) {
  148.         pushc(i);  pops(label);
  149.         for (p = label; *p; ++p);
  150.         if (*--p == ':') *p = '\0';
  151.         if (find_operator(label)) { label[0] = '\0';  error('L'); }
  152.     }
  153.     else {
  154.         error('L');
  155.         while ((i = popc()) != ' ' && i != '\n');
  156.     }
  157.     }
  158.  
  159.     trash(); opcod = NULL;
  160.     if ((i = popc()) != '\n') {
  161.     if (!isalph(i)) error('S');
  162.     else {
  163.         pushc(i);  pops(token.sval);
  164.         if (!(opcod = find_code(token.sval))) error('O');
  165.     }
  166.     if (!opcod) { listhex = TRUE;  bytes = BIGINST; }
  167.     }
  168.  
  169.     if (opcod && opcod -> attr & ISIF) { if (label[0]) error('L'); }
  170.     else if (off) { listhex = FALSE;  flush();  return; }
  171.  
  172.     if (!opcod) { do_label();  flush(); }
  173.     else {
  174.     listhex = TRUE;
  175.     if (opcod -> attr & PSEUDO) pseudo_op();
  176.     else normal_op();
  177.     while ((i = popc()) != '\n') if (i != ' ') error('T');
  178.     }
  179.     source = filestk[filesp];
  180.     return;
  181. }
  182.  
  183. static void flush()
  184. {
  185.     while (popc() != '\n');
  186. }
  187.  
  188. static void do_label()
  189. {
  190.     SCRATCH SYMBOL *l;
  191.     SYMBOL *find_symbol(), *new_symbol();
  192.     void error();
  193.  
  194.     if (label[0]) {
  195.     listhex = TRUE;
  196.     if (pass == 1) {
  197.         if (!((l = new_symbol(label)) -> attr)) {
  198.         l -> attr = FORWD + VAL;
  199.         l -> valu = pc;
  200.         }
  201.     }
  202.     else {
  203.         if (l = find_symbol(label)) {
  204.         l -> attr = VAL;
  205.         if (l -> valu != pc) error('M');
  206.         }
  207.         else error('P');
  208.     }
  209.     }
  210. }
  211.  
  212. static void normal_op()
  213. {
  214.     SCRATCH unsigned attrib, u;
  215.     unsigned expr();
  216.     TOKEN *lex();
  217.     void do_label(), error(), unlex();
  218.  
  219.     do_label();  bytes = (attrib = opcod -> attr) & BYTES;
  220.     if (pass < 2) return;
  221.     obj[0] = opcod -> valu;  obj[1] = obj[2] = 0;
  222.  
  223.     while (attrib & ARG1) {
  224.     lex();
  225.     switch (attrib & ARG1) {
  226.         case DATA_16:   unlex();  obj[1] = low(u = expr());
  227.                 obj[2] = high(u);  break;
  228.  
  229.         case DATA_8:    unlex();
  230.                 if ((u = expr()) > 0xff && u < 0xff80) {
  231.                 error('V');  u = 0;
  232.                 }
  233.                 obj[1] = low(u);  break;
  234.  
  235.         case PORT:        unlex();
  236.                 if ((u = expr()) > 0xff) { error('V');  u = 0; }
  237.                 obj[1] = low(u);  break;
  238.  
  239.         case RST_NUM:   unlex();
  240.                 if ((u = expr()) > 7) { error('V');  u = 0; }
  241.                 obj[0] |= u << 3;  break;
  242.  
  243.         case LDAX_REG:  u = BD;  goto do_reg;
  244.  
  245.         case DAD_REG:   u = BDHSP;  goto do_reg;
  246.  
  247.         case POP_REG:   u = BDHPSW;  goto do_reg;
  248.  
  249.         case SRC_REG:   token.valu >>= 3;  u = BCDEHLMA;  goto do_reg;
  250.  
  251.         case DST_REG:   u = BCDEHLMA;
  252. do_reg:                if ((token.attr & TYPE) != REG) {
  253.                 error('S');  break;
  254.                 }
  255.                 if (!(token.attr & u)) { error('R');  break; }
  256.                 obj[0] |= token.valu;  break;
  257.     }
  258.     if (((attrib >>= 4) & ARG1) && (lex() -> attr & TYPE) != SEP) {
  259.         error('S');  break;
  260.     }
  261.     if (obj[0] == 0x76) error('R');
  262.     }
  263. }
  264.  
  265. static void pseudo_op()
  266. {
  267.     SCRATCH char *s;
  268.     SCRATCH int c;
  269.     SCRATCH unsigned *o, u;
  270.     SCRATCH SYMBOL *l;
  271.     int popc();
  272.     unsigned expr();
  273.     SYMBOL *find_symbol(), *new_symbol();
  274.     TOKEN *lex();
  275.     void do_label(), error(), fatal_error(), hseek();
  276.     void pushc(), trash(), unlex();
  277.  
  278.     o = obj;
  279.     switch (opcod -> valu) {
  280.     case DB:    do_label();
  281.             do {
  282.             switch (lex() -> attr & TYPE) {
  283.                 case SEP:    unlex();  u = 0;  goto save_byte;
  284.  
  285.                 case STR:    trash();  pushc(c = popc());
  286.                     if (c == ',' || c == '\n') {
  287.                         for (s = token.sval; *s;
  288.                         *o++ = *s++) ++bytes;
  289.                         break;
  290.                     }
  291.  
  292.                 default:    unlex();
  293.                     if ((u = expr()) > 0xff &&
  294.                         u < 0xff80) {
  295.                         u = 0;  error('V');
  296.                     }
  297. save_byte:                *o++ = low(u);  ++bytes;  break;
  298.             }
  299.             } while ((lex() -> attr & TYPE) == SEP);
  300.             break;
  301.  
  302.     case DS:    do_label();
  303.             u = word(pc + expr());
  304.             if (forwd) error('P');
  305.             else {
  306.             pc = u;
  307.             if (pass == 2) hseek(pc);
  308.             }
  309.             break;
  310.  
  311.     case DW:    do_label();
  312.             do {
  313.             lex();  unlex();
  314.             u = ((token.attr & TYPE) == SEP) ? 0 : expr();
  315.             *o++ = low(u);  *o++ = high(u);  bytes += 2;
  316.             } while ((lex() -> attr & TYPE) == SEP);
  317.             break;
  318.  
  319.     case ELSE:  listhex = FALSE;