1 /* mn10300.h -- Header file for Matsushita 10300 opcode table
2 Copyright 1996 Free Software Foundation, Inc.
3 Written by Jeff Law, Cygnus Support
5 This file is part of GDB, GAS, and the GNU binutils.
7 GDB, GAS, and the GNU binutils are free software; you can redistribute
8 them and/or modify them under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either version
10 1, or (at your option) any later version.
12 GDB, GAS, and the GNU binutils are distributed in the hope that they
13 will be useful, but WITHOUT ANY WARRANTY; without even the implied
14 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this file; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 /* The opcode table is an array of struct mn10300_opcode. */
28 /* The opcode name. */
31 /* The opcode itself. Those bits which will be filled in with
32 operands are zeroes. */
35 /* The opcode mask. This is used by the disassembler. This is a
36 mask containing ones indicating those bits which must match the
37 opcode field, and zeroes indicating those bits which need not
38 match (and are presumably filled in by operands). */
41 /* An array of operand codes. Each code is an index into the
42 operand table. They appear in the order which the operands must
43 appear in assembly code, and are terminated by a zero. */
44 unsigned char operands[8];
47 /* The table itself is sorted by major opcode number, and is otherwise
48 in the order in which the disassembler should consider
50 extern const struct mn10300_opcode mn10300_opcodes[];
51 extern const int mn10300_num_opcodes;
54 /* The operands table is an array of struct powerpc_operand. */
56 struct mn10300_operand
58 /* The number of bits in the operand. */
61 /* How far the operand is left shifted in the instruction. */
64 /* One bit syntax flags. */
68 /* Elements in the table are retrieved by indexing with values from
69 the operands field of the mn10300_opcodes table. */
71 extern const struct mn10300_operand mn10300_operands[];
73 /* Values defined for the flags field of a struct mn10300_operand. */
75 #endif /* MN10300_H */