Added rcs identification.
authorkeie <none@none>
Thu, 8 Nov 1984 12:08:31 +0000 (12:08 +0000)
committerkeie <none@none>
Thu, 8 Nov 1984 12:08:31 +0000 (12:08 +0000)
16 files changed:
util/ass/Makefile
util/ass/ass00.c
util/ass/ass00.h
util/ass/ass30.c
util/ass/ass40.c
util/ass/ass50.c
util/ass/ass60.c
util/ass/ass70.c
util/ass/ass80.c
util/ass/assci.c
util/ass/asscm.c
util/ass/assda.c
util/ass/assex.h
util/ass/assrl.c
util/ass/ip_spec.h
util/ass/maktab.c

index 3c6f9b1..fafb071 100644 (file)
@@ -1,3 +1,4 @@
+# $Header$
 d=../..
 l=$d/lib
 h=$d/h
index ddaf257..80ad65e 100644 (file)
  *
  */
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*
 ** Main routine of EM1-assembler/loader
 */
index 5c5de67..a9b456e 100644 (file)
@@ -5,6 +5,8 @@
 #include "../../h/arch.h"
 #include "../../h/local.h"
 
+#define        RCS_ASS "$Header$"
+
 /*
  * compile time options
  */
index ac5d9a7..1f6f983 100644 (file)
 #include        "assex.h"
 #include        "ip_spec.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_ip[] = RCS_IP ;
+#endif
+
 short           opt_line ;      /* max_line_no - # lines removed from end
                                   after perfoming exc's.
                                   Used to estimate the distance in # of
index e561110..41cfe65 100644 (file)
 
 #include        "ass00.h"
 #include        "assex.h"
+
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*
 ** Make scans to do final assignment of instruction sizes & formats
 ** to those not already done. assign final values to labels
index 9692acd..6b3663d 100644 (file)
 #include        "assex.h"
 #include        "ip_spec.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*
 ** Pass 5 of EM1 assembler/loader
 ** Fix reloc tables
index d3d5695..2a6e1c1 100644 (file)
 #include        "assex.h"
 #include        "ip_spec.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 #ifdef DUMP
 static  char    *typestr[] =
      {"missing","const","procname","glosym","locsym","glosym+off","pseudo"};
index ae123b3..18fe730 100644 (file)
 
 #include        "ass00.h"
 #include        "assex.h"
+
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*
 ** utilities of EM1-assembler/loader
 */
index 85c1514..e7c04ce 100644 (file)
 #include        "assex.h"
 #include        "../../h/em_path.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*
  * this file contains several library routines.
  */
index 83e744b..06971fc 100644 (file)
 #include        "../../h/em_pseu.h"
 #include        "../../h/em_ptyp.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*
  * read compact code and fill in tables
  */
index db91b13..705e104 100644 (file)
 
 #include "ass00.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 #ifdef MEMUSE
 static unsigned m_used = 0 ;
 static unsigned m_free = 0 ;
index b15d110..e872d6f 100644 (file)
@@ -1,5 +1,12 @@
 #include        "ass00.h"
 #include        "assex.h"
+
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_ass[]= RCS_ASS ;
+static char rcs_ex[] = RCS_EX ;
+#endif
+
 /*
  * global data
  */
index 00612d9..91d9880 100644 (file)
@@ -2,6 +2,8 @@
  * global data
  */
 
+#define        RCS_EX  "$Header$"
+
 extern  int     wordsize;
 extern  int     ptrsize;
 extern  cons_t  maxadr;
index 5ec0f0c..4fa1aab 100644 (file)
 #include        "ass00.h"
 #include        "assex.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 #define COPYFINAL       1
 #define COPYTEMP        0
 
index cf39b9f..75d14de 100644 (file)
@@ -1,5 +1,7 @@
 /* Contents of flags used when describing interpreter opcodes */
 
+#define        RCS_IP          "$Header$"
+
 #define OPTYPE  07      /* type field in flag */
 
 #define OPMINI  0       /* m  MINI */
index 31c5bdc..48059de 100644 (file)
 #include "../../h/em_spec.h"
 #include "../../h/em_flag.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /* This program reads the human readable interpreter specification
    and produces a efficient machine representation that can be
    translated by a C-compiler.