Bell 32V development
authorTom London <tbl@research.uucp>
Mon, 6 Nov 1978 07:44:42 +0000 (02:44 -0500)
committerTom London <tbl@research.uucp>
Mon, 6 Nov 1978 07:44:42 +0000 (02:44 -0500)
Work on file usr/src/cmd/adb/machine.h

Co-Authored-By: John Reiser <jfr@research.uucp>
Synthesized-from: 32v

usr/src/cmd/adb/machine.h [new file with mode: 0644]

diff --git a/usr/src/cmd/adb/machine.h b/usr/src/cmd/adb/machine.h
new file mode 100644 (file)
index 0000000..c92368e
--- /dev/null
@@ -0,0 +1,31 @@
+#
+/*
+ *     UNIX/vax debugger
+ */
+
+/* unix parameters */
+#define DBNAME "adb\n"
+#define LPRMODE "%R"
+#define OFFMODE "+%R"
+#define TXTRNDSIZ 512L
+
+TYPE   long TXTHDR[8];
+TYPE   long SYMV;
+
+#ifndef vax
+struct {short hiword; short loword;}; /* stupid fp-11 */
+#endif
+
+/* symbol table in a.out file */
+struct symtab {
+       char    symc[8];
+#ifndef EDDT
+       char    symf;
+       char    sympad[3];
+#endif
+       SYMV    symv;
+};
+#define SYMTABSIZ (sizeof (struct symtab))
+
+#define SYMCHK 057
+#define SYMTYPE(symflg) (symflg&41 ? DSYM : NSYM)