Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-01-10 19:33:51 +0300
committerNick Clifton <nickc@redhat.com>2005-01-10 19:33:51 +0300
commitc4a0585f6034feb31c2a99f3d79465786c572da2 (patch)
tree1f2923c27be682787daa7c1260fbe4689319bf2f /include/coff
parent7cd6e35969b453dee5ac209977863631af77871d (diff)
Add support for maxq10 and maxq20 machine values
Diffstat (limited to 'include/coff')
-rw-r--r--include/coff/ChangeLog6
-rw-r--r--include/coff/maxq.h11
2 files changed, 13 insertions, 4 deletions
diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog
index 533e59b07..3d2c66d4e 100644
--- a/include/coff/ChangeLog
+++ b/include/coff/ChangeLog
@@ -1,7 +1,11 @@
+2005-01-10 Inderpreet Singh <inderpreetb@noida.hcltech.com>
+
+ * maxq.h (F_MAXQ10, F_MAXQ20): Define.
+
2004-11-08 Inderpreet Singh <inderpreetb@nioda.hcltech.com>
Vineet Sharma <vineets@noida.hcltech.com>
- * maxqh: New file: Defintions for the maxq port.
+ * maxq.h: New file: Defintions for the maxq port.
2004-11-08 Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
diff --git a/include/coff/maxq.h b/include/coff/maxq.h
index a7be9cb1e..694a3fa63 100644
--- a/include/coff/maxq.h
+++ b/include/coff/maxq.h
@@ -1,6 +1,6 @@
/* COFF spec for MAXQ
- Copyright 2004 Free Software Foundation, Inc.
+ Copyright 2004, 2005 Free Software Foundation, Inc.
This program 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
@@ -25,14 +25,19 @@
/* Bits for f_flags: F_RELFLG relocation info stripped from file F_EXEC file
is executable (no unresolved external references) F_LNNO line numbers
- stripped from file F_LSYMS local symbols stripped from file F_AR32WR file
- has byte ordering of an AR32WR machine (e.g. vax). */
+ stripped from file F_LSYMS local symbols stripped from file. */
#define F_RELFLG (0x0001)
#define F_EXEC (0x0002)
#define F_LNNO (0x0004)
#define F_LSYMS (0x0008)
+/* Variant Specific Flags for MAXQ10 and MAXQ20. */
+#define F_MAXQ10 (0x0030)
+#define F_MAXQ20 (0x0040)
+
+#define F_MACHMASK (0x00F0)
+
/* Magic numbers for maxq. */
#define MAXQ20MAGIC 0xa0
#define MAXQ20BADMAG(x) (((x).f_magic != MAXQ20MAGIC))