annotate src/instab.c @ 50:e672232caffe

Added rmb pseudo op
author lost
date Sun, 04 Jan 2009 07:56:55 +0000
parents 804d7465e0f9
children b9856da2674a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
1 /*
4
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
2 instab.c
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
3 Copyright © 2008 William Astle
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
4
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
5 This file is part of LWASM.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
6
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
7 LWASM is free software: you can redistribute it and/or modify it under the
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
8 terms of the GNU General Public License as published by the Free Software
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
9 Foundation, either version 3 of the License, or (at your option) any later
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
10 version.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
11
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
12 This program is distributed in the hope that it will be useful, but WITHOUT
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
15 more details.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
16
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
17 You should have received a copy of the GNU General Public License along with
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
18 this program. If not, see <http://www.gnu.org/licenses/>.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
19
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
20
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
21 Contains the instruction table for assembling code
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
22 */
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
23
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
24 #include <stdlib.h>
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
25
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
26 #define __instab_c_seen__
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
27 #include "instab.h"
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
28
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
29 extern OPFUNC(insn_inh);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
30 extern OPFUNC(insn_gen8);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
31 extern OPFUNC(insn_gen16);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
32 extern OPFUNC(insn_gen32);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
33 extern OPFUNC(insn_gen0);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
34 extern OPFUNC(insn_rtor);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
35 extern OPFUNC(insn_imm8);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
36 extern OPFUNC(insn_rel8);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
37 extern OPFUNC(insn_rel16);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
38 extern OPFUNC(insn_rlist);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
39 extern OPFUNC(insn_bitbit);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
40 extern OPFUNC(insn_logicmem);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
41 extern OPFUNC(insn_tfm);
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
42 extern OPFUNC(insn_indexed);
50
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
43
47
804d7465e0f9 Implemented ORG and fixed problems with constants using $, &, or @ to specify base
lost
parents: 25
diff changeset
44 extern OPFUNC(pseudo_org);
50
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
45 extern OPFUNC(pseudo_equ);
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
46 extern OPFUNC(pseudo_rmb);
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
47
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
48 instab_t instab[] =
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
49 {
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
50 { "abx", { 0x3a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
51 { "adca", { 0x99, 0xa9, 0xb9, 0x89 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
52 { "adcb", { 0xd9, 0xe9, 0xf9, 0xc9 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
53 { "adcd", { 0x1099, 0x10a9, 0x10b9, 0x1089 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
54 { "adcr", { 0x1031, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
55 { "adda", { 0x9b, 0xab, 0xbb, 0x8b }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
56 { "addb", { 0xdb, 0xeb, 0xfb, 0xcb }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
57 { "addd", { 0xd3, 0xe3, 0xf3, 0xc3 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
58 { "adde", { 0x119b, 0x11ab, 0x11bb, 0x118b }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
59 { "addf", { 0x11db, 0x11eb, 0x11fb, 0x11cb }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
60 { "addr", { 0x1030, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
61 { "addw", { 0x109b, 0x10ab, 0x10bb, 0x108b }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
62 { "aim", { 0x02, 0x62, 0x72, -0x1 }, insn_logicmem },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
63 { "anda", { 0x94, 0xa4, 0xb4, 0x84 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
64 { "andb", { 0xd4, 0xe4, 0xf4, 0xc4 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
65 { "andcc", { 0x1c, -0x1, -0x1, 0x1c }, insn_imm8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
66 { "andd", { 0x1094, 0x10a4, 0x10b4, 0x1084 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
67 { "andr", { 0x1034, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
68 { "asl", { 0x08, 0x68, 0x78, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
69 { "asla", { 0x48, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
70 { "aslb", { 0x58, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
71 { "asld", { 0x1048, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
72 { "asr", { 0x07, 0x67, 0x77, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
73 { "asra", { 0x47, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
74 { "asrb", { 0x57, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
75 { "asrd", { 0x1047, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
76
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
77 { "band", { 0x1130, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
78 { "bcc", { 0x24, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
79 { "bcs", { 0x25, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
80 { "beor", { 0x1134, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
81 { "beq", { 0x27, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
82 { "bge", { 0x2c, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
83 { "bgt", { 0x2e, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
84 { "bhi", { 0x22, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
85 { "bhs", { 0x24, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
86 { "biand", { 0x1131, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
87 { "bieor", { 0x1135, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
88 { "bior", { 0x1133, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
89 { "bita", { 0x95, 0xa5, 0xb5, 0x85 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
90 { "bitb", { 0xd5, 0xe5, 0xf5, 0xc5 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
91 { "bitd", { 0x1095, 0x10a5, 0x10b5, 0x1085 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
92 { "bitmd", { 0x113c, -0x1, -0x1, 0x113c }, insn_imm8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
93 { "ble", { 0x2f, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
94 { "blo", { 0x25, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
95 { "bls", { 0x23, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
96 { "blt", { 0x2d, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
97 { "bmi", { 0x2b, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
98 { "bne", { 0x26, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
99 { "bor", { 0x1132, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
100 { "bpl", { 0x2a, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
101 { "bra", { 0x20, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
102 { "brn", { 0x21, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
103 { "bsr", { 0x8d, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
104 { "bvc", { 0x28, -0x1, -0x1, -0x1 }, insn_rel8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
105 { "bvs", { 0x29, -0x1, -0x1, -0x1 }, insn_rel8 },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
106
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
107 { "clr", { 0x0f, 0x6f, 0x7f, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
108 { "clra", { 0x4f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
109 { "clrb", { 0x5f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
110 { "clrd", { 0x104f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
111 { "clre", { 0x114f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
112 { "clrf", { 0x115f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
113 { "clrw", { 0x105f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
114 { "cmpa", { 0x91, 0xa1, 0xb1, 0x81 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
115 { "cmpb", { 0xd1, 0xe1, 0xf1, 0xc1 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
116 { "cmpd", { 0x1093, 0x10a3, 0x10b3, 0x1083 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
117 { "cmpe", { 0x1191, 0x11a1, 0x11b1, 0x1181 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
118 { "cmpf", { 0x11d1, 0x11e1, 0x11f1, 0x11c1 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
119 { "cmpr", { 0x1037, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
120 { "cmps", { 0x119c, 0x11ac, 0x11bc, 0x118c }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
121 { "cmpu", { 0x1193, 0x11a3, 0x11b3, 0x1183 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
122 { "cmpw", { 0x1091, 0x10a1, 0x10b1, 0x1081 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
123 { "cmpx", { 0x9c, 0xac, 0xbc, 0x8c }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
124 { "cmpy", { 0x109c, 0x10ac, 0x10bc, 0x108c }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
125 { "com", { 0x03, 0x63, 0x73, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
126 { "coma", { 0x43, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
127 { "comb", { 0x53, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
128 { "comd", { 0x1043, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
129 { "come", { 0x1143, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
130 { "comf", { 0x1153, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
131 { "comw", { 0x1053, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
132 { "cwai", { 0x3c, -0x1, -0x1, -0x1 }, insn_imm8 },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
133
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
134 { "daa", { 0x19, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
135 { "dec", { 0x0a, 0x6a, 0x7a, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
136 { "deca", { 0x4a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
137 { "decb", { 0x5a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
138 { "decd", { 0x104a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
139 { "dece", { 0x114a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
140 { "decf", { 0x115a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
141 { "decw", { 0x105a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
142 { "divd", { 0x118d, 0x119d, 0x11ad, 0x11bd }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
143 { "divq", { 0x118e, 0x119e, 0x11ae, 0x11be }, insn_gen16 },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
144
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
145 { "eim", { 0x05, 0x65, 0x75, -0x1 }, insn_logicmem },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
146 { "eora", { 0x98, 0xa8, 0xb8, 0x88 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
147 { "eorb", { 0xd8, 0xe9, 0xf9, 0xc8 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
148 { "eord", { 0x1098, 0x10a8, 0x10b8, 0x1088 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
149 { "eorr", { 0x1036, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
150 { "exg", { 0x1e, -0x1, -0x1, -0x1 }, insn_rtor },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
151
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
152 { "inc", { 0x0c, 0x6c, 0x7c, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
153 { "inca", { 0x4c, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
154 { "incb", { 0x5c, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
155 { "incd", { 0x104c, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
156 { "ince", { 0x114c, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
157 { "incf", { 0x115c, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
158 { "incw", { 0x105c, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
159
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
160 { "jmp", { 0x0e, 0x6e, 0x7e, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
161 { "jsr", { 0x9d, 0xad, 0xbd, -0x1 }, insn_gen0 },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
162
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
163 { "lbcc", { 0x1024, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
164 { "lbcs", { 0x1025, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
165 { "lbeq", { 0x1027, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
166 { "lbge", { 0x102c, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
167 { "lbgt", { 0x102e, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
168 { "lbhi", { 0x1022, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
169 { "lbhs", { 0x1024, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
170 { "lble", { 0x102f, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
171 { "lblo", { 0x1025, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
172 { "lbls", { 0x1023, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
173 { "lblt", { 0x102d, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
174 { "lbmi", { 0x102b, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
175 { "lbne", { 0x1026, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
176 { "lbpl", { 0x102a, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
177 { "lbra", { 0x16, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
178 { "lbrn", { 0x1021, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
179 { "lbsr", { 0x17, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
180 { "lbvc", { 0x1028, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
181 { "lbvs", { 0x1029, -0x1, -0x1, -0x1 }, insn_rel16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
182 { "lda", { 0x96, 0xa6, 0xb6, 0x86 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
183 { "ldb", { 0xd6, 0xe6, 0xf6, 0xc6 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
184 { "ldbt", { 0x1136, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
185 { "ldd", { 0xdc, 0xec, 0xfc, 0xcc }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
186 { "lde", { 0x1196, 0x11a6, 0x11b6, 0x1186 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
187 { "ldf", { 0x11d6, 0x11e6, 0x11f6, 0x11c6 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
188 { "ldq", { 0x10dc, 0x10ec, 0x10fc, 0xcd }, insn_gen32 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
189 { "lds", { 0x10de, 0x10ee, 0x10fe, 0x10ce }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
190 { "ldu", { 0xde, 0xee, 0xfe, 0xce }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
191 { "ldw", { 0x1096, 0x10a6, 0x10b6, 0x1086 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
192 { "ldx", { 0x9e, 0xae, 0xbe, 0x8e }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
193 { "ldy", { 0x109e, 0x10ae, 0x10be, 0x108e }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
194 { "ldmd", { 0x113d, -0x1, -0x1, 0x113d }, insn_imm8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
195 { "leas", { 0x32, -0x1, -0x1, -0x1 }, insn_indexed },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
196 { "leau", { 0x33, -0x1, -0x1, -0x1 }, insn_indexed },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
197 { "leax", { 0x30, -0x1, -0x1, -0x1 }, insn_indexed },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
198 { "leay", { 0x31, -0x1, -0x1, -0x1 }, insn_indexed },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
199 { "lsl", { 0x08, 0x68, 0x78, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
200 { "lsla", { 0x48, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
201 { "lslb", { 0x58, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
202 { "lsld", { 0x1048, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
203 { "lsr", { 0x04, 0x64, 0x74, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
204 { "lsra", { 0x44, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
205 { "lsrb", { 0x54, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
206 { "lsrd", { 0x1044, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
207 { "lsrw", { 0x1054, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
208
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
209 { "mul", { 0x3d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
210 { "muld", { 0x118f, 0x119f, 0x11af, 0x11bf }, insn_gen16 },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
211
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
212 { "neg", { 0x00, 0x60, 0x70, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
213 { "nega", { 0x40, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
214 { "negb", { 0x50, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
215 { "negd", { 0x1040, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
216 { "nop", { 0x12, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
217
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
218 { "oim", { 0x01, 0x61, 0x71, -0x1 }, insn_logicmem },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
219 { "ora", { 0x9a, 0xaa, 0xba, 0x8a }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
220 { "orb", { 0xda, 0xea, 0xfa, 0xca }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
221 { "orcc", { 0x1a, -0x1, -0x1, 0x1a }, insn_imm8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
222 { "ord", { 0x109a, 0x10aa, 0x10ba, 0x108a }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
223 { "orr", { 0x1035, -0x1, -0x1, -0x1 }, insn_rtor },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
224
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
225 { "pshs", { 0x34, -0x1, -0x1, -0x1 }, insn_rlist },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
226 { "pshsw", { 0x1038, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
227 { "pshu", { 0x36, -0x1, -0x1, -0x1 }, insn_rlist },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
228 { "pshuw", { 0x103a, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
229 { "puls", { 0x35, -0x1, -0x1, -0x1 }, insn_rlist },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
230 { "pulsw", { 0x1039, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
231 { "pulu", { 0x37, -0x1, -0x1, -0x1 }, insn_rlist },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
232 { "puluw", { 0x103b, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
233
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
234 { "rol", { 0x09, 0x69, 0x79, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
235 { "rola", { 0x49, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
236 { "rolb", { 0x59, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
237 { "rold", { 0x1049, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
238 { "rolw", { 0x1059, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
239 { "ror", { 0x06, 0x66, 0x76, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
240 { "rora", { 0x46, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
241 { "rorb", { 0x56, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
242 { "rord", { 0x1046, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
243 { "rorw", { 0x1056, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
244 { "rti", { 0x3b, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
245 { "rts", { 0x39, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
246
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
247 { "sbca", { 0x92, 0xa2, 0xb2, 0x82 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
248 { "sbcb", { 0xd2, 0xe2, 0xf2, 0xc2 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
249 { "sbcd", { 0x1092, 0x10a2, 0x10b2, 0x1082 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
250 { "sbcr", { 0x1033, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
251 { "sex", { 0x1d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
252 { "sexw", { 0x14, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
253 { "sta", { 0x97, 0xa7, 0xb7, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
254 { "stb", { 0xd7, 0xe7, 0xf7, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
255 { "stbt", { 0x1137, -0x1, -0x1, -0x1 }, insn_bitbit },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
256 { "std", { 0xdd, 0xed, 0xfd, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
257 { "ste", { 0x1197, 0x11a7, 0x11b7, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
258 { "stf", { 0x11d7, 0x11e7, 0x11f7, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
259 { "stq", { 0x10dd, 0x10ed, 0x10fd, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
260 { "sts", { 0x10df, 0x10ef, 0x10ff, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
261 { "stu", { 0xdf, 0xef, 0xff, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
262 { "stw", { 0x1097, 0x10a7, 0x10b7, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
263 { "stx", { 0x9f, 0xaf, 0xbf, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
264 { "sty", { 0x109f, 0x10af, 0x10bf, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
265 { "suba", { 0x90, 0xa0, 0xb0, 0x80 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
266 { "subb", { 0xd0, 0xe0, 0xf0, 0xc0 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
267 { "subd", { 0x93, 0xa3, 0xb3, 0x83 }, insn_gen16 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
268 { "sube", { 0x1190, 0x11a0, 0x11b0, 0x1180 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
269 { "subf", { 0x11d0, 0x11e0, 0x11f0, 0x11c0 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
270 { "subr", { 0x1032, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
271 { "subw", { 0x1090, 0x10a0, 0x1090, 0x1080 }, insn_gen8 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
272 { "swi", { 0x3f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
273 { "swi2", { 0x103f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
274 { "swi3", { 0x113f, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
275 { "sync", { 0x13, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
276
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
277 // note: r+,r+ r-,r- r+,r r,r+
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
278 { "tfm", { 0x1138, 0x1139, 0x113a, 0x113b }, insn_tfm },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
279
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
280 { "tfr", { 0x1f, -0x1, -0x1, -0x1 }, insn_rtor },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
281 { "tim", { 0x0b, 0x6b, 0x7b, -0x1 }, insn_logicmem },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
282 { "tst", { 0x0d, 0x6d, 0x7d, -0x1 }, insn_gen0 },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
283 { "tsta", { 0x4d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
284 { "tstb", { 0x5d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
285 { "tstd", { 0x104d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
286 { "tste", { 0x114d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
287 { "tstf", { 0x115d, -0x1, -0x1, -0x1 }, insn_inh },
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
288 { "tstw", { 0x105d, -0x1, -0x1, -0x1 }, insn_inh },
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
289
47
804d7465e0f9 Implemented ORG and fixed problems with constants using $, &, or @ to specify base
lost
parents: 25
diff changeset
290 { "org", { -1, -1, -1, -1 }, pseudo_org },
804d7465e0f9 Implemented ORG and fixed problems with constants using $, &, or @ to specify base
lost
parents: 25
diff changeset
291
50
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
292 { "equ", { -1, -1, -1, -1 }, pseudo_equ },
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
293 { "=", { -1, -1, -1, -1 }, pseudo_equ },
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
294
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
295 { "rmb", { -1, -1, -1, -1 }, pseudo_rmb },
e672232caffe Added rmb pseudo op
lost
parents: 47
diff changeset
296
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
297 /* flag end of table */
25
3b818f05dc2a imported instruction table from older version to development version
lost
parents: 4
diff changeset
298 { NULL, { -0x1, -0x1, -0x1, -0x1 }, insn_inh }
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
299 };