From dce1daa30b047259f60d1b099b27e3084cc19f25 Mon Sep 17 00:00:00 2001 From: Tom London Date: Mon, 6 Nov 1978 02:44:42 -0500 Subject: [PATCH] Bell 32V development Work on file usr/src/cmd/adb/machine.h Co-Authored-By: John Reiser Synthesized-from: 32v --- usr/src/cmd/adb/machine.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 usr/src/cmd/adb/machine.h diff --git a/usr/src/cmd/adb/machine.h b/usr/src/cmd/adb/machine.h new file mode 100644 index 0000000000..c92368e255 --- /dev/null +++ b/usr/src/cmd/adb/machine.h @@ -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) -- 2.20.1