12a6b7db3Sskrll /* BFD support for the Texas Instruments TMS320C30 architecture. 2*f22f0ef4Schristos Copyright (C) 1998-2022 Free Software Foundation, Inc. 32a6b7db3Sskrll 42a6b7db3Sskrll This file is part of BFD, the Binary File Descriptor library. 52a6b7db3Sskrll 62a6b7db3Sskrll This program is free software; you can redistribute it and/or modify 72a6b7db3Sskrll it under the terms of the GNU General Public License as published by 82a6b7db3Sskrll the Free Software Foundation; either version 3 of the License, or 92a6b7db3Sskrll (at your option) any later version. 102a6b7db3Sskrll 112a6b7db3Sskrll This program is distributed in the hope that it will be useful, 122a6b7db3Sskrll but WITHOUT ANY WARRANTY; without even the implied warranty of 132a6b7db3Sskrll MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 142a6b7db3Sskrll GNU General Public License for more details. 152a6b7db3Sskrll 162a6b7db3Sskrll You should have received a copy of the GNU General Public License 172a6b7db3Sskrll along with this program; if not, write to the Free Software 182a6b7db3Sskrll Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 192a6b7db3Sskrll 02110-1301, USA. */ 202a6b7db3Sskrll 212a6b7db3Sskrll #include "sysdep.h" 222a6b7db3Sskrll #include "bfd.h" 232a6b7db3Sskrll #include "libbfd.h" 242a6b7db3Sskrll 252a6b7db3Sskrll const bfd_arch_info_type bfd_tic30_arch = 262a6b7db3Sskrll { 27f7172901Schristos 32, /* Bits in a word. */ 28f7172901Schristos 32, /* Bits in an address. */ 29f7172901Schristos 8, /* Bits in a byte. */ 302a6b7db3Sskrll bfd_arch_tic30, 31f7172901Schristos 0, /* Only 1 machine. */ 322a6b7db3Sskrll "tic30", 332a6b7db3Sskrll "tms320c30", 342a6b7db3Sskrll 2, 35*f22f0ef4Schristos true, /* The one and only. */ 362a6b7db3Sskrll bfd_default_compatible, 372a6b7db3Sskrll bfd_default_scan, 3805caefcfSchristos bfd_arch_default_fill, 39f7172901Schristos NULL, 40f7172901Schristos 0 /* Maximum offset of a reloc from the start of an insn. */ 412a6b7db3Sskrll }; 42