diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-05-05 12:41:52 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-05-05 12:41:52 +0000 |
commit | c77809b5928879bb6a541c5a0fb76ceac91a05d9 (patch) | |
tree | ae680728f6b9882d27b87527a61ef79ae35b8619 /gas/config/obj-hp300.h | |
parent | 199d3bb81b1db71e5b19df869135683dc772fc5e (diff) | |
download | gdb-c77809b5928879bb6a541c5a0fb76ceac91a05d9.zip gdb-c77809b5928879bb6a541c5a0fb76ceac91a05d9.tar.gz gdb-c77809b5928879bb6a541c5a0fb76ceac91a05d9.tar.bz2 |
hp300 hpux configuration
Diffstat (limited to 'gas/config/obj-hp300.h')
-rw-r--r-- | gas/config/obj-hp300.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/gas/config/obj-hp300.h b/gas/config/obj-hp300.h new file mode 100644 index 0000000..0ce83cd --- /dev/null +++ b/gas/config/obj-hp300.h @@ -0,0 +1,70 @@ +/* This file is obj-hp300.h + Copyright (C) 1993 Free Software Foundation, Inc. + + This file is part of GAS, the GNU Assembler. + + GAS is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + GAS is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GAS; see the file COPYING. If not, write to + the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#define __STRUCT_EXEC_OVERRIDE__ + +struct exec_bytes +{ + unsigned char a_info[4]; /* a_machtype/a_magic */ + unsigned char a_spare1[4]; + unsigned char a_spare2[4]; + unsigned char a_text[4]; /* length of text, in bytes */ + unsigned char a_data[4]; /* length of data, in bytes */ + unsigned char a_bss[4]; /* length of uninitialized data area for file, in bytes */ + unsigned char a_trsize[4]; /* length of relocation info for text, in bytes */ + unsigned char a_drsize[4]; /* length of relocation info for data, in bytes */ + unsigned char a_spare3[4]; /* HP = pascal interface size */ + unsigned char a_spare4[4]; /* HP = symbol table size */ + unsigned char a_spare5[4]; /* HP = debug name table size */ + unsigned char a_entry[4]; /* start address */ + unsigned char a_spare6[4]; /* HP = source line table size */ + unsigned char a_spare7[4]; /* HP = value table size */ + unsigned char a_syms[4]; /* length of symbol table data in file, in bytes */ + unsigned char a_spare8[4]; +}; + +/* How big the "struct exec" is on disk */ +#define EXEC_BYTES_SIZE (16 * 4) + +struct exec +{ + unsigned long a_info; + unsigned long a_spare1; + unsigned long a_spare2; + unsigned long a_text; + unsigned long a_data; + unsigned long a_bss; + unsigned long a_trsize; + unsigned long a_drsize; + unsigned long a_spare3; + unsigned long a_spare4; + unsigned long a_spare5; + unsigned long a_entry; + unsigned long a_spare6; + unsigned long a_spare7; + unsigned long a_syms; + unsigned long a_spare8; +}; + +#define DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE (OMAGIC) +#define AOUT_VERSION 0x02 +#define AOUT_MACHTYPE 0x0c +#define OMAGIC 0x106 + +#include "config/obj-aout.h" |