cpu-i860.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* BFD support for the Intel 860 architecture.
  2. Copyright (C) 1992-2015 Free Software Foundation, Inc.
  3. Created mostly by substituting "860" for "386" in cpu-i386.c
  4. Harry Dolan <dolan@ssd.intel.com>, October 1995
  5. This file is part of BFD, the Binary File Descriptor library.
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or
  9. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  17. MA 02110-1301, USA. */
  18. #include "sysdep.h"
  19. #include "bfd.h"
  20. #include "libbfd.h"
  21. const bfd_arch_info_type bfd_i860_arch =
  22. {
  23. 32, /* 32 bits in a word */
  24. 32, /* 32 bits in an address */
  25. 8, /* 8 bits in a byte */
  26. bfd_arch_i860, /* Architecture */
  27. 0, /* Only one machine */
  28. "i860", /* Architecture name */
  29. "i860", /* Printable name */
  30. 3, /* Section alignment exponent */
  31. TRUE, /* Is this the default architecture? */
  32. bfd_default_compatible,
  33. bfd_default_scan,
  34. bfd_arch_default_fill,
  35. 0, /* Next in list */
  36. };