OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [include/] [vms/] [emh.h] - Blame information for rev 833

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 227 jeremybenn
/* Alpha VMS external format of Extended Module Header.
2
 
3
   Copyright 2010 Free Software Foundation, Inc.
4
   Written by Tristan Gingold <gingold@adacore.com>, AdaCore.
5
 
6
   This file is part of BFD, the Binary File Descriptor library.
7
 
8
   This program is free software; you can redistribute it and/or modify
9
   it under the terms of the GNU General Public License as published by
10
   the Free Software Foundation; either version 3 of the License, or
11
   (at your option) any later version.
12
 
13
   This program is distributed in the hope that it will be useful,
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
   GNU General Public License for more details.
17
 
18
   You should have received a copy of the GNU General Public License
19
   along with this program; if not, write to the Free Software
20
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21
   MA 02110-1301, USA.  */
22
 
23
#ifndef _VMS_EMH_H
24
#define _VMS_EMH_H
25
 
26
#define EMH__C_MHD 0            /* Main header record.          */
27
#define EMH__C_LNM 1            /* Language name and version.   */
28
#define EMH__C_SRC 2            /* Source file specification.   */
29
#define EMH__C_TTL 3            /* Title text of module.        */
30
#define EMH__C_CPR 4            /* Copyright notice.            */
31
#define EMH__C_MTC 5            /* Maintenance status.          */
32
#define EMH__C_GTX 6            /* General text.                */
33
#define EMH__C_MAXHDRTYP 6      /* Maximum allowable type.      */
34
 
35
struct vms_emh_common
36
{
37
  /* Record type.  */
38
  unsigned char rectyp[2];
39
 
40
  /* Record size.  */
41
  unsigned char size[2];
42
 
43
  /* Subtype.  */
44
  unsigned char subtyp[2];
45
};
46
 
47
struct vms_emh_mhd
48
{
49
  struct vms_emh_common common;
50
 
51
  unsigned char strlvl;
52
 
53
  unsigned char temp;
54
 
55
  unsigned char arch1[4];
56
  unsigned char arch2[4];
57
 
58
  unsigned char recsiz[4];
59
 
60
  /* Module name: ASCIC.  */
61
  /* Module version: ASCIC.  */
62
  /* Compile data: ASCIC.  */
63
};
64
 
65
struct vms_emh_lnm
66
{
67
  struct vms_emh_common common;
68
 
69
  /* Language processor name: ASCII.  */
70
};
71
 
72
#endif /* _VMS_EMH_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.