forked from derbroti/Stm8Ida
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ins.cpp
executable file
·225 lines (221 loc) · 11.3 KB
/
ins.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include "st8.hpp"
instruc_t Instructions[] = {
{ "", 0 }, // Unknown Operation
{ "adc", CF_CHG1|CF_USE1|CF_USE2 }, // Add with Carry
{ "add", CF_CHG1|CF_USE1|CF_USE2 }, // Addition
{ "addw", CF_CHG1|CF_USE1|CF_USE2 }, // Addition Word
{ "and", CF_CHG1|CF_USE1|CF_USE2 }, // Logical And
{ "bccm", CF_CHG1|CF_USE1|CF_USE2 }, // Copy carry in memory bit
{ "bcp", CF_USE1|CF_USE2 }, // Bit compare
{ "bcpl", CF_USE1|CF_USE2 }, // Bit complement
{ "break", 0 }, // Software breakpoint
{ "bres", CF_CHG1|CF_USE1 }, // Bit Reset
{ "bset", CF_CHG1|CF_USE1 }, // Bit Set
{ "btjf", CF_USE1|CF_USE2|CF_USE3 }, // Jump if bit is false
{ "btjt", CF_USE1|CF_USE2|CF_USE3 }, // Jump if bit is true
{ "call", CF_USE1|CF_CALL }, // Call subroutine
{ "callf", CF_USE1|CF_CALL }, // Call subroutine far
{ "callr", CF_USE1|CF_CALL }, // Call subroutine relative
{ "ccf", 0 }, // Complement Carry Flag
{ "clr", CF_CHG1 }, // Clear
{ "clrw", CF_CHG1 }, // Clear destination index register
{ "cp", CF_USE1|CF_USE2 }, // Arithmetic Compare
{ "cpw", CF_USE1|CF_USE2 }, // Arithmetic Compare Word
{ "cpl", CF_USE1|CF_CHG1 }, // One Complement
{ "cplw", CF_USE1|CF_CHG1 }, // One Complement Word
{ "dec", CF_USE1|CF_CHG1 }, // Decrement
{ "decw", CF_USE1|CF_CHG1 }, // Decrement Word
{ "div", CF_CHG1|CF_USE1|CF_USE2 }, // Division
{ "divw", CF_CHG1|CF_USE1|CF_USE2 }, // Division Word
{ "exg", CF_CHG1|CF_USE1|CF_CHG2|CF_USE2 }, // Data byte exchange
{ "exgw", CF_CHG1|CF_USE1|CF_CHG2|CF_USE2 }, // Data word exchange
{ "halt", 0 }, // Halt
{ "inc", CF_USE1|CF_CHG1 }, // Increment
{ "incw", CF_USE1|CF_CHG1 }, // Increment Word
{ "int", CF_USE1|CF_CALL|CF_STOP }, // Interrupt
{ "iret", CF_STOP }, // Interrupt routine return
{ "jp", CF_USE1|CF_STOP|CF_JUMP }, // Absolute Jump
{ "jpf", CF_USE1|CF_STOP }, // Absolute Jump far
{ "jra", CF_USE1|CF_STOP }, // Jump relative always
{ "jrc", CF_USE1 }, // Jump if carry < (C = 1)
{ "jreq", CF_USE1 }, // Jump if equal = (Z = 1)
{ "jrf", CF_USE1 }, // Never jump
{ "jrh", CF_USE1 }, // Jump if half-carry (H = 1)
{ "jrih", CF_USE1 }, // Jump if Port INT pin = 1
{ "jril", CF_USE1 }, // Jump if Port INT pin = 0
{ "jrm", CF_USE1 }, // Jump if interrupt mask (I = 1)
{ "jrmi", CF_USE1 }, // Jump if minus <0 (N = 1)
{ "jrnc", CF_USE1 }, // Jump if not carry >= (C = 0)
{ "jrne", CF_USE1 }, // Jump if not equal !=0 (Z = 0)
{ "jrnh", CF_USE1 }, // Jump if not half-carry (H = 0)
{ "jrnm", CF_USE1 }, // Jump if not interrupt mask (I = 0)
{ "jrnv", CF_USE1 }, // Jump if not overflow (V = 0)
{ "jrpl", CF_USE1 }, // Jump if plus >=0 (N = 0)
{ "jrsge", CF_USE1 }, // Jump if signed greater or equal >= ((N XOR V) = 0)
{ "jrsgt", CF_USE1 }, // Jump if signed greater > (Z = 0 and (N XOR V) = 0)
{ "jrsle", CF_USE1 }, // Jump if signed lower or equal <= (Z = 1 or (N XOR V) = 1)
{ "jrslt", CF_USE1 }, // Jump if signed lower < ((N XOR V) = 1)
{ "jrt", CF_USE1|CF_STOP }, // Jump relative
{ "jruge", CF_USE1 }, // Jump if unsigned greater or equal >= (C = 0)
{ "jrugt", CF_USE1 }, // Jump if unsigned greater > (C = 0 and Z = 0)
{ "jrule", CF_USE1 }, // Jump if unsigned lower or equal <= (C = 1 or Z = 1)
{ "jrult", CF_USE1 }, // Jump if unsigned lower < (C = 1)
{ "jrv", CF_USE1 }, // Jump if overflow (V = 1)
{ "ld", CF_CHG1|CF_USE2 }, // Load
{ "ldf", CF_CHG1|CF_USE2 }, // Load far
{ "ldw", CF_CHG1|CF_USE2 }, // Load word
{ "mov", CF_CHG1|CF_USE2 }, // Move
{ "mul", CF_CHG1|CF_USE1|CF_USE2 }, // Multiply
{ "neg", CF_USE1|CF_CHG1 }, // Negate
{ "negw", CF_USE1|CF_CHG1 }, // Negate word
{ "nop", 0 }, // No Operation
{ "or", CF_CHG1|CF_USE1|CF_USE2 }, // OR Operation
{ "pop", CF_CHG1 }, // Pop from the Stack
{ "popw", CF_CHG1 }, // Pop word from the Stack
{ "push", CF_USE1 }, // Push onto the Stack
{ "pushw", CF_USE1 }, // Push word onto the Stack
{ "rcf", 0 }, // Reset carry flag
{ "ret", CF_STOP }, // Subroutine Return
{ "retf", CF_STOP }, // Subroutine Return far
{ "rim", 0 }, // Enable Interrupts
{ "rlc", CF_USE1|CF_CHG1 }, // Rotate left true
{ "rlcw", CF_USE1|CF_CHG1 }, // Rotate left true word
{ "rlwa", CF_USE1|CF_CHG1 }, // Rotate left through accumulator
{ "rrc", CF_USE1|CF_CHG1 }, // Rotate right true
{ "rrcw", CF_USE1|CF_CHG1 }, // Rotate right true word
{ "rrwa", CF_USE1|CF_CHG1 }, // Rotate right through accumulator
{ "rvf", 0 }, // Reset overflow flag
{ "sbc", CF_CHG1|CF_USE1|CF_USE2 }, // Subtract with Carry
{ "scf", 0 }, // Set carry flag
{ "sim", 0 }, // Disable Interrupts
{ "sla", CF_USE1|CF_CHG1 }, // Shift left Arithmetic
{ "slaw", CF_USE1|CF_CHG1 }, // Shift left Arithmetic word
{ "sll", CF_USE1|CF_CHG1 }, // Shift left Logic
{ "sllw", CF_USE1|CF_CHG1 }, // Shift left Logic word
{ "sra", CF_USE1|CF_CHG1 }, // Shift right Arithmetic
{ "sraw", CF_USE1|CF_CHG1 }, // Shift right Arithmetic word
{ "srl", CF_USE1|CF_CHG1 }, // Shift right Logic
{ "srlw", CF_USE1|CF_CHG1 }, // Shift right Logic word
{ "sub", CF_CHG1|CF_USE1|CF_USE2 }, // Subtraction
{ "subw", CF_CHG1|CF_USE1|CF_USE2 }, // Subtraction word
{ "swap", CF_USE1|CF_CHG1 }, // SWAP nibbles
{ "swapw", CF_USE1|CF_CHG1 }, // SWAP bytes
{ "tnz", CF_USE1 }, // Test for Neg & Zero
{ "tnzw", CF_USE1 }, // Test for Neg & Zero word
{ "trap", 0 }, // S/W trap
{ "wfe", 0 }, // Wait for Event
{ "wfi", 0 }, // Wait for Interrupt
{ "xor", CF_CHG1|CF_USE1|CF_USE2 }, // Exclusive OR
{ "unknown", 0 }, // UNKNOWN 0x71 instruction
};
const char *insn_auto_cmts[] = {
"Unknown Operation",
"Add with Carry",
"Addition",
"Addition Word",
"Logical And",
"Copy carry in memory bit",
"Bit compare",
"Bit complement",
"Software breakpoint",
"Bit Reset",
"Bit Set",
"Jump if bit is false",
"Jump if bit is true",
"Call subroutine",
"Call subroutine far",
"Call subroutine relative",
"Complement Carry Flag",
"Clear",
"Clear destination index register",
"Arithmetic Compare",
"Arithmetic Compare Word",
"One Complement",
"One Complement Word",
"Decrement",
"Decrement Word",
"Division",
"Division Word",
"Data byte exchange",
"Data word exchange",
"Halt",
"Increment",
"Increment Word",
"Interrupt",
"Interrupt routine return",
"Absolute Jump",
"Absolute Jump far",
"Jump relative always",
"Jump if C = 1",
"Jump if Z = 1 (equal)",
"Never jump",
"Jump if H = 1",
"Jump if Port INT pin = 1",
"Jump if Port INT pin = 0",
"Jump if I = 1",
"Jump if N = 1 (minus)",
"Jump if C = 0",
"Jump if Z = 0 (not equal)",
"Jump if H = 0",
"Jump if I = 0",
"Jump if V = 0",
"Jump if N = 0 (plus)",
"Jump if (N XOR V) = 0",
"Jump if (Z = 0 and (N XOR V) = 0)",
"Jump if (Z = 1 or (N XOR V) = 1)",
"Jump if (N XOR V) = 1",
"Jump relative",
"Jump if C = 0",
"Jump if (C = 0 and Z = 0)",
"Jump if (C = 1 or Z = 1)",
"Jump if C = 1",
"Jump if V = 1",
"Load",
"Load far",
"Load word",
"Move",
"Multiply",
"Negate",
"Negate word",
"No Operation",
"OR Operation",
"Pop from the Stack",
"Pop word from the Stack",
"Push onto the Stack",
"Push word onto the Stack",
"Reset carry flag",
"Subroutine Return",
"Subroutine Return far",
"Enable Interrupts",
"Rotate left true",
"Rotate left true word",
"Rotate left through accumulator",
"Rotate right true",
"Rotate right true word",
"Rotate right through accumulator",
"Reset overflow flag",
"Subtract with Carry",
"Set carry flag",
"Disable Interrupts",
"Shift left Arithmetic",
"Shift left Arithmetic word",
"Shift left Logic",
"Shift left Logic word",
"Shift right Arithmetic",
"Shift right Arithmetic word",
"Shift right Logic",
"Shift right Logic word",
"Subtraction",
"Subtraction word",
"SWAP nibbles",
"SWAP bytes",
"Test for Neg & Zero",
"Test for Neg & Zero word",
"S/W trap",
"Wait for Event",
"Wait for Interrupt",
"Exclusive OR",
"UNKNOWN 0x71 instruction",
};
CASSERT(qnumber(Instructions) == ST8_last);
CASSERT(qnumber(insn_auto_cmts) == ST8_last);