c996fe584e4485130d163aff79cf3a0eb2fc5b41
[deliverable/binutils-gdb.git] / include / opcode / moxie.h
1 /* Definitions for decoding the moxie opcode table.
2 Copyright 2009 Free Software Foundation, Inc.
3 Contributed by Anthony Green (green@moxielogic.com).
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 3 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., 51 Franklin Street - Fifth Floor, Boston, MA
18 02110-1301, USA. */
19
20 /* Form 1 instructions come in different flavors:
21
22 Some have no arguments (MOXIE_F1_NARG)
23 Some only use the A operand (MOXIE_F1_A)
24 Some use A and B registers (MOXIE_F1_AB)
25 Some use A and consume a 4 byte immediate value (MOXIE_F1_A4)
26 Some use just a 4 byte immediate value (MOXIE_F1_4)
27 Some use B and an indirect A (MOXIE_F1_AiB)
28 Some use A and an indirect B (MOXIE_F1_ABi)
29 Some consume a 4 byte immediate value and use X (MOXIE_F1_4A)
30 Some use B and an indirect A plus 4 bytes (MOXIE_F1_AiB4)
31 Some use A and an indirect B plus 4 bytes (MOXIE_F1_ABi4)
32
33 Form 2 instructions also come in different flavors:
34
35 Some have no arguments (MOXIE_F2_NARG)
36 Some use the A register and an 8-bit value (MOXIE_F2_A8V)
37
38 Form 3 instructions also come in different flavors:
39
40 Some have no arguments (MOXIE_F3_NARG). */
41
42 #define MOXIE_F1_NARG 0x100
43 #define MOXIE_F1_A 0x101
44 #define MOXIE_F1_AB 0x102
45 /* #define MOXIE_F1_ABC 0x103 */
46 #define MOXIE_F1_A4 0x104
47 #define MOXIE_F1_4 0x105
48 #define MOXIE_F1_AiB 0x106
49 #define MOXIE_F1_ABi 0x107
50 #define MOXIE_F1_4A 0x108
51 #define MOXIE_F1_AiB4 0x109
52 #define MOXIE_F1_ABi4 0x10a
53
54 #define MOXIE_F2_NARG 0x200
55 #define MOXIE_F2_A8V 0x201
56
57 #define MOXIE_F3_NARG 0x300
58
59 typedef struct moxie_opc_info_t
60 {
61 short opcode;
62 unsigned itype;
63 const char * name;
64 } moxie_opc_info_t;
65
66 extern const moxie_opc_info_t moxie_form1_opc_info[64];
67 extern const moxie_opc_info_t moxie_form2_opc_info[4];
68 extern const moxie_opc_info_t moxie_form3_opc_info[4];
This page took 0.032094 seconds and 3 git commands to generate.