home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 221_01 / cc7.c < prev    next >
Text File  |  1979-12-31  |  1KB  |  58 lines

  1. /*
  2. HEADER:        Small-C source part 7;
  3. TITLE:        Small-C Compiler for 6809 FLEX system;
  4. VERSION:    2.3;
  5.  
  6. DESCRIPTION:    "Small-C Compiler which produces 6809 assembler output."
  7. KEYWORDS:    ;
  8. SYSTEM:        6809 FLEX;
  9. FILENAME:    CC7.C;
  10. WARNINGS:    "Requires TSC relocatable assembler, library generater and
  11.                 linking loader."
  12.  
  13. SEE-ALSO:    ;
  14. AUTHORS:    Dieter H. Flunkert;
  15. COMPILERS:    VAX VMS C compiler;
  16. */
  17. #include STDIO.H
  18. #ifdef VMS
  19. #include "ccdef.c"
  20. #else
  21. #include CCDEF.C
  22. #endif
  23.  
  24. /*
  25. **  external function declaration
  26. */
  27. extern int add(), addglb(),
  28.   blanks(),
  29.   callfunction(), ch(), clearstage(),
  30.   doublereg(),
  31.   gch(), getloc(), getmem(),
  32.   errrpt(), expression(),
  33.   findglb(), findloc(), findstat(),
  34.   heir1(),
  35.   immed(), inbyte(), indirect(),
  36.   junk(),
  37.   match(),
  38.   nch(), needbrack(), nl(), numeric(),
  39.   outbyte(), outdec(), outstr(),
  40.   printlabel(), push(), putint(), putmem(), putstk(),
  41.   setstage(), symname(),
  42.   testjump();
  43.  
  44. /*
  45. **  external variable declaration
  46. */
  47. extern int constval[2],
  48.   litlab, litptr;
  49.  
  50. extern char litq[litabsz],
  51.   quote[2];
  52.  
  53. #ifdef VMS
  54. #include "cc71.c"
  55. #else
  56. #include CC71.C
  57. #endif
  58.