| [10] | 1 | /* coff information for Apollo M68K
|
|---|
| 2 |
|
|---|
| 3 | Copyright 2001 Free Software Foundation, Inc.
|
|---|
| 4 |
|
|---|
| 5 | This program is free software; you can redistribute it and/or modify
|
|---|
| 6 | it under the terms of the GNU General Public License as published by
|
|---|
| 7 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 8 | (at your option) any later version.
|
|---|
| 9 |
|
|---|
| 10 | This program is distributed in the hope that it will be useful,
|
|---|
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 13 | GNU General Public License for more details.
|
|---|
| 14 |
|
|---|
| 15 | You should have received a copy of the GNU General Public License
|
|---|
| 16 | along with this program; if not, write to the Free Software
|
|---|
| 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|---|
| 18 |
|
|---|
| [609] | 19 | #define DO_NOT_DEFINE_AOUTHDR
|
|---|
| 20 | #define L_LNNO_SIZE 2
|
|---|
| 21 | #include "coff/external.h"
|
|---|
| [10] | 22 |
|
|---|
| 23 | /* Motorola 68000/68008/68010/68020 */
|
|---|
| 24 | #define MC68MAGIC 0520
|
|---|
| 25 | #define MC68KWRMAGIC 0520 /* writeable text segments */
|
|---|
| 26 | #define MC68TVMAGIC 0521
|
|---|
| 27 | #define MC68KROMAGIC 0521 /* readonly shareable text segments */
|
|---|
| 28 | #define MC68KPGMAGIC 0522 /* demand paged text segments */
|
|---|
| 29 | #define M68MAGIC 0210
|
|---|
| 30 | #define M68TVMAGIC 0211
|
|---|
| 31 |
|
|---|
| 32 | /* Apollo 68000-based machines have a different magic number. This comes
|
|---|
| 33 | * from /usr/include/apollo/filehdr.h
|
|---|
| 34 | */
|
|---|
| |
|---|