1999-05-03 09:29:11 +02:00
|
|
|
/* BFD support for the Matsushita 10300 processor
|
2007-04-26 16:47:00 +02:00
|
|
|
Copyright 1996, 1997, 1999, 2000, 2002, 2003, 2007
|
2005-03-03 12:41:03 +01:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-03 16:26:43 +02:00
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-03 16:26:43 +02:00
|
|
|
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 Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-03 16:26:43 +02:00
|
|
|
This program 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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-03 16:26:43 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "bfd.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "libbfd.h"
|
|
|
|
|
2003-07-10 04:53:10 +02:00
|
|
|
const bfd_arch_info_type bfd_am33_2_arch =
|
|
|
|
{
|
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_mn10300,
|
|
|
|
332,
|
|
|
|
"am33_2",
|
|
|
|
"am33-2",
|
|
|
|
2,
|
|
|
|
FALSE,
|
|
|
|
bfd_default_compatible,
|
|
|
|
bfd_default_scan,
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
1999-12-01 11:14:02 +01:00
|
|
|
const bfd_arch_info_type bfd_am33_arch =
|
|
|
|
{
|
2000-04-01 22:58:49 +02:00
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
1999-12-01 11:14:02 +01:00
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_mn10300,
|
|
|
|
330,
|
|
|
|
"am33",
|
|
|
|
"am33",
|
|
|
|
2,
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE,
|
1999-12-01 11:14:02 +01:00
|
|
|
bfd_default_compatible,
|
2000-03-31 20:46:38 +02:00
|
|
|
bfd_default_scan,
|
2003-07-10 04:53:10 +02:00
|
|
|
&bfd_am33_2_arch,
|
1999-12-01 11:14:02 +01:00
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
const bfd_arch_info_type bfd_mn10300_arch =
|
|
|
|
{
|
2000-04-01 22:58:49 +02:00
|
|
|
32, /* 32 bits in a word */
|
|
|
|
32, /* 32 bits in an address */
|
1999-05-03 09:29:11 +02:00
|
|
|
8, /* 8 bits in a byte */
|
|
|
|
bfd_arch_mn10300,
|
|
|
|
300,
|
|
|
|
"mn10300",
|
|
|
|
"mn10300",
|
|
|
|
2,
|
2002-11-30 09:39:46 +01:00
|
|
|
TRUE, /* the one and only */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_default_compatible,
|
2000-03-31 20:46:38 +02:00
|
|
|
bfd_default_scan,
|
1999-12-01 11:14:02 +01:00
|
|
|
&bfd_am33_arch,
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|