Typos in ChangeLog :-(
[deliverable/binutils-gdb.git] / opcodes / moxie-opc.c
CommitLineData
20135e4c
NC
1/* moxie-opc.c -- Definitions for moxie opcodes.
2 Copyright 2009 Free Software Foundation, Inc.
3 Contributed by Anthony Green (green@moxielogic.com).
4
5 This file is part of the GNU opcodes library.
6
7 This library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
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
19 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22#include "sysdep.h"
23#include "opcode/moxie.h"
24
25/* The moxie processor's 16-bit instructions come in two forms:
26
27 FORM 1 instructions start with a 0 bit...
28
29 0oooooooaaaabbbb
30 0 F
31
32 ooooooo - form 1 opcode number
33 aaaa - operand A
34 bbbb - operand B
35
36 FORM 2 instructions start with bits "10"...
37
38 10ooaaaavvvvvvvv
39 0 F
40
41 oo - form 2 opcode number
42 aaaa - operand A
43 vvvvvvvv - 8-bit immediate value
44
45 FORM 3 instructions start with a bits "11"...
46
47 11oovvvvvvvvvvvv
48 0 F
49
50 oo - form 3 opcode number
51 vvvvvvvvvvvv - 12-bit immediate value. */
52
53const moxie_opc_info_t moxie_form1_opc_info[64] =
54 {
55 { 0x00, MOXIE_F1_NARG, "nop" },
56 { 0x01, MOXIE_F1_A4, "ldi.l" },
57 { 0x02, MOXIE_F1_AB, "mov" },
0e7c7f11 58 { 0x03, MOXIE_F1_M, "jsra" },
20135e4c
NC
59 { 0x04, MOXIE_F1_NARG, "ret" },
60 { 0x05, MOXIE_F1_AB, "add.l" },
61 { 0x06, MOXIE_F1_AB, "push" },
62 { 0x07, MOXIE_F1_AB, "pop" },
63 { 0x08, MOXIE_F1_A4, "lda.l" },
64 { 0x09, MOXIE_F1_4A, "sta.l" },
65 { 0x0a, MOXIE_F1_ABi, "ld.l" },
66 { 0x0b, MOXIE_F1_AiB, "st.l" },
67 { 0x0c, MOXIE_F1_ABi4, "ldo.l" },
68 { 0x0d, MOXIE_F1_AiB4, "sto.l" },
69 { 0x0e, MOXIE_F1_AB, "cmp" },
0e7c7f11
AG
70 { 0x0f, MOXIE_F1_M, "beq" },
71 { 0x10, MOXIE_F1_M, "bne" },
72 { 0x11, MOXIE_F1_M, "blt" },
73 { 0x12, MOXIE_F1_M, "bgt" },
74 { 0x13, MOXIE_F1_M, "bltu" },
75 { 0x14, MOXIE_F1_M, "bgtu" },
76 { 0x15, MOXIE_F1_M, "bge" },
77 { 0x16, MOXIE_F1_M, "ble" },
78 { 0x17, MOXIE_F1_M, "bgeu" },
79 { 0x18, MOXIE_F1_M, "bleu" },
20135e4c 80 { 0x19, MOXIE_F1_A, "jsr" },
0e7c7f11 81 { 0x1a, MOXIE_F1_M, "jmpa" },
20135e4c
NC
82 { 0x1b, MOXIE_F1_A4, "ldi.b" },
83 { 0x1c, MOXIE_F1_ABi, "ld.b" },
84 { 0x1d, MOXIE_F1_A4, "lda.b" },
85 { 0x1e, MOXIE_F1_AiB, "st.b" },
86 { 0x1f, MOXIE_F1_4A, "sta.b" },
87 { 0x20, MOXIE_F1_A4, "ldi.s" },
88 { 0x21, MOXIE_F1_ABi, "ld.s" },
89 { 0x22, MOXIE_F1_A4, "lda.s" },
90 { 0x23, MOXIE_F1_AiB, "st.s" },
91 { 0x24, MOXIE_F1_4A, "sta.s" },
92 { 0x25, MOXIE_F1_A, "jmp" },
93 { 0x26, MOXIE_F1_AB, "and" },
94 { 0x27, MOXIE_F1_AB, "lshr" },
95 { 0x28, MOXIE_F1_AB, "ashl" },
96 { 0x29, MOXIE_F1_AB, "sub.l" },
97 { 0x2a, MOXIE_F1_AB, "neg" },
98 { 0x2b, MOXIE_F1_AB, "or" },
99 { 0x2c, MOXIE_F1_AB, "not" },
100 { 0x2d, MOXIE_F1_AB, "ashr" },
101 { 0x2e, MOXIE_F1_AB, "xor" },
102 { 0x2f, MOXIE_F1_AB, "mul.l" },
103 { 0x30, MOXIE_F1_4, "swi" },
104 { 0x31, MOXIE_F1_AB, "div.l" },
105 { 0x32, MOXIE_F1_AB, "udiv.l" },
106 { 0x33, MOXIE_F1_AB, "mod.l" },
107 { 0x34, MOXIE_F1_AB, "umod.l" },
108 { 0x35, MOXIE_F1_NARG, "brk" },
109 { 0x36, MOXIE_F1_ABi4, "ldo.b" },
110 { 0x37, MOXIE_F1_AiB4, "sto.b" },
111 { 0x38, MOXIE_F1_ABi4, "ldo.s" },
112 { 0x39, MOXIE_F1_AiB4, "sto.s" },
113 { 0x3a, MOXIE_F1_NARG, "bad" },
114 { 0x3b, MOXIE_F1_NARG, "bad" },
115 { 0x3c, MOXIE_F1_NARG, "bad" },
116 { 0x3d, MOXIE_F1_NARG, "bad" },
117 { 0x3e, MOXIE_F1_NARG, "bad" },
118 { 0x3f, MOXIE_F1_NARG, "bad" }
119 };
120
121const moxie_opc_info_t moxie_form2_opc_info[4] =
122 {
123 { 0x00, MOXIE_F2_A8V, "inc" },
124 { 0x01, MOXIE_F2_A8V, "dec" },
125 { 0x02, MOXIE_F2_A8V, "gsr" },
126 { 0x03, MOXIE_F2_A8V, "ssr" }
127 };
128
129const moxie_opc_info_t moxie_form3_opc_info[4] =
130 {
131 { 0x00, MOXIE_F2_NARG, "bad" },
132 { 0x01, MOXIE_F2_NARG, "bad" },
133 { 0x02, MOXIE_F2_NARG, "bad" },
134 { 0x03, MOXIE_F2_NARG, "bad" }
135 };
136
This page took 0.03379 seconds and 4 git commands to generate.