@andrivet/z80-assembler 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/index.d.ts +2 -2
- package/index.js +92 -29
- package/index.mjs +1789 -2190
- package/lib/compiler/Assets.d.ts +0 -9
- package/lib/compiler/Ast.d.ts +14 -60
- package/lib/compiler/Compiler.d.ts +0 -25
- package/lib/compiler/Formatter.d.ts +0 -13
- package/lib/compiler/Generator.d.ts +0 -1
- package/lib/compiler/Labels.d.ts +9 -34
- package/lib/grammar/LowLevel.d.ts +0 -37
- package/lib/grammar/Parse.d.ts +0 -29
- package/lib/grammar/z80.d.ts +258 -648
- package/lib/types/Error.d.ts +5 -35
- package/lib/types/Types.d.ts +9 -17
- package/package.json +2 -2
package/lib/grammar/z80.d.ts
CHANGED
|
@@ -39,13 +39,15 @@ export declare enum ASTKinds {
|
|
|
39
39
|
nn_3 = "nn_3",
|
|
40
40
|
nn_4 = "nn_4",
|
|
41
41
|
decimal = "decimal",
|
|
42
|
-
|
|
42
|
+
binary_1 = "binary_1",
|
|
43
|
+
binary_2 = "binary_2",
|
|
43
44
|
binary_$0_1 = "binary_$0_1",
|
|
44
45
|
binary_$0_2 = "binary_$0_2",
|
|
45
46
|
octal_1 = "octal_1",
|
|
46
47
|
octal_2 = "octal_2",
|
|
47
48
|
octal_$0_1 = "octal_$0_1",
|
|
48
49
|
octal_$0_2 = "octal_$0_2",
|
|
50
|
+
octal_$0_3 = "octal_$0_3",
|
|
49
51
|
octal_$1_1 = "octal_$1_1",
|
|
50
52
|
octal_$1_2 = "octal_$1_2",
|
|
51
53
|
hexadecimal_1 = "hexadecimal_1",
|
|
@@ -87,6 +89,7 @@ export declare enum ASTKinds {
|
|
|
87
89
|
Directive_2 = "Directive_2",
|
|
88
90
|
Directive_3 = "Directive_3",
|
|
89
91
|
Directive_4 = "Directive_4",
|
|
92
|
+
Directive_5 = "Directive_5",
|
|
90
93
|
ForbiddenNames_1 = "ForbiddenNames_1",
|
|
91
94
|
ForbiddenNames_2 = "ForbiddenNames_2",
|
|
92
95
|
ForbiddenNames_3 = "ForbiddenNames_3",
|
|
@@ -124,6 +127,14 @@ export declare enum ASTKinds {
|
|
|
124
127
|
PrimaryExpression_2 = "PrimaryExpression_2",
|
|
125
128
|
PrimaryExpression_3 = "PrimaryExpression_3",
|
|
126
129
|
Reg8 = "Reg8",
|
|
130
|
+
IX = "IX",
|
|
131
|
+
IX_$0 = "IX_$0",
|
|
132
|
+
IX_$0_$0_1 = "IX_$0_$0_1",
|
|
133
|
+
IX_$0_$0_2 = "IX_$0_$0_2",
|
|
134
|
+
IY = "IY",
|
|
135
|
+
IY_$0 = "IY_$0",
|
|
136
|
+
IY_$0_$0_1 = "IY_$0_$0_1",
|
|
137
|
+
IY_$0_$0_2 = "IY_$0_$0_2",
|
|
127
138
|
Instruction_1 = "Instruction_1",
|
|
128
139
|
Instruction_2 = "Instruction_2",
|
|
129
140
|
Instruction_3 = "Instruction_3",
|
|
@@ -161,18 +172,6 @@ export declare enum ASTKinds {
|
|
|
161
172
|
Load8Instruction_19 = "Load8Instruction_19",
|
|
162
173
|
Load8Instruction_20 = "Load8Instruction_20",
|
|
163
174
|
Load8Instruction_21 = "Load8Instruction_21",
|
|
164
|
-
Load8Instruction_$0_1 = "Load8Instruction_$0_1",
|
|
165
|
-
Load8Instruction_$0_2 = "Load8Instruction_$0_2",
|
|
166
|
-
Load8Instruction_$1_1 = "Load8Instruction_$1_1",
|
|
167
|
-
Load8Instruction_$1_2 = "Load8Instruction_$1_2",
|
|
168
|
-
Load8Instruction_$2_1 = "Load8Instruction_$2_1",
|
|
169
|
-
Load8Instruction_$2_2 = "Load8Instruction_$2_2",
|
|
170
|
-
Load8Instruction_$3_1 = "Load8Instruction_$3_1",
|
|
171
|
-
Load8Instruction_$3_2 = "Load8Instruction_$3_2",
|
|
172
|
-
Load8Instruction_$4_1 = "Load8Instruction_$4_1",
|
|
173
|
-
Load8Instruction_$4_2 = "Load8Instruction_$4_2",
|
|
174
|
-
Load8Instruction_$5_1 = "Load8Instruction_$5_1",
|
|
175
|
-
Load8Instruction_$5_2 = "Load8Instruction_$5_2",
|
|
176
175
|
Load16Instruction_1 = "Load16Instruction_1",
|
|
177
176
|
Load16Instruction_2 = "Load16Instruction_2",
|
|
178
177
|
Load16Instruction_3 = "Load16Instruction_3",
|
|
@@ -249,76 +248,44 @@ export declare enum ASTKinds {
|
|
|
249
248
|
ArithmeticLogic8Instruction_40 = "ArithmeticLogic8Instruction_40",
|
|
250
249
|
ArithmeticLogic8Instruction_$0 = "ArithmeticLogic8Instruction_$0",
|
|
251
250
|
ArithmeticLogic8Instruction_$1 = "ArithmeticLogic8Instruction_$1",
|
|
252
|
-
ArithmeticLogic8Instruction_$
|
|
253
|
-
ArithmeticLogic8Instruction_$2_2 = "ArithmeticLogic8Instruction_$2_2",
|
|
251
|
+
ArithmeticLogic8Instruction_$2 = "ArithmeticLogic8Instruction_$2",
|
|
254
252
|
ArithmeticLogic8Instruction_$3 = "ArithmeticLogic8Instruction_$3",
|
|
255
|
-
ArithmeticLogic8Instruction_$
|
|
256
|
-
ArithmeticLogic8Instruction_$4_2 = "ArithmeticLogic8Instruction_$4_2",
|
|
253
|
+
ArithmeticLogic8Instruction_$4 = "ArithmeticLogic8Instruction_$4",
|
|
257
254
|
ArithmeticLogic8Instruction_$5 = "ArithmeticLogic8Instruction_$5",
|
|
258
255
|
ArithmeticLogic8Instruction_$6 = "ArithmeticLogic8Instruction_$6",
|
|
259
256
|
ArithmeticLogic8Instruction_$7 = "ArithmeticLogic8Instruction_$7",
|
|
260
257
|
ArithmeticLogic8Instruction_$8 = "ArithmeticLogic8Instruction_$8",
|
|
261
|
-
ArithmeticLogic8Instruction_$
|
|
262
|
-
ArithmeticLogic8Instruction_$9_2 = "ArithmeticLogic8Instruction_$9_2",
|
|
258
|
+
ArithmeticLogic8Instruction_$9 = "ArithmeticLogic8Instruction_$9",
|
|
263
259
|
ArithmeticLogic8Instruction_$10 = "ArithmeticLogic8Instruction_$10",
|
|
264
|
-
ArithmeticLogic8Instruction_$
|
|
265
|
-
ArithmeticLogic8Instruction_$11_2 = "ArithmeticLogic8Instruction_$11_2",
|
|
260
|
+
ArithmeticLogic8Instruction_$11 = "ArithmeticLogic8Instruction_$11",
|
|
266
261
|
ArithmeticLogic8Instruction_$12 = "ArithmeticLogic8Instruction_$12",
|
|
267
262
|
ArithmeticLogic8Instruction_$13 = "ArithmeticLogic8Instruction_$13",
|
|
268
263
|
ArithmeticLogic8Instruction_$14 = "ArithmeticLogic8Instruction_$14",
|
|
269
264
|
ArithmeticLogic8Instruction_$15 = "ArithmeticLogic8Instruction_$15",
|
|
270
|
-
ArithmeticLogic8Instruction_$
|
|
271
|
-
ArithmeticLogic8Instruction_$16_2 = "ArithmeticLogic8Instruction_$16_2",
|
|
265
|
+
ArithmeticLogic8Instruction_$16 = "ArithmeticLogic8Instruction_$16",
|
|
272
266
|
ArithmeticLogic8Instruction_$17 = "ArithmeticLogic8Instruction_$17",
|
|
273
|
-
ArithmeticLogic8Instruction_$
|
|
274
|
-
ArithmeticLogic8Instruction_$18_2 = "ArithmeticLogic8Instruction_$18_2",
|
|
267
|
+
ArithmeticLogic8Instruction_$18 = "ArithmeticLogic8Instruction_$18",
|
|
275
268
|
ArithmeticLogic8Instruction_$19 = "ArithmeticLogic8Instruction_$19",
|
|
276
269
|
ArithmeticLogic8Instruction_$20 = "ArithmeticLogic8Instruction_$20",
|
|
277
270
|
ArithmeticLogic8Instruction_$21 = "ArithmeticLogic8Instruction_$21",
|
|
278
271
|
ArithmeticLogic8Instruction_$22 = "ArithmeticLogic8Instruction_$22",
|
|
279
|
-
ArithmeticLogic8Instruction_$
|
|
280
|
-
ArithmeticLogic8Instruction_$23_2 = "ArithmeticLogic8Instruction_$23_2",
|
|
272
|
+
ArithmeticLogic8Instruction_$23 = "ArithmeticLogic8Instruction_$23",
|
|
281
273
|
ArithmeticLogic8Instruction_$24 = "ArithmeticLogic8Instruction_$24",
|
|
282
|
-
ArithmeticLogic8Instruction_$
|
|
283
|
-
ArithmeticLogic8Instruction_$25_2 = "ArithmeticLogic8Instruction_$25_2",
|
|
274
|
+
ArithmeticLogic8Instruction_$25 = "ArithmeticLogic8Instruction_$25",
|
|
284
275
|
ArithmeticLogic8Instruction_$26 = "ArithmeticLogic8Instruction_$26",
|
|
285
276
|
ArithmeticLogic8Instruction_$27 = "ArithmeticLogic8Instruction_$27",
|
|
286
277
|
ArithmeticLogic8Instruction_$28 = "ArithmeticLogic8Instruction_$28",
|
|
287
278
|
ArithmeticLogic8Instruction_$29 = "ArithmeticLogic8Instruction_$29",
|
|
288
|
-
ArithmeticLogic8Instruction_$
|
|
289
|
-
ArithmeticLogic8Instruction_$30_2 = "ArithmeticLogic8Instruction_$30_2",
|
|
279
|
+
ArithmeticLogic8Instruction_$30 = "ArithmeticLogic8Instruction_$30",
|
|
290
280
|
ArithmeticLogic8Instruction_$31 = "ArithmeticLogic8Instruction_$31",
|
|
291
|
-
ArithmeticLogic8Instruction_$
|
|
292
|
-
ArithmeticLogic8Instruction_$32_2 = "ArithmeticLogic8Instruction_$32_2",
|
|
281
|
+
ArithmeticLogic8Instruction_$32 = "ArithmeticLogic8Instruction_$32",
|
|
293
282
|
ArithmeticLogic8Instruction_$33 = "ArithmeticLogic8Instruction_$33",
|
|
294
283
|
ArithmeticLogic8Instruction_$34 = "ArithmeticLogic8Instruction_$34",
|
|
295
284
|
ArithmeticLogic8Instruction_$35 = "ArithmeticLogic8Instruction_$35",
|
|
296
285
|
ArithmeticLogic8Instruction_$36 = "ArithmeticLogic8Instruction_$36",
|
|
297
|
-
ArithmeticLogic8Instruction_$
|
|
298
|
-
ArithmeticLogic8Instruction_$37_2 = "ArithmeticLogic8Instruction_$37_2",
|
|
286
|
+
ArithmeticLogic8Instruction_$37 = "ArithmeticLogic8Instruction_$37",
|
|
299
287
|
ArithmeticLogic8Instruction_$38 = "ArithmeticLogic8Instruction_$38",
|
|
300
|
-
ArithmeticLogic8Instruction_$
|
|
301
|
-
ArithmeticLogic8Instruction_$39_2 = "ArithmeticLogic8Instruction_$39_2",
|
|
302
|
-
ArithmeticLogic8Instruction_$40 = "ArithmeticLogic8Instruction_$40",
|
|
303
|
-
ArithmeticLogic8Instruction_$41 = "ArithmeticLogic8Instruction_$41",
|
|
304
|
-
ArithmeticLogic8Instruction_$42 = "ArithmeticLogic8Instruction_$42",
|
|
305
|
-
ArithmeticLogic8Instruction_$43 = "ArithmeticLogic8Instruction_$43",
|
|
306
|
-
ArithmeticLogic8Instruction_$44_1 = "ArithmeticLogic8Instruction_$44_1",
|
|
307
|
-
ArithmeticLogic8Instruction_$44_2 = "ArithmeticLogic8Instruction_$44_2",
|
|
308
|
-
ArithmeticLogic8Instruction_$45 = "ArithmeticLogic8Instruction_$45",
|
|
309
|
-
ArithmeticLogic8Instruction_$46_1 = "ArithmeticLogic8Instruction_$46_1",
|
|
310
|
-
ArithmeticLogic8Instruction_$46_2 = "ArithmeticLogic8Instruction_$46_2",
|
|
311
|
-
ArithmeticLogic8Instruction_$47 = "ArithmeticLogic8Instruction_$47",
|
|
312
|
-
ArithmeticLogic8Instruction_$48 = "ArithmeticLogic8Instruction_$48",
|
|
313
|
-
ArithmeticLogic8Instruction_$49 = "ArithmeticLogic8Instruction_$49",
|
|
314
|
-
ArithmeticLogic8Instruction_$50 = "ArithmeticLogic8Instruction_$50",
|
|
315
|
-
ArithmeticLogic8Instruction_$51_1 = "ArithmeticLogic8Instruction_$51_1",
|
|
316
|
-
ArithmeticLogic8Instruction_$51_2 = "ArithmeticLogic8Instruction_$51_2",
|
|
317
|
-
ArithmeticLogic8Instruction_$52 = "ArithmeticLogic8Instruction_$52",
|
|
318
|
-
ArithmeticLogic8Instruction_$53_1 = "ArithmeticLogic8Instruction_$53_1",
|
|
319
|
-
ArithmeticLogic8Instruction_$53_2 = "ArithmeticLogic8Instruction_$53_2",
|
|
320
|
-
ArithmeticLogic8Instruction_$54 = "ArithmeticLogic8Instruction_$54",
|
|
321
|
-
ArithmeticLogic8Instruction_$55 = "ArithmeticLogic8Instruction_$55",
|
|
288
|
+
ArithmeticLogic8Instruction_$39 = "ArithmeticLogic8Instruction_$39",
|
|
322
289
|
IncrementDecrement8Instruction_1 = "IncrementDecrement8Instruction_1",
|
|
323
290
|
IncrementDecrement8Instruction_2 = "IncrementDecrement8Instruction_2",
|
|
324
291
|
IncrementDecrement8Instruction_3 = "IncrementDecrement8Instruction_3",
|
|
@@ -327,14 +294,6 @@ export declare enum ASTKinds {
|
|
|
327
294
|
IncrementDecrement8Instruction_6 = "IncrementDecrement8Instruction_6",
|
|
328
295
|
IncrementDecrement8Instruction_7 = "IncrementDecrement8Instruction_7",
|
|
329
296
|
IncrementDecrement8Instruction_8 = "IncrementDecrement8Instruction_8",
|
|
330
|
-
IncrementDecrement8Instruction_$0_1 = "IncrementDecrement8Instruction_$0_1",
|
|
331
|
-
IncrementDecrement8Instruction_$0_2 = "IncrementDecrement8Instruction_$0_2",
|
|
332
|
-
IncrementDecrement8Instruction_$1_1 = "IncrementDecrement8Instruction_$1_1",
|
|
333
|
-
IncrementDecrement8Instruction_$1_2 = "IncrementDecrement8Instruction_$1_2",
|
|
334
|
-
IncrementDecrement8Instruction_$2_1 = "IncrementDecrement8Instruction_$2_1",
|
|
335
|
-
IncrementDecrement8Instruction_$2_2 = "IncrementDecrement8Instruction_$2_2",
|
|
336
|
-
IncrementDecrement8Instruction_$3_1 = "IncrementDecrement8Instruction_$3_1",
|
|
337
|
-
IncrementDecrement8Instruction_$3_2 = "IncrementDecrement8Instruction_$3_2",
|
|
338
297
|
GeneralPurposeArithmeticInstruction_1 = "GeneralPurposeArithmeticInstruction_1",
|
|
339
298
|
GeneralPurposeArithmeticInstruction_2 = "GeneralPurposeArithmeticInstruction_2",
|
|
340
299
|
GeneralPurposeArithmeticInstruction_3 = "GeneralPurposeArithmeticInstruction_3",
|
|
@@ -390,34 +349,6 @@ export declare enum ASTKinds {
|
|
|
390
349
|
RotateShiftInstruction_32 = "RotateShiftInstruction_32",
|
|
391
350
|
RotateShiftInstruction_33 = "RotateShiftInstruction_33",
|
|
392
351
|
RotateShiftInstruction_34 = "RotateShiftInstruction_34",
|
|
393
|
-
RotateShiftInstruction_$0_1 = "RotateShiftInstruction_$0_1",
|
|
394
|
-
RotateShiftInstruction_$0_2 = "RotateShiftInstruction_$0_2",
|
|
395
|
-
RotateShiftInstruction_$1_1 = "RotateShiftInstruction_$1_1",
|
|
396
|
-
RotateShiftInstruction_$1_2 = "RotateShiftInstruction_$1_2",
|
|
397
|
-
RotateShiftInstruction_$2_1 = "RotateShiftInstruction_$2_1",
|
|
398
|
-
RotateShiftInstruction_$2_2 = "RotateShiftInstruction_$2_2",
|
|
399
|
-
RotateShiftInstruction_$3_1 = "RotateShiftInstruction_$3_1",
|
|
400
|
-
RotateShiftInstruction_$3_2 = "RotateShiftInstruction_$3_2",
|
|
401
|
-
RotateShiftInstruction_$4_1 = "RotateShiftInstruction_$4_1",
|
|
402
|
-
RotateShiftInstruction_$4_2 = "RotateShiftInstruction_$4_2",
|
|
403
|
-
RotateShiftInstruction_$5_1 = "RotateShiftInstruction_$5_1",
|
|
404
|
-
RotateShiftInstruction_$5_2 = "RotateShiftInstruction_$5_2",
|
|
405
|
-
RotateShiftInstruction_$6_1 = "RotateShiftInstruction_$6_1",
|
|
406
|
-
RotateShiftInstruction_$6_2 = "RotateShiftInstruction_$6_2",
|
|
407
|
-
RotateShiftInstruction_$7_1 = "RotateShiftInstruction_$7_1",
|
|
408
|
-
RotateShiftInstruction_$7_2 = "RotateShiftInstruction_$7_2",
|
|
409
|
-
RotateShiftInstruction_$8_1 = "RotateShiftInstruction_$8_1",
|
|
410
|
-
RotateShiftInstruction_$8_2 = "RotateShiftInstruction_$8_2",
|
|
411
|
-
RotateShiftInstruction_$9_1 = "RotateShiftInstruction_$9_1",
|
|
412
|
-
RotateShiftInstruction_$9_2 = "RotateShiftInstruction_$9_2",
|
|
413
|
-
RotateShiftInstruction_$10_1 = "RotateShiftInstruction_$10_1",
|
|
414
|
-
RotateShiftInstruction_$10_2 = "RotateShiftInstruction_$10_2",
|
|
415
|
-
RotateShiftInstruction_$11_1 = "RotateShiftInstruction_$11_1",
|
|
416
|
-
RotateShiftInstruction_$11_2 = "RotateShiftInstruction_$11_2",
|
|
417
|
-
RotateShiftInstruction_$12_1 = "RotateShiftInstruction_$12_1",
|
|
418
|
-
RotateShiftInstruction_$12_2 = "RotateShiftInstruction_$12_2",
|
|
419
|
-
RotateShiftInstruction_$13_1 = "RotateShiftInstruction_$13_1",
|
|
420
|
-
RotateShiftInstruction_$13_2 = "RotateShiftInstruction_$13_2",
|
|
421
352
|
BitManipulationInstruction_1 = "BitManipulationInstruction_1",
|
|
422
353
|
BitManipulationInstruction_2 = "BitManipulationInstruction_2",
|
|
423
354
|
BitManipulationInstruction_3 = "BitManipulationInstruction_3",
|
|
@@ -430,18 +361,6 @@ export declare enum ASTKinds {
|
|
|
430
361
|
BitManipulationInstruction_10 = "BitManipulationInstruction_10",
|
|
431
362
|
BitManipulationInstruction_11 = "BitManipulationInstruction_11",
|
|
432
363
|
BitManipulationInstruction_12 = "BitManipulationInstruction_12",
|
|
433
|
-
BitManipulationInstruction_$0_1 = "BitManipulationInstruction_$0_1",
|
|
434
|
-
BitManipulationInstruction_$0_2 = "BitManipulationInstruction_$0_2",
|
|
435
|
-
BitManipulationInstruction_$1_1 = "BitManipulationInstruction_$1_1",
|
|
436
|
-
BitManipulationInstruction_$1_2 = "BitManipulationInstruction_$1_2",
|
|
437
|
-
BitManipulationInstruction_$2_1 = "BitManipulationInstruction_$2_1",
|
|
438
|
-
BitManipulationInstruction_$2_2 = "BitManipulationInstruction_$2_2",
|
|
439
|
-
BitManipulationInstruction_$3_1 = "BitManipulationInstruction_$3_1",
|
|
440
|
-
BitManipulationInstruction_$3_2 = "BitManipulationInstruction_$3_2",
|
|
441
|
-
BitManipulationInstruction_$4_1 = "BitManipulationInstruction_$4_1",
|
|
442
|
-
BitManipulationInstruction_$4_2 = "BitManipulationInstruction_$4_2",
|
|
443
|
-
BitManipulationInstruction_$5_1 = "BitManipulationInstruction_$5_1",
|
|
444
|
-
BitManipulationInstruction_$5_2 = "BitManipulationInstruction_$5_2",
|
|
445
364
|
Offset_1 = "Offset_1",
|
|
446
365
|
Offset_2 = "Offset_2",
|
|
447
366
|
JumpInstruction_1 = "JumpInstruction_1",
|
|
@@ -503,14 +422,14 @@ export declare enum ASTKinds {
|
|
|
503
422
|
SimpleEscapeSequence_$0_2 = "SimpleEscapeSequence_$0_2",
|
|
504
423
|
OctalEscapeSequence = "OctalEscapeSequence",
|
|
505
424
|
HexadecimalEscapeSequence = "HexadecimalEscapeSequence",
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
425
|
+
NoQuoteChar = "NoQuoteChar",
|
|
426
|
+
NoDoubleQuoteChar = "NoDoubleQuoteChar",
|
|
427
|
+
QuottedStr = "QuottedStr",
|
|
428
|
+
QuottedStr_$0_1 = "QuottedStr_$0_1",
|
|
429
|
+
QuottedStr_$0_2 = "QuottedStr_$0_2",
|
|
430
|
+
DoubleQuottedStr = "DoubleQuottedStr",
|
|
431
|
+
DoubleQuottedStr_$0_1 = "DoubleQuottedStr_$0_1",
|
|
432
|
+
DoubleQuottedStr_$0_2 = "DoubleQuottedStr_$0_2",
|
|
514
433
|
Comment = "Comment",
|
|
515
434
|
OriginDirective = "OriginDirective",
|
|
516
435
|
Filename_1 = "Filename_1",
|
|
@@ -519,6 +438,7 @@ export declare enum ASTKinds {
|
|
|
519
438
|
OutputDirective = "OutputDirective",
|
|
520
439
|
OutputDirective_$0 = "OutputDirective_$0",
|
|
521
440
|
DeviceDirective = "DeviceDirective",
|
|
441
|
+
EndDirective = "EndDirective",
|
|
522
442
|
$EOF = "$EOF"
|
|
523
443
|
}
|
|
524
444
|
export interface start {
|
|
@@ -616,8 +536,13 @@ export interface decimal {
|
|
|
616
536
|
kind: ASTKinds.decimal;
|
|
617
537
|
raw: string;
|
|
618
538
|
}
|
|
619
|
-
export
|
|
620
|
-
|
|
539
|
+
export type binary = binary_1 | binary_2;
|
|
540
|
+
export interface binary_1 {
|
|
541
|
+
kind: ASTKinds.binary_1;
|
|
542
|
+
raw: string;
|
|
543
|
+
}
|
|
544
|
+
export interface binary_2 {
|
|
545
|
+
kind: ASTKinds.binary_2;
|
|
621
546
|
raw: string;
|
|
622
547
|
}
|
|
623
548
|
export type binary_$0 = binary_$0_1 | binary_$0_2;
|
|
@@ -632,9 +557,10 @@ export interface octal_2 {
|
|
|
632
557
|
kind: ASTKinds.octal_2;
|
|
633
558
|
raw: string;
|
|
634
559
|
}
|
|
635
|
-
export type octal_$0 = octal_$0_1 | octal_$0_2;
|
|
560
|
+
export type octal_$0 = octal_$0_1 | octal_$0_2 | octal_$0_3;
|
|
636
561
|
export type octal_$0_1 = string;
|
|
637
562
|
export type octal_$0_2 = string;
|
|
563
|
+
export type octal_$0_3 = string;
|
|
638
564
|
export type octal_$1 = octal_$1_1 | octal_$1_2;
|
|
639
565
|
export type octal_$1_1 = string;
|
|
640
566
|
export type octal_$1_2 = string;
|
|
@@ -719,7 +645,7 @@ export interface EqualDirective {
|
|
|
719
645
|
kind: ASTKinds.EqualDirective;
|
|
720
646
|
e: Expression;
|
|
721
647
|
}
|
|
722
|
-
export type Directive = Directive_1 | Directive_2 | Directive_3 | Directive_4;
|
|
648
|
+
export type Directive = Directive_1 | Directive_2 | Directive_3 | Directive_4 | Directive_5;
|
|
723
649
|
export declare class Directive_1 {
|
|
724
650
|
kind: ASTKinds.Directive_1;
|
|
725
651
|
data: DataDirective;
|
|
@@ -748,6 +674,13 @@ export declare class Directive_4 {
|
|
|
748
674
|
address: Address;
|
|
749
675
|
constructor(directive: DeviceDirective);
|
|
750
676
|
}
|
|
677
|
+
export declare class Directive_5 {
|
|
678
|
+
kind: ASTKinds.Directive_5;
|
|
679
|
+
directive: EndDirective;
|
|
680
|
+
elements: AstElements;
|
|
681
|
+
address: Address;
|
|
682
|
+
constructor(directive: EndDirective);
|
|
683
|
+
}
|
|
751
684
|
export type ForbiddenNames = ForbiddenNames_1 | ForbiddenNames_2 | ForbiddenNames_3 | ForbiddenNames_4 | ForbiddenNames_5;
|
|
752
685
|
export type ForbiddenNames_1 = string;
|
|
753
686
|
export type ForbiddenNames_2 = string;
|
|
@@ -894,6 +827,32 @@ export interface Reg8 {
|
|
|
894
827
|
kind: ASTKinds.Reg8;
|
|
895
828
|
reg: r;
|
|
896
829
|
}
|
|
830
|
+
export interface IX {
|
|
831
|
+
kind: ASTKinds.IX;
|
|
832
|
+
offset: Nullable<IX_$0>;
|
|
833
|
+
}
|
|
834
|
+
export interface IX_$0 {
|
|
835
|
+
kind: ASTKinds.IX_$0;
|
|
836
|
+
s: IX_$0_$0;
|
|
837
|
+
pos: PosInfo;
|
|
838
|
+
d: Expression;
|
|
839
|
+
}
|
|
840
|
+
export type IX_$0_$0 = IX_$0_$0_1 | IX_$0_$0_2;
|
|
841
|
+
export type IX_$0_$0_1 = string;
|
|
842
|
+
export type IX_$0_$0_2 = string;
|
|
843
|
+
export interface IY {
|
|
844
|
+
kind: ASTKinds.IY;
|
|
845
|
+
offset: Nullable<IY_$0>;
|
|
846
|
+
}
|
|
847
|
+
export interface IY_$0 {
|
|
848
|
+
kind: ASTKinds.IY_$0;
|
|
849
|
+
s: IY_$0_$0;
|
|
850
|
+
pos: PosInfo;
|
|
851
|
+
d: Expression;
|
|
852
|
+
}
|
|
853
|
+
export type IY_$0_$0 = IY_$0_$0_1 | IY_$0_$0_2;
|
|
854
|
+
export type IY_$0_$0_1 = string;
|
|
855
|
+
export type IY_$0_$0_2 = string;
|
|
897
856
|
export type Instruction = Instruction_1 | Instruction_2 | Instruction_3 | Instruction_4 | Instruction_5 | Instruction_6 | Instruction_7 | Instruction_8 | Instruction_9 | Instruction_10 | Instruction_11 | Instruction_12 | Instruction_13 | Instruction_14 | Instruction_15 | Instruction_16;
|
|
898
857
|
export type Instruction_1 = Load8Instruction;
|
|
899
858
|
export type Instruction_2 = Load16Instruction;
|
|
@@ -928,20 +887,16 @@ export declare class Load8Instruction_2 {
|
|
|
928
887
|
export declare class Load8Instruction_3 {
|
|
929
888
|
kind: ASTKinds.Load8Instruction_3;
|
|
930
889
|
r: r;
|
|
931
|
-
|
|
932
|
-
pos: PosInfo;
|
|
933
|
-
d: Expression;
|
|
890
|
+
i: IX;
|
|
934
891
|
elements: AstElements;
|
|
935
|
-
constructor(r: r,
|
|
892
|
+
constructor(r: r, i: IX);
|
|
936
893
|
}
|
|
937
894
|
export declare class Load8Instruction_4 {
|
|
938
895
|
kind: ASTKinds.Load8Instruction_4;
|
|
939
896
|
r: r;
|
|
940
|
-
|
|
941
|
-
pos: PosInfo;
|
|
942
|
-
d: Expression;
|
|
897
|
+
i: IY;
|
|
943
898
|
elements: AstElements;
|
|
944
|
-
constructor(r: r,
|
|
899
|
+
constructor(r: r, i: IY);
|
|
945
900
|
}
|
|
946
901
|
export declare class Load8Instruction_5 {
|
|
947
902
|
kind: ASTKinds.Load8Instruction_5;
|
|
@@ -951,21 +906,17 @@ export declare class Load8Instruction_5 {
|
|
|
951
906
|
}
|
|
952
907
|
export declare class Load8Instruction_6 {
|
|
953
908
|
kind: ASTKinds.Load8Instruction_6;
|
|
954
|
-
|
|
955
|
-
pos: PosInfo;
|
|
956
|
-
d: Expression;
|
|
909
|
+
i: IX;
|
|
957
910
|
r: r;
|
|
958
911
|
elements: AstElements;
|
|
959
|
-
constructor(
|
|
912
|
+
constructor(i: IX, r: r);
|
|
960
913
|
}
|
|
961
914
|
export declare class Load8Instruction_7 {
|
|
962
915
|
kind: ASTKinds.Load8Instruction_7;
|
|
963
|
-
|
|
964
|
-
pos: PosInfo;
|
|
965
|
-
d: Expression;
|
|
916
|
+
i: IY;
|
|
966
917
|
r: r;
|
|
967
918
|
elements: AstElements;
|
|
968
|
-
constructor(
|
|
919
|
+
constructor(i: IY, r: r);
|
|
969
920
|
}
|
|
970
921
|
export declare class Load8Instruction_8 {
|
|
971
922
|
kind: ASTKinds.Load8Instruction_8;
|
|
@@ -976,23 +927,19 @@ export declare class Load8Instruction_8 {
|
|
|
976
927
|
}
|
|
977
928
|
export declare class Load8Instruction_9 {
|
|
978
929
|
kind: ASTKinds.Load8Instruction_9;
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
d: Expression;
|
|
982
|
-
pos1: PosInfo;
|
|
930
|
+
i: IX;
|
|
931
|
+
pos: PosInfo;
|
|
983
932
|
n: Expression;
|
|
984
933
|
elements: AstElements;
|
|
985
|
-
constructor(
|
|
934
|
+
constructor(i: IX, pos: PosInfo, n: Expression);
|
|
986
935
|
}
|
|
987
936
|
export declare class Load8Instruction_10 {
|
|
988
937
|
kind: ASTKinds.Load8Instruction_10;
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
d: Expression;
|
|
992
|
-
pos1: PosInfo;
|
|
938
|
+
i: IY;
|
|
939
|
+
pos: PosInfo;
|
|
993
940
|
n: Expression;
|
|
994
941
|
elements: AstElements;
|
|
995
|
-
constructor(
|
|
942
|
+
constructor(i: IY, pos: PosInfo, n: Expression);
|
|
996
943
|
}
|
|
997
944
|
export declare class Load8Instruction_11 {
|
|
998
945
|
kind: ASTKinds.Load8Instruction_11;
|
|
@@ -1056,24 +1003,6 @@ export declare class Load8Instruction_21 {
|
|
|
1056
1003
|
elements: AstElements;
|
|
1057
1004
|
constructor(r: Reg8, pos: PosInfo, n: Expression);
|
|
1058
1005
|
}
|
|
1059
|
-
export type Load8Instruction_$0 = Load8Instruction_$0_1 | Load8Instruction_$0_2;
|
|
1060
|
-
export type Load8Instruction_$0_1 = string;
|
|
1061
|
-
export type Load8Instruction_$0_2 = string;
|
|
1062
|
-
export type Load8Instruction_$1 = Load8Instruction_$1_1 | Load8Instruction_$1_2;
|
|
1063
|
-
export type Load8Instruction_$1_1 = string;
|
|
1064
|
-
export type Load8Instruction_$1_2 = string;
|
|
1065
|
-
export type Load8Instruction_$2 = Load8Instruction_$2_1 | Load8Instruction_$2_2;
|
|
1066
|
-
export type Load8Instruction_$2_1 = string;
|
|
1067
|
-
export type Load8Instruction_$2_2 = string;
|
|
1068
|
-
export type Load8Instruction_$3 = Load8Instruction_$3_1 | Load8Instruction_$3_2;
|
|
1069
|
-
export type Load8Instruction_$3_1 = string;
|
|
1070
|
-
export type Load8Instruction_$3_2 = string;
|
|
1071
|
-
export type Load8Instruction_$4 = Load8Instruction_$4_1 | Load8Instruction_$4_2;
|
|
1072
|
-
export type Load8Instruction_$4_1 = string;
|
|
1073
|
-
export type Load8Instruction_$4_2 = string;
|
|
1074
|
-
export type Load8Instruction_$5 = Load8Instruction_$5_1 | Load8Instruction_$5_2;
|
|
1075
|
-
export type Load8Instruction_$5_1 = string;
|
|
1076
|
-
export type Load8Instruction_$5_2 = string;
|
|
1077
1006
|
export type Load16Instruction = Load16Instruction_1 | Load16Instruction_2 | Load16Instruction_3 | Load16Instruction_4 | Load16Instruction_5 | Load16Instruction_6 | Load16Instruction_7 | Load16Instruction_8 | Load16Instruction_9 | Load16Instruction_10 | Load16Instruction_11 | Load16Instruction_12 | Load16Instruction_13 | Load16Instruction_14 | Load16Instruction_15 | Load16Instruction_16 | Load16Instruction_17 | Load16Instruction_18 | Load16Instruction_19 | Load16Instruction_20;
|
|
1078
1007
|
export declare class Load16Instruction_1 {
|
|
1079
1008
|
kind: ASTKinds.Load16Instruction_1;
|
|
@@ -1282,19 +1211,15 @@ export declare class ArithmeticLogic8Instruction_1 {
|
|
|
1282
1211
|
}
|
|
1283
1212
|
export declare class ArithmeticLogic8Instruction_2 {
|
|
1284
1213
|
kind: ASTKinds.ArithmeticLogic8Instruction_2;
|
|
1285
|
-
|
|
1286
|
-
pos: PosInfo;
|
|
1287
|
-
d: Expression;
|
|
1214
|
+
i: IX;
|
|
1288
1215
|
elements: AstElements;
|
|
1289
|
-
constructor(
|
|
1216
|
+
constructor(i: IX);
|
|
1290
1217
|
}
|
|
1291
1218
|
export declare class ArithmeticLogic8Instruction_3 {
|
|
1292
1219
|
kind: ASTKinds.ArithmeticLogic8Instruction_3;
|
|
1293
|
-
|
|
1294
|
-
pos: PosInfo;
|
|
1295
|
-
d: Expression;
|
|
1220
|
+
i: IY;
|
|
1296
1221
|
elements: AstElements;
|
|
1297
|
-
constructor(
|
|
1222
|
+
constructor(i: IY);
|
|
1298
1223
|
}
|
|
1299
1224
|
export declare class ArithmeticLogic8Instruction_4 {
|
|
1300
1225
|
kind: ASTKinds.ArithmeticLogic8Instruction_4;
|
|
@@ -1316,19 +1241,15 @@ export declare class ArithmeticLogic8Instruction_6 {
|
|
|
1316
1241
|
}
|
|
1317
1242
|
export declare class ArithmeticLogic8Instruction_7 {
|
|
1318
1243
|
kind: ASTKinds.ArithmeticLogic8Instruction_7;
|
|
1319
|
-
|
|
1320
|
-
pos: PosInfo;
|
|
1321
|
-
d: Expression;
|
|
1244
|
+
i: IX;
|
|
1322
1245
|
elements: AstElements;
|
|
1323
|
-
constructor(
|
|
1246
|
+
constructor(i: IX);
|
|
1324
1247
|
}
|
|
1325
1248
|
export declare class ArithmeticLogic8Instruction_8 {
|
|
1326
1249
|
kind: ASTKinds.ArithmeticLogic8Instruction_8;
|
|
1327
|
-
|
|
1328
|
-
pos: PosInfo;
|
|
1329
|
-
d: Expression;
|
|
1250
|
+
i: IY;
|
|
1330
1251
|
elements: AstElements;
|
|
1331
|
-
constructor(
|
|
1252
|
+
constructor(i: IY);
|
|
1332
1253
|
}
|
|
1333
1254
|
export declare class ArithmeticLogic8Instruction_9 {
|
|
1334
1255
|
kind: ASTKinds.ArithmeticLogic8Instruction_9;
|
|
@@ -1350,19 +1271,15 @@ export declare class ArithmeticLogic8Instruction_11 {
|
|
|
1350
1271
|
}
|
|
1351
1272
|
export declare class ArithmeticLogic8Instruction_12 {
|
|
1352
1273
|
kind: ASTKinds.ArithmeticLogic8Instruction_12;
|
|
1353
|
-
|
|
1354
|
-
pos: PosInfo;
|
|
1355
|
-
d: Expression;
|
|
1274
|
+
i: IX;
|
|
1356
1275
|
elements: AstElements;
|
|
1357
|
-
constructor(
|
|
1276
|
+
constructor(i: IX);
|
|
1358
1277
|
}
|
|
1359
1278
|
export declare class ArithmeticLogic8Instruction_13 {
|
|
1360
1279
|
kind: ASTKinds.ArithmeticLogic8Instruction_13;
|
|
1361
|
-
|
|
1362
|
-
pos: PosInfo;
|
|
1363
|
-
d: Expression;
|
|
1280
|
+
i: IY;
|
|
1364
1281
|
elements: AstElements;
|
|
1365
|
-
constructor(
|
|
1282
|
+
constructor(i: IY);
|
|
1366
1283
|
}
|
|
1367
1284
|
export declare class ArithmeticLogic8Instruction_14 {
|
|
1368
1285
|
kind: ASTKinds.ArithmeticLogic8Instruction_14;
|
|
@@ -1384,19 +1301,15 @@ export declare class ArithmeticLogic8Instruction_16 {
|
|
|
1384
1301
|
}
|
|
1385
1302
|
export declare class ArithmeticLogic8Instruction_17 {
|
|
1386
1303
|
kind: ASTKinds.ArithmeticLogic8Instruction_17;
|
|
1387
|
-
|
|
1388
|
-
pos: PosInfo;
|
|
1389
|
-
d: Expression;
|
|
1304
|
+
i: IX;
|
|
1390
1305
|
elements: AstElements;
|
|
1391
|
-
constructor(
|
|
1306
|
+
constructor(i: IX);
|
|
1392
1307
|
}
|
|
1393
1308
|
export declare class ArithmeticLogic8Instruction_18 {
|
|
1394
1309
|
kind: ASTKinds.ArithmeticLogic8Instruction_18;
|
|
1395
|
-
|
|
1396
|
-
pos: PosInfo;
|
|
1397
|
-
d: Expression;
|
|
1310
|
+
i: IY;
|
|
1398
1311
|
elements: AstElements;
|
|
1399
|
-
constructor(
|
|
1312
|
+
constructor(i: IY);
|
|
1400
1313
|
}
|
|
1401
1314
|
export declare class ArithmeticLogic8Instruction_19 {
|
|
1402
1315
|
kind: ASTKinds.ArithmeticLogic8Instruction_19;
|
|
@@ -1418,19 +1331,15 @@ export declare class ArithmeticLogic8Instruction_21 {
|
|
|
1418
1331
|
}
|
|
1419
1332
|
export declare class ArithmeticLogic8Instruction_22 {
|
|
1420
1333
|
kind: ASTKinds.ArithmeticLogic8Instruction_22;
|
|
1421
|
-
|
|
1422
|
-
pos: PosInfo;
|
|
1423
|
-
d: Expression;
|
|
1334
|
+
i: IX;
|
|
1424
1335
|
elements: AstElements;
|
|
1425
|
-
constructor(
|
|
1336
|
+
constructor(i: IX);
|
|
1426
1337
|
}
|
|
1427
1338
|
export declare class ArithmeticLogic8Instruction_23 {
|
|
1428
1339
|
kind: ASTKinds.ArithmeticLogic8Instruction_23;
|
|
1429
|
-
|
|
1430
|
-
pos: PosInfo;
|
|
1431
|
-
d: Expression;
|
|
1340
|
+
i: IY;
|
|
1432
1341
|
elements: AstElements;
|
|
1433
|
-
constructor(
|
|
1342
|
+
constructor(i: IY);
|
|
1434
1343
|
}
|
|
1435
1344
|
export declare class ArithmeticLogic8Instruction_24 {
|
|
1436
1345
|
kind: ASTKinds.ArithmeticLogic8Instruction_24;
|
|
@@ -1452,19 +1361,15 @@ export declare class ArithmeticLogic8Instruction_26 {
|
|
|
1452
1361
|
}
|
|
1453
1362
|
export declare class ArithmeticLogic8Instruction_27 {
|
|
1454
1363
|
kind: ASTKinds.ArithmeticLogic8Instruction_27;
|
|
1455
|
-
|
|
1456
|
-
pos: PosInfo;
|
|
1457
|
-
d: Expression;
|
|
1364
|
+
i: IX;
|
|
1458
1365
|
elements: AstElements;
|
|
1459
|
-
constructor(
|
|
1366
|
+
constructor(i: IX);
|
|
1460
1367
|
}
|
|
1461
1368
|
export declare class ArithmeticLogic8Instruction_28 {
|
|
1462
1369
|
kind: ASTKinds.ArithmeticLogic8Instruction_28;
|
|
1463
|
-
|
|
1464
|
-
pos: PosInfo;
|
|
1465
|
-
d: Expression;
|
|
1370
|
+
i: IY;
|
|
1466
1371
|
elements: AstElements;
|
|
1467
|
-
constructor(
|
|
1372
|
+
constructor(i: IY);
|
|
1468
1373
|
}
|
|
1469
1374
|
export declare class ArithmeticLogic8Instruction_29 {
|
|
1470
1375
|
kind: ASTKinds.ArithmeticLogic8Instruction_29;
|
|
@@ -1486,19 +1391,15 @@ export declare class ArithmeticLogic8Instruction_31 {
|
|
|
1486
1391
|
}
|
|
1487
1392
|
export declare class ArithmeticLogic8Instruction_32 {
|
|
1488
1393
|
kind: ASTKinds.ArithmeticLogic8Instruction_32;
|
|
1489
|
-
|
|
1490
|
-
pos: PosInfo;
|
|
1491
|
-
d: Expression;
|
|
1394
|
+
i: IX;
|
|
1492
1395
|
elements: AstElements;
|
|
1493
|
-
constructor(
|
|
1396
|
+
constructor(i: IX);
|
|
1494
1397
|
}
|
|
1495
1398
|
export declare class ArithmeticLogic8Instruction_33 {
|
|
1496
1399
|
kind: ASTKinds.ArithmeticLogic8Instruction_33;
|
|
1497
|
-
|
|
1498
|
-
pos: PosInfo;
|
|
1499
|
-
d: Expression;
|
|
1400
|
+
i: IY;
|
|
1500
1401
|
elements: AstElements;
|
|
1501
|
-
constructor(
|
|
1402
|
+
constructor(i: IY);
|
|
1502
1403
|
}
|
|
1503
1404
|
export declare class ArithmeticLogic8Instruction_34 {
|
|
1504
1405
|
kind: ASTKinds.ArithmeticLogic8Instruction_34;
|
|
@@ -1520,19 +1421,15 @@ export declare class ArithmeticLogic8Instruction_36 {
|
|
|
1520
1421
|
}
|
|
1521
1422
|
export declare class ArithmeticLogic8Instruction_37 {
|
|
1522
1423
|
kind: ASTKinds.ArithmeticLogic8Instruction_37;
|
|
1523
|
-
|
|
1524
|
-
pos: PosInfo;
|
|
1525
|
-
d: Expression;
|
|
1424
|
+
i: IX;
|
|
1526
1425
|
elements: AstElements;
|
|
1527
|
-
constructor(
|
|
1426
|
+
constructor(i: IX);
|
|
1528
1427
|
}
|
|
1529
1428
|
export declare class ArithmeticLogic8Instruction_38 {
|
|
1530
1429
|
kind: ASTKinds.ArithmeticLogic8Instruction_38;
|
|
1531
|
-
|
|
1532
|
-
pos: PosInfo;
|
|
1533
|
-
d: Expression;
|
|
1430
|
+
i: IY;
|
|
1534
1431
|
elements: AstElements;
|
|
1535
|
-
constructor(
|
|
1432
|
+
constructor(i: IY);
|
|
1536
1433
|
}
|
|
1537
1434
|
export declare class ArithmeticLogic8Instruction_39 {
|
|
1538
1435
|
kind: ASTKinds.ArithmeticLogic8Instruction_39;
|
|
@@ -1553,15 +1450,15 @@ export interface ArithmeticLogic8Instruction_$0 {
|
|
|
1553
1450
|
export interface ArithmeticLogic8Instruction_$1 {
|
|
1554
1451
|
kind: ASTKinds.ArithmeticLogic8Instruction_$1;
|
|
1555
1452
|
}
|
|
1556
|
-
export
|
|
1557
|
-
|
|
1558
|
-
|
|
1453
|
+
export interface ArithmeticLogic8Instruction_$2 {
|
|
1454
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$2;
|
|
1455
|
+
}
|
|
1559
1456
|
export interface ArithmeticLogic8Instruction_$3 {
|
|
1560
1457
|
kind: ASTKinds.ArithmeticLogic8Instruction_$3;
|
|
1561
1458
|
}
|
|
1562
|
-
export
|
|
1563
|
-
|
|
1564
|
-
|
|
1459
|
+
export interface ArithmeticLogic8Instruction_$4 {
|
|
1460
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$4;
|
|
1461
|
+
}
|
|
1565
1462
|
export interface ArithmeticLogic8Instruction_$5 {
|
|
1566
1463
|
kind: ASTKinds.ArithmeticLogic8Instruction_$5;
|
|
1567
1464
|
}
|
|
@@ -1574,15 +1471,15 @@ export interface ArithmeticLogic8Instruction_$7 {
|
|
|
1574
1471
|
export interface ArithmeticLogic8Instruction_$8 {
|
|
1575
1472
|
kind: ASTKinds.ArithmeticLogic8Instruction_$8;
|
|
1576
1473
|
}
|
|
1577
|
-
export
|
|
1578
|
-
|
|
1579
|
-
|
|
1474
|
+
export interface ArithmeticLogic8Instruction_$9 {
|
|
1475
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$9;
|
|
1476
|
+
}
|
|
1580
1477
|
export interface ArithmeticLogic8Instruction_$10 {
|
|
1581
1478
|
kind: ASTKinds.ArithmeticLogic8Instruction_$10;
|
|
1582
1479
|
}
|
|
1583
|
-
export
|
|
1584
|
-
|
|
1585
|
-
|
|
1480
|
+
export interface ArithmeticLogic8Instruction_$11 {
|
|
1481
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$11;
|
|
1482
|
+
}
|
|
1586
1483
|
export interface ArithmeticLogic8Instruction_$12 {
|
|
1587
1484
|
kind: ASTKinds.ArithmeticLogic8Instruction_$12;
|
|
1588
1485
|
}
|
|
@@ -1595,15 +1492,15 @@ export interface ArithmeticLogic8Instruction_$14 {
|
|
|
1595
1492
|
export interface ArithmeticLogic8Instruction_$15 {
|
|
1596
1493
|
kind: ASTKinds.ArithmeticLogic8Instruction_$15;
|
|
1597
1494
|
}
|
|
1598
|
-
export
|
|
1599
|
-
|
|
1600
|
-
|
|
1495
|
+
export interface ArithmeticLogic8Instruction_$16 {
|
|
1496
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$16;
|
|
1497
|
+
}
|
|
1601
1498
|
export interface ArithmeticLogic8Instruction_$17 {
|
|
1602
1499
|
kind: ASTKinds.ArithmeticLogic8Instruction_$17;
|
|
1603
1500
|
}
|
|
1604
|
-
export
|
|
1605
|
-
|
|
1606
|
-
|
|
1501
|
+
export interface ArithmeticLogic8Instruction_$18 {
|
|
1502
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$18;
|
|
1503
|
+
}
|
|
1607
1504
|
export interface ArithmeticLogic8Instruction_$19 {
|
|
1608
1505
|
kind: ASTKinds.ArithmeticLogic8Instruction_$19;
|
|
1609
1506
|
}
|
|
@@ -1616,15 +1513,15 @@ export interface ArithmeticLogic8Instruction_$21 {
|
|
|
1616
1513
|
export interface ArithmeticLogic8Instruction_$22 {
|
|
1617
1514
|
kind: ASTKinds.ArithmeticLogic8Instruction_$22;
|
|
1618
1515
|
}
|
|
1619
|
-
export
|
|
1620
|
-
|
|
1621
|
-
|
|
1516
|
+
export interface ArithmeticLogic8Instruction_$23 {
|
|
1517
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$23;
|
|
1518
|
+
}
|
|
1622
1519
|
export interface ArithmeticLogic8Instruction_$24 {
|
|
1623
1520
|
kind: ASTKinds.ArithmeticLogic8Instruction_$24;
|
|
1624
1521
|
}
|
|
1625
|
-
export
|
|
1626
|
-
|
|
1627
|
-
|
|
1522
|
+
export interface ArithmeticLogic8Instruction_$25 {
|
|
1523
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$25;
|
|
1524
|
+
}
|
|
1628
1525
|
export interface ArithmeticLogic8Instruction_$26 {
|
|
1629
1526
|
kind: ASTKinds.ArithmeticLogic8Instruction_$26;
|
|
1630
1527
|
}
|
|
@@ -1637,15 +1534,15 @@ export interface ArithmeticLogic8Instruction_$28 {
|
|
|
1637
1534
|
export interface ArithmeticLogic8Instruction_$29 {
|
|
1638
1535
|
kind: ASTKinds.ArithmeticLogic8Instruction_$29;
|
|
1639
1536
|
}
|
|
1640
|
-
export
|
|
1641
|
-
|
|
1642
|
-
|
|
1537
|
+
export interface ArithmeticLogic8Instruction_$30 {
|
|
1538
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$30;
|
|
1539
|
+
}
|
|
1643
1540
|
export interface ArithmeticLogic8Instruction_$31 {
|
|
1644
1541
|
kind: ASTKinds.ArithmeticLogic8Instruction_$31;
|
|
1645
1542
|
}
|
|
1646
|
-
export
|
|
1647
|
-
|
|
1648
|
-
|
|
1543
|
+
export interface ArithmeticLogic8Instruction_$32 {
|
|
1544
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$32;
|
|
1545
|
+
}
|
|
1649
1546
|
export interface ArithmeticLogic8Instruction_$33 {
|
|
1650
1547
|
kind: ASTKinds.ArithmeticLogic8Instruction_$33;
|
|
1651
1548
|
}
|
|
@@ -1658,62 +1555,14 @@ export interface ArithmeticLogic8Instruction_$35 {
|
|
|
1658
1555
|
export interface ArithmeticLogic8Instruction_$36 {
|
|
1659
1556
|
kind: ASTKinds.ArithmeticLogic8Instruction_$36;
|
|
1660
1557
|
}
|
|
1661
|
-
export
|
|
1662
|
-
|
|
1663
|
-
|
|
1558
|
+
export interface ArithmeticLogic8Instruction_$37 {
|
|
1559
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$37;
|
|
1560
|
+
}
|
|
1664
1561
|
export interface ArithmeticLogic8Instruction_$38 {
|
|
1665
1562
|
kind: ASTKinds.ArithmeticLogic8Instruction_$38;
|
|
1666
1563
|
}
|
|
1667
|
-
export
|
|
1668
|
-
|
|
1669
|
-
export type ArithmeticLogic8Instruction_$39_2 = string;
|
|
1670
|
-
export interface ArithmeticLogic8Instruction_$40 {
|
|
1671
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$40;
|
|
1672
|
-
}
|
|
1673
|
-
export interface ArithmeticLogic8Instruction_$41 {
|
|
1674
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$41;
|
|
1675
|
-
}
|
|
1676
|
-
export interface ArithmeticLogic8Instruction_$42 {
|
|
1677
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$42;
|
|
1678
|
-
}
|
|
1679
|
-
export interface ArithmeticLogic8Instruction_$43 {
|
|
1680
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$43;
|
|
1681
|
-
}
|
|
1682
|
-
export type ArithmeticLogic8Instruction_$44 = ArithmeticLogic8Instruction_$44_1 | ArithmeticLogic8Instruction_$44_2;
|
|
1683
|
-
export type ArithmeticLogic8Instruction_$44_1 = string;
|
|
1684
|
-
export type ArithmeticLogic8Instruction_$44_2 = string;
|
|
1685
|
-
export interface ArithmeticLogic8Instruction_$45 {
|
|
1686
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$45;
|
|
1687
|
-
}
|
|
1688
|
-
export type ArithmeticLogic8Instruction_$46 = ArithmeticLogic8Instruction_$46_1 | ArithmeticLogic8Instruction_$46_2;
|
|
1689
|
-
export type ArithmeticLogic8Instruction_$46_1 = string;
|
|
1690
|
-
export type ArithmeticLogic8Instruction_$46_2 = string;
|
|
1691
|
-
export interface ArithmeticLogic8Instruction_$47 {
|
|
1692
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$47;
|
|
1693
|
-
}
|
|
1694
|
-
export interface ArithmeticLogic8Instruction_$48 {
|
|
1695
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$48;
|
|
1696
|
-
}
|
|
1697
|
-
export interface ArithmeticLogic8Instruction_$49 {
|
|
1698
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$49;
|
|
1699
|
-
}
|
|
1700
|
-
export interface ArithmeticLogic8Instruction_$50 {
|
|
1701
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$50;
|
|
1702
|
-
}
|
|
1703
|
-
export type ArithmeticLogic8Instruction_$51 = ArithmeticLogic8Instruction_$51_1 | ArithmeticLogic8Instruction_$51_2;
|
|
1704
|
-
export type ArithmeticLogic8Instruction_$51_1 = string;
|
|
1705
|
-
export type ArithmeticLogic8Instruction_$51_2 = string;
|
|
1706
|
-
export interface ArithmeticLogic8Instruction_$52 {
|
|
1707
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$52;
|
|
1708
|
-
}
|
|
1709
|
-
export type ArithmeticLogic8Instruction_$53 = ArithmeticLogic8Instruction_$53_1 | ArithmeticLogic8Instruction_$53_2;
|
|
1710
|
-
export type ArithmeticLogic8Instruction_$53_1 = string;
|
|
1711
|
-
export type ArithmeticLogic8Instruction_$53_2 = string;
|
|
1712
|
-
export interface ArithmeticLogic8Instruction_$54 {
|
|
1713
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$54;
|
|
1714
|
-
}
|
|
1715
|
-
export interface ArithmeticLogic8Instruction_$55 {
|
|
1716
|
-
kind: ASTKinds.ArithmeticLogic8Instruction_$55;
|
|
1564
|
+
export interface ArithmeticLogic8Instruction_$39 {
|
|
1565
|
+
kind: ASTKinds.ArithmeticLogic8Instruction_$39;
|
|
1717
1566
|
}
|
|
1718
1567
|
export type IncrementDecrement8Instruction = IncrementDecrement8Instruction_1 | IncrementDecrement8Instruction_2 | IncrementDecrement8Instruction_3 | IncrementDecrement8Instruction_4 | IncrementDecrement8Instruction_5 | IncrementDecrement8Instruction_6 | IncrementDecrement8Instruction_7 | IncrementDecrement8Instruction_8;
|
|
1719
1568
|
export declare class IncrementDecrement8Instruction_1 {
|
|
@@ -1729,19 +1578,15 @@ export declare class IncrementDecrement8Instruction_2 {
|
|
|
1729
1578
|
}
|
|
1730
1579
|
export declare class IncrementDecrement8Instruction_3 {
|
|
1731
1580
|
kind: ASTKinds.IncrementDecrement8Instruction_3;
|
|
1732
|
-
|
|
1733
|
-
pos: PosInfo;
|
|
1734
|
-
d: Expression;
|
|
1581
|
+
i: IX;
|
|
1735
1582
|
elements: AstElements;
|
|
1736
|
-
constructor(
|
|
1583
|
+
constructor(i: IX);
|
|
1737
1584
|
}
|
|
1738
1585
|
export declare class IncrementDecrement8Instruction_4 {
|
|
1739
1586
|
kind: ASTKinds.IncrementDecrement8Instruction_4;
|
|
1740
|
-
|
|
1741
|
-
pos: PosInfo;
|
|
1742
|
-
d: Expression;
|
|
1587
|
+
i: IY;
|
|
1743
1588
|
elements: AstElements;
|
|
1744
|
-
constructor(
|
|
1589
|
+
constructor(i: IY);
|
|
1745
1590
|
}
|
|
1746
1591
|
export declare class IncrementDecrement8Instruction_5 {
|
|
1747
1592
|
kind: ASTKinds.IncrementDecrement8Instruction_5;
|
|
@@ -1756,32 +1601,16 @@ export declare class IncrementDecrement8Instruction_6 {
|
|
|
1756
1601
|
}
|
|
1757
1602
|
export declare class IncrementDecrement8Instruction_7 {
|
|
1758
1603
|
kind: ASTKinds.IncrementDecrement8Instruction_7;
|
|
1759
|
-
|
|
1760
|
-
pos: PosInfo;
|
|
1761
|
-
d: Expression;
|
|
1604
|
+
i: IX;
|
|
1762
1605
|
elements: AstElements;
|
|
1763
|
-
constructor(
|
|
1606
|
+
constructor(i: IX);
|
|
1764
1607
|
}
|
|
1765
1608
|
export declare class IncrementDecrement8Instruction_8 {
|
|
1766
1609
|
kind: ASTKinds.IncrementDecrement8Instruction_8;
|
|
1767
|
-
|
|
1768
|
-
pos: PosInfo;
|
|
1769
|
-
d: Expression;
|
|
1610
|
+
i: IY;
|
|
1770
1611
|
elements: AstElements;
|
|
1771
|
-
constructor(
|
|
1772
|
-
}
|
|
1773
|
-
export type IncrementDecrement8Instruction_$0 = IncrementDecrement8Instruction_$0_1 | IncrementDecrement8Instruction_$0_2;
|
|
1774
|
-
export type IncrementDecrement8Instruction_$0_1 = string;
|
|
1775
|
-
export type IncrementDecrement8Instruction_$0_2 = string;
|
|
1776
|
-
export type IncrementDecrement8Instruction_$1 = IncrementDecrement8Instruction_$1_1 | IncrementDecrement8Instruction_$1_2;
|
|
1777
|
-
export type IncrementDecrement8Instruction_$1_1 = string;
|
|
1778
|
-
export type IncrementDecrement8Instruction_$1_2 = string;
|
|
1779
|
-
export type IncrementDecrement8Instruction_$2 = IncrementDecrement8Instruction_$2_1 | IncrementDecrement8Instruction_$2_2;
|
|
1780
|
-
export type IncrementDecrement8Instruction_$2_1 = string;
|
|
1781
|
-
export type IncrementDecrement8Instruction_$2_2 = string;
|
|
1782
|
-
export type IncrementDecrement8Instruction_$3 = IncrementDecrement8Instruction_$3_1 | IncrementDecrement8Instruction_$3_2;
|
|
1783
|
-
export type IncrementDecrement8Instruction_$3_1 = string;
|
|
1784
|
-
export type IncrementDecrement8Instruction_$3_2 = string;
|
|
1612
|
+
constructor(i: IY);
|
|
1613
|
+
}
|
|
1785
1614
|
export type GeneralPurposeArithmeticInstruction = GeneralPurposeArithmeticInstruction_1 | GeneralPurposeArithmeticInstruction_2 | GeneralPurposeArithmeticInstruction_3 | GeneralPurposeArithmeticInstruction_4 | GeneralPurposeArithmeticInstruction_5;
|
|
1786
1615
|
export declare class GeneralPurposeArithmeticInstruction_1 {
|
|
1787
1616
|
kind: ASTKinds.GeneralPurposeArithmeticInstruction_1;
|
|
@@ -1932,19 +1761,15 @@ export declare class RotateShiftInstruction_6 {
|
|
|
1932
1761
|
}
|
|
1933
1762
|
export declare class RotateShiftInstruction_7 {
|
|
1934
1763
|
kind: ASTKinds.RotateShiftInstruction_7;
|
|
1935
|
-
|
|
1936
|
-
pos: PosInfo;
|
|
1937
|
-
d: Expression;
|
|
1764
|
+
i: IX;
|
|
1938
1765
|
elements: AstElements;
|
|
1939
|
-
constructor(
|
|
1766
|
+
constructor(i: IX);
|
|
1940
1767
|
}
|
|
1941
1768
|
export declare class RotateShiftInstruction_8 {
|
|
1942
1769
|
kind: ASTKinds.RotateShiftInstruction_8;
|
|
1943
|
-
|
|
1944
|
-
pos: PosInfo;
|
|
1945
|
-
d: Expression;
|
|
1770
|
+
i: IY;
|
|
1946
1771
|
elements: AstElements;
|
|
1947
|
-
constructor(
|
|
1772
|
+
constructor(i: IY);
|
|
1948
1773
|
}
|
|
1949
1774
|
export declare class RotateShiftInstruction_9 {
|
|
1950
1775
|
kind: ASTKinds.RotateShiftInstruction_9;
|
|
@@ -1959,19 +1784,15 @@ export declare class RotateShiftInstruction_10 {
|
|
|
1959
1784
|
}
|
|
1960
1785
|
export declare class RotateShiftInstruction_11 {
|
|
1961
1786
|
kind: ASTKinds.RotateShiftInstruction_11;
|
|
1962
|
-
|
|
1963
|
-
pos: PosInfo;
|
|
1964
|
-
d: Expression;
|
|
1787
|
+
i: IX;
|
|
1965
1788
|
elements: AstElements;
|
|
1966
|
-
constructor(
|
|
1789
|
+
constructor(i: IX);
|
|
1967
1790
|
}
|
|
1968
1791
|
export declare class RotateShiftInstruction_12 {
|
|
1969
1792
|
kind: ASTKinds.RotateShiftInstruction_12;
|
|
1970
|
-
|
|
1971
|
-
pos: PosInfo;
|
|
1972
|
-
d: Expression;
|
|
1793
|
+
i: IY;
|
|
1973
1794
|
elements: AstElements;
|
|
1974
|
-
constructor(
|
|
1795
|
+
constructor(i: IY);
|
|
1975
1796
|
}
|
|
1976
1797
|
export declare class RotateShiftInstruction_13 {
|
|
1977
1798
|
kind: ASTKinds.RotateShiftInstruction_13;
|
|
@@ -1986,19 +1807,15 @@ export declare class RotateShiftInstruction_14 {
|
|
|
1986
1807
|
}
|
|
1987
1808
|
export declare class RotateShiftInstruction_15 {
|
|
1988
1809
|
kind: ASTKinds.RotateShiftInstruction_15;
|
|
1989
|
-
|
|
1990
|
-
pos: PosInfo;
|
|
1991
|
-
d: Expression;
|
|
1810
|
+
i: IX;
|
|
1992
1811
|
elements: AstElements;
|
|
1993
|
-
constructor(
|
|
1812
|
+
constructor(i: IX);
|
|
1994
1813
|
}
|
|
1995
1814
|
export declare class RotateShiftInstruction_16 {
|
|
1996
1815
|
kind: ASTKinds.RotateShiftInstruction_16;
|
|
1997
|
-
|
|
1998
|
-
pos: PosInfo;
|
|
1999
|
-
d: Expression;
|
|
1816
|
+
i: IY;
|
|
2000
1817
|
elements: AstElements;
|
|
2001
|
-
constructor(
|
|
1818
|
+
constructor(i: IY);
|
|
2002
1819
|
}
|
|
2003
1820
|
export declare class RotateShiftInstruction_17 {
|
|
2004
1821
|
kind: ASTKinds.RotateShiftInstruction_17;
|
|
@@ -2013,19 +1830,15 @@ export declare class RotateShiftInstruction_18 {
|
|
|
2013
1830
|
}
|
|
2014
1831
|
export declare class RotateShiftInstruction_19 {
|
|
2015
1832
|
kind: ASTKinds.RotateShiftInstruction_19;
|
|
2016
|
-
|
|
2017
|
-
pos: PosInfo;
|
|
2018
|
-
d: Expression;
|
|
1833
|
+
i: IX;
|
|
2019
1834
|
elements: AstElements;
|
|
2020
|
-
constructor(
|
|
1835
|
+
constructor(i: IX);
|
|
2021
1836
|
}
|
|
2022
1837
|
export declare class RotateShiftInstruction_20 {
|
|
2023
1838
|
kind: ASTKinds.RotateShiftInstruction_20;
|
|
2024
|
-
|
|
2025
|
-
pos: PosInfo;
|
|
2026
|
-
d: Expression;
|
|
1839
|
+
i: IY;
|
|
2027
1840
|
elements: AstElements;
|
|
2028
|
-
constructor(
|
|
1841
|
+
constructor(i: IY);
|
|
2029
1842
|
}
|
|
2030
1843
|
export declare class RotateShiftInstruction_21 {
|
|
2031
1844
|
kind: ASTKinds.RotateShiftInstruction_21;
|
|
@@ -2040,19 +1853,15 @@ export declare class RotateShiftInstruction_22 {
|
|
|
2040
1853
|
}
|
|
2041
1854
|
export declare class RotateShiftInstruction_23 {
|
|
2042
1855
|
kind: ASTKinds.RotateShiftInstruction_23;
|
|
2043
|
-
|
|
2044
|
-
pos: PosInfo;
|
|
2045
|
-
d: Expression;
|
|
1856
|
+
i: IX;
|
|
2046
1857
|
elements: AstElements;
|
|
2047
|
-
constructor(
|
|
1858
|
+
constructor(i: IX);
|
|
2048
1859
|
}
|
|
2049
1860
|
export declare class RotateShiftInstruction_24 {
|
|
2050
1861
|
kind: ASTKinds.RotateShiftInstruction_24;
|
|
2051
|
-
|
|
2052
|
-
pos: PosInfo;
|
|
2053
|
-
d: Expression;
|
|
1862
|
+
i: IY;
|
|
2054
1863
|
elements: AstElements;
|
|
2055
|
-
constructor(
|
|
1864
|
+
constructor(i: IY);
|
|
2056
1865
|
}
|
|
2057
1866
|
export declare class RotateShiftInstruction_25 {
|
|
2058
1867
|
kind: ASTKinds.RotateShiftInstruction_25;
|
|
@@ -2067,19 +1876,15 @@ export declare class RotateShiftInstruction_26 {
|
|
|
2067
1876
|
}
|
|
2068
1877
|
export declare class RotateShiftInstruction_27 {
|
|
2069
1878
|
kind: ASTKinds.RotateShiftInstruction_27;
|
|
2070
|
-
|
|
2071
|
-
pos: PosInfo;
|
|
2072
|
-
d: Expression;
|
|
1879
|
+
i: IX;
|
|
2073
1880
|
elements: AstElements;
|
|
2074
|
-
constructor(
|
|
1881
|
+
constructor(i: IX);
|
|
2075
1882
|
}
|
|
2076
1883
|
export declare class RotateShiftInstruction_28 {
|
|
2077
1884
|
kind: ASTKinds.RotateShiftInstruction_28;
|
|
2078
|
-
|
|
2079
|
-
pos: PosInfo;
|
|
2080
|
-
d: Expression;
|
|
1885
|
+
i: IY;
|
|
2081
1886
|
elements: AstElements;
|
|
2082
|
-
constructor(
|
|
1887
|
+
constructor(i: IY);
|
|
2083
1888
|
}
|
|
2084
1889
|
export declare class RotateShiftInstruction_29 {
|
|
2085
1890
|
kind: ASTKinds.RotateShiftInstruction_29;
|
|
@@ -2094,19 +1899,15 @@ export declare class RotateShiftInstruction_30 {
|
|
|
2094
1899
|
}
|
|
2095
1900
|
export declare class RotateShiftInstruction_31 {
|
|
2096
1901
|
kind: ASTKinds.RotateShiftInstruction_31;
|
|
2097
|
-
|
|
2098
|
-
pos: PosInfo;
|
|
2099
|
-
d: Expression;
|
|
1902
|
+
i: IX;
|
|
2100
1903
|
elements: AstElements;
|
|
2101
|
-
constructor(
|
|
1904
|
+
constructor(i: IX);
|
|
2102
1905
|
}
|
|
2103
1906
|
export declare class RotateShiftInstruction_32 {
|
|
2104
1907
|
kind: ASTKinds.RotateShiftInstruction_32;
|
|
2105
|
-
|
|
2106
|
-
pos: PosInfo;
|
|
2107
|
-
d: Expression;
|
|
1908
|
+
i: IY;
|
|
2108
1909
|
elements: AstElements;
|
|
2109
|
-
constructor(
|
|
1910
|
+
constructor(i: IY);
|
|
2110
1911
|
}
|
|
2111
1912
|
export declare class RotateShiftInstruction_33 {
|
|
2112
1913
|
kind: ASTKinds.RotateShiftInstruction_33;
|
|
@@ -2118,48 +1919,6 @@ export declare class RotateShiftInstruction_34 {
|
|
|
2118
1919
|
elements: AstElements;
|
|
2119
1920
|
constructor();
|
|
2120
1921
|
}
|
|
2121
|
-
export type RotateShiftInstruction_$0 = RotateShiftInstruction_$0_1 | RotateShiftInstruction_$0_2;
|
|
2122
|
-
export type RotateShiftInstruction_$0_1 = string;
|
|
2123
|
-
export type RotateShiftInstruction_$0_2 = string;
|
|
2124
|
-
export type RotateShiftInstruction_$1 = RotateShiftInstruction_$1_1 | RotateShiftInstruction_$1_2;
|
|
2125
|
-
export type RotateShiftInstruction_$1_1 = string;
|
|
2126
|
-
export type RotateShiftInstruction_$1_2 = string;
|
|
2127
|
-
export type RotateShiftInstruction_$2 = RotateShiftInstruction_$2_1 | RotateShiftInstruction_$2_2;
|
|
2128
|
-
export type RotateShiftInstruction_$2_1 = string;
|
|
2129
|
-
export type RotateShiftInstruction_$2_2 = string;
|
|
2130
|
-
export type RotateShiftInstruction_$3 = RotateShiftInstruction_$3_1 | RotateShiftInstruction_$3_2;
|
|
2131
|
-
export type RotateShiftInstruction_$3_1 = string;
|
|
2132
|
-
export type RotateShiftInstruction_$3_2 = string;
|
|
2133
|
-
export type RotateShiftInstruction_$4 = RotateShiftInstruction_$4_1 | RotateShiftInstruction_$4_2;
|
|
2134
|
-
export type RotateShiftInstruction_$4_1 = string;
|
|
2135
|
-
export type RotateShiftInstruction_$4_2 = string;
|
|
2136
|
-
export type RotateShiftInstruction_$5 = RotateShiftInstruction_$5_1 | RotateShiftInstruction_$5_2;
|
|
2137
|
-
export type RotateShiftInstruction_$5_1 = string;
|
|
2138
|
-
export type RotateShiftInstruction_$5_2 = string;
|
|
2139
|
-
export type RotateShiftInstruction_$6 = RotateShiftInstruction_$6_1 | RotateShiftInstruction_$6_2;
|
|
2140
|
-
export type RotateShiftInstruction_$6_1 = string;
|
|
2141
|
-
export type RotateShiftInstruction_$6_2 = string;
|
|
2142
|
-
export type RotateShiftInstruction_$7 = RotateShiftInstruction_$7_1 | RotateShiftInstruction_$7_2;
|
|
2143
|
-
export type RotateShiftInstruction_$7_1 = string;
|
|
2144
|
-
export type RotateShiftInstruction_$7_2 = string;
|
|
2145
|
-
export type RotateShiftInstruction_$8 = RotateShiftInstruction_$8_1 | RotateShiftInstruction_$8_2;
|
|
2146
|
-
export type RotateShiftInstruction_$8_1 = string;
|
|
2147
|
-
export type RotateShiftInstruction_$8_2 = string;
|
|
2148
|
-
export type RotateShiftInstruction_$9 = RotateShiftInstruction_$9_1 | RotateShiftInstruction_$9_2;
|
|
2149
|
-
export type RotateShiftInstruction_$9_1 = string;
|
|
2150
|
-
export type RotateShiftInstruction_$9_2 = string;
|
|
2151
|
-
export type RotateShiftInstruction_$10 = RotateShiftInstruction_$10_1 | RotateShiftInstruction_$10_2;
|
|
2152
|
-
export type RotateShiftInstruction_$10_1 = string;
|
|
2153
|
-
export type RotateShiftInstruction_$10_2 = string;
|
|
2154
|
-
export type RotateShiftInstruction_$11 = RotateShiftInstruction_$11_1 | RotateShiftInstruction_$11_2;
|
|
2155
|
-
export type RotateShiftInstruction_$11_1 = string;
|
|
2156
|
-
export type RotateShiftInstruction_$11_2 = string;
|
|
2157
|
-
export type RotateShiftInstruction_$12 = RotateShiftInstruction_$12_1 | RotateShiftInstruction_$12_2;
|
|
2158
|
-
export type RotateShiftInstruction_$12_1 = string;
|
|
2159
|
-
export type RotateShiftInstruction_$12_2 = string;
|
|
2160
|
-
export type RotateShiftInstruction_$13 = RotateShiftInstruction_$13_1 | RotateShiftInstruction_$13_2;
|
|
2161
|
-
export type RotateShiftInstruction_$13_1 = string;
|
|
2162
|
-
export type RotateShiftInstruction_$13_2 = string;
|
|
2163
1922
|
export type BitManipulationInstruction = BitManipulationInstruction_1 | BitManipulationInstruction_2 | BitManipulationInstruction_3 | BitManipulationInstruction_4 | BitManipulationInstruction_5 | BitManipulationInstruction_6 | BitManipulationInstruction_7 | BitManipulationInstruction_8 | BitManipulationInstruction_9 | BitManipulationInstruction_10 | BitManipulationInstruction_11 | BitManipulationInstruction_12;
|
|
2164
1923
|
export declare class BitManipulationInstruction_1 {
|
|
2165
1924
|
kind: ASTKinds.BitManipulationInstruction_1;
|
|
@@ -2177,20 +1936,16 @@ export declare class BitManipulationInstruction_2 {
|
|
|
2177
1936
|
export declare class BitManipulationInstruction_3 {
|
|
2178
1937
|
kind: ASTKinds.BitManipulationInstruction_3;
|
|
2179
1938
|
b: b;
|
|
2180
|
-
|
|
2181
|
-
pos: PosInfo;
|
|
2182
|
-
d: Expression;
|
|
1939
|
+
i: IX;
|
|
2183
1940
|
elements: AstElements;
|
|
2184
|
-
constructor(b: b,
|
|
1941
|
+
constructor(b: b, i: IX);
|
|
2185
1942
|
}
|
|
2186
1943
|
export declare class BitManipulationInstruction_4 {
|
|
2187
1944
|
kind: ASTKinds.BitManipulationInstruction_4;
|
|
2188
1945
|
b: b;
|
|
2189
|
-
|
|
2190
|
-
pos: PosInfo;
|
|
2191
|
-
d: Expression;
|
|
1946
|
+
i: IY;
|
|
2192
1947
|
elements: AstElements;
|
|
2193
|
-
constructor(b: b,
|
|
1948
|
+
constructor(b: b, i: IY);
|
|
2194
1949
|
}
|
|
2195
1950
|
export declare class BitManipulationInstruction_5 {
|
|
2196
1951
|
kind: ASTKinds.BitManipulationInstruction_5;
|
|
@@ -2208,20 +1963,16 @@ export declare class BitManipulationInstruction_6 {
|
|
|
2208
1963
|
export declare class BitManipulationInstruction_7 {
|
|
2209
1964
|
kind: ASTKinds.BitManipulationInstruction_7;
|
|
2210
1965
|
b: b;
|
|
2211
|
-
|
|
2212
|
-
pos: PosInfo;
|
|
2213
|
-
d: Expression;
|
|
1966
|
+
i: IX;
|
|
2214
1967
|
elements: AstElements;
|
|
2215
|
-
constructor(b: b,
|
|
1968
|
+
constructor(b: b, i: IX);
|
|
2216
1969
|
}
|
|
2217
1970
|
export declare class BitManipulationInstruction_8 {
|
|
2218
1971
|
kind: ASTKinds.BitManipulationInstruction_8;
|
|
2219
1972
|
b: b;
|
|
2220
|
-
|
|
2221
|
-
pos: PosInfo;
|
|
2222
|
-
d: Expression;
|
|
1973
|
+
i: IY;
|
|
2223
1974
|
elements: AstElements;
|
|
2224
|
-
constructor(b: b,
|
|
1975
|
+
constructor(b: b, i: IY);
|
|
2225
1976
|
}
|
|
2226
1977
|
export declare class BitManipulationInstruction_9 {
|
|
2227
1978
|
kind: ASTKinds.BitManipulationInstruction_9;
|
|
@@ -2239,39 +1990,17 @@ export declare class BitManipulationInstruction_10 {
|
|
|
2239
1990
|
export declare class BitManipulationInstruction_11 {
|
|
2240
1991
|
kind: ASTKinds.BitManipulationInstruction_11;
|
|
2241
1992
|
b: b;
|
|
2242
|
-
|
|
2243
|
-
pos: PosInfo;
|
|
2244
|
-
d: Expression;
|
|
1993
|
+
i: IX;
|
|
2245
1994
|
elements: AstElements;
|
|
2246
|
-
constructor(b: b,
|
|
1995
|
+
constructor(b: b, i: IX);
|
|
2247
1996
|
}
|
|
2248
1997
|
export declare class BitManipulationInstruction_12 {
|
|
2249
1998
|
kind: ASTKinds.BitManipulationInstruction_12;
|
|
2250
1999
|
b: b;
|
|
2251
|
-
|
|
2252
|
-
pos: PosInfo;
|
|
2253
|
-
d: Expression;
|
|
2000
|
+
i: IY;
|
|
2254
2001
|
elements: AstElements;
|
|
2255
|
-
constructor(b: b,
|
|
2256
|
-
}
|
|
2257
|
-
export type BitManipulationInstruction_$0 = BitManipulationInstruction_$0_1 | BitManipulationInstruction_$0_2;
|
|
2258
|
-
export type BitManipulationInstruction_$0_1 = string;
|
|
2259
|
-
export type BitManipulationInstruction_$0_2 = string;
|
|
2260
|
-
export type BitManipulationInstruction_$1 = BitManipulationInstruction_$1_1 | BitManipulationInstruction_$1_2;
|
|
2261
|
-
export type BitManipulationInstruction_$1_1 = string;
|
|
2262
|
-
export type BitManipulationInstruction_$1_2 = string;
|
|
2263
|
-
export type BitManipulationInstruction_$2 = BitManipulationInstruction_$2_1 | BitManipulationInstruction_$2_2;
|
|
2264
|
-
export type BitManipulationInstruction_$2_1 = string;
|
|
2265
|
-
export type BitManipulationInstruction_$2_2 = string;
|
|
2266
|
-
export type BitManipulationInstruction_$3 = BitManipulationInstruction_$3_1 | BitManipulationInstruction_$3_2;
|
|
2267
|
-
export type BitManipulationInstruction_$3_1 = string;
|
|
2268
|
-
export type BitManipulationInstruction_$3_2 = string;
|
|
2269
|
-
export type BitManipulationInstruction_$4 = BitManipulationInstruction_$4_1 | BitManipulationInstruction_$4_2;
|
|
2270
|
-
export type BitManipulationInstruction_$4_1 = string;
|
|
2271
|
-
export type BitManipulationInstruction_$4_2 = string;
|
|
2272
|
-
export type BitManipulationInstruction_$5 = BitManipulationInstruction_$5_1 | BitManipulationInstruction_$5_2;
|
|
2273
|
-
export type BitManipulationInstruction_$5_1 = string;
|
|
2274
|
-
export type BitManipulationInstruction_$5_2 = string;
|
|
2002
|
+
constructor(b: b, i: IY);
|
|
2003
|
+
}
|
|
2275
2004
|
export type Offset = Offset_1 | Offset_2;
|
|
2276
2005
|
export declare class Offset_1 {
|
|
2277
2006
|
kind: ASTKinds.Offset_1;
|
|
@@ -2490,15 +2219,15 @@ export type BlockDirective_3 = string;
|
|
|
2490
2219
|
export type ByteValue = ByteValue_1 | ByteValue_2 | ByteValue_3;
|
|
2491
2220
|
export declare class ByteValue_1 {
|
|
2492
2221
|
kind: ASTKinds.ByteValue_1;
|
|
2493
|
-
|
|
2222
|
+
s: QuottedStr;
|
|
2494
2223
|
elements: AstElements;
|
|
2495
|
-
constructor(
|
|
2224
|
+
constructor(s: QuottedStr);
|
|
2496
2225
|
}
|
|
2497
2226
|
export declare class ByteValue_2 {
|
|
2498
2227
|
kind: ASTKinds.ByteValue_2;
|
|
2499
|
-
s:
|
|
2228
|
+
s: DoubleQuottedStr;
|
|
2500
2229
|
elements: AstElements;
|
|
2501
|
-
constructor(s:
|
|
2230
|
+
constructor(s: DoubleQuottedStr);
|
|
2502
2231
|
}
|
|
2503
2232
|
export declare class ByteValue_3 {
|
|
2504
2233
|
kind: ASTKinds.ByteValue_3;
|
|
@@ -2580,39 +2309,40 @@ export declare class HexadecimalEscapeSequence {
|
|
|
2580
2309
|
elements: AstElements;
|
|
2581
2310
|
constructor(pos: PosInfo, raw: string);
|
|
2582
2311
|
}
|
|
2583
|
-
export declare class
|
|
2584
|
-
kind: ASTKinds.
|
|
2312
|
+
export declare class NoQuoteChar {
|
|
2313
|
+
kind: ASTKinds.NoQuoteChar;
|
|
2585
2314
|
pos: PosInfo;
|
|
2586
2315
|
raw: string;
|
|
2587
2316
|
elements: AstElements;
|
|
2588
2317
|
constructor(pos: PosInfo, raw: string);
|
|
2589
2318
|
}
|
|
2590
|
-
export declare class
|
|
2591
|
-
kind: ASTKinds.
|
|
2319
|
+
export declare class NoDoubleQuoteChar {
|
|
2320
|
+
kind: ASTKinds.NoDoubleQuoteChar;
|
|
2592
2321
|
pos: PosInfo;
|
|
2593
2322
|
raw: string;
|
|
2594
2323
|
elements: AstElements;
|
|
2595
2324
|
constructor(pos: PosInfo, raw: string);
|
|
2596
2325
|
}
|
|
2597
|
-
export declare class
|
|
2598
|
-
kind: ASTKinds.
|
|
2599
|
-
|
|
2326
|
+
export declare class QuottedStr {
|
|
2327
|
+
kind: ASTKinds.QuottedStr;
|
|
2328
|
+
pos: PosInfo;
|
|
2329
|
+
chars: QuottedStr_$0[];
|
|
2600
2330
|
elements: AstElements;
|
|
2601
|
-
constructor(
|
|
2331
|
+
constructor(pos: PosInfo, chars: QuottedStr_$0[]);
|
|
2602
2332
|
}
|
|
2603
|
-
export type
|
|
2604
|
-
export type
|
|
2605
|
-
export type
|
|
2606
|
-
export declare class
|
|
2607
|
-
kind: ASTKinds.
|
|
2333
|
+
export type QuottedStr_$0 = QuottedStr_$0_1 | QuottedStr_$0_2;
|
|
2334
|
+
export type QuottedStr_$0_1 = NoQuoteChar;
|
|
2335
|
+
export type QuottedStr_$0_2 = EscapeSequence;
|
|
2336
|
+
export declare class DoubleQuottedStr {
|
|
2337
|
+
kind: ASTKinds.DoubleQuottedStr;
|
|
2608
2338
|
pos: PosInfo;
|
|
2609
|
-
chars:
|
|
2339
|
+
chars: DoubleQuottedStr_$0[];
|
|
2610
2340
|
elements: AstElements;
|
|
2611
|
-
constructor(pos: PosInfo, chars:
|
|
2341
|
+
constructor(pos: PosInfo, chars: DoubleQuottedStr_$0[]);
|
|
2612
2342
|
}
|
|
2613
|
-
export type
|
|
2614
|
-
export type
|
|
2615
|
-
export type
|
|
2343
|
+
export type DoubleQuottedStr_$0 = DoubleQuottedStr_$0_1 | DoubleQuottedStr_$0_2;
|
|
2344
|
+
export type DoubleQuottedStr_$0_1 = NoDoubleQuoteChar;
|
|
2345
|
+
export type DoubleQuottedStr_$0_2 = EscapeSequence;
|
|
2616
2346
|
export type Comment = string;
|
|
2617
2347
|
export interface OriginDirective {
|
|
2618
2348
|
kind: ASTKinds.OriginDirective;
|
|
@@ -2651,6 +2381,9 @@ export declare class DeviceDirective {
|
|
|
2651
2381
|
void: void;
|
|
2652
2382
|
constructor(raw: string);
|
|
2653
2383
|
}
|
|
2384
|
+
export interface EndDirective {
|
|
2385
|
+
kind: ASTKinds.EndDirective;
|
|
2386
|
+
}
|
|
2654
2387
|
export declare class Parser {
|
|
2655
2388
|
private readonly input;
|
|
2656
2389
|
private pos;
|
|
@@ -2708,6 +2441,8 @@ export declare class Parser {
|
|
|
2708
2441
|
matchnn_4($$dpth: number, $$cr?: ErrorTracker): Nullable<nn_4>;
|
|
2709
2442
|
matchdecimal($$dpth: number, $$cr?: ErrorTracker): Nullable<decimal>;
|
|
2710
2443
|
matchbinary($$dpth: number, $$cr?: ErrorTracker): Nullable<binary>;
|
|
2444
|
+
matchbinary_1($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_1>;
|
|
2445
|
+
matchbinary_2($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_2>;
|
|
2711
2446
|
matchbinary_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0>;
|
|
2712
2447
|
matchbinary_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0_1>;
|
|
2713
2448
|
matchbinary_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0_2>;
|
|
@@ -2717,6 +2452,7 @@ export declare class Parser {
|
|
|
2717
2452
|
matchoctal_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0>;
|
|
2718
2453
|
matchoctal_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_1>;
|
|
2719
2454
|
matchoctal_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_2>;
|
|
2455
|
+
matchoctal_$0_3($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_3>;
|
|
2720
2456
|
matchoctal_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1>;
|
|
2721
2457
|
matchoctal_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1_1>;
|
|
2722
2458
|
matchoctal_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1_2>;
|
|
@@ -2766,6 +2502,7 @@ export declare class Parser {
|
|
|
2766
2502
|
matchDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_2>;
|
|
2767
2503
|
matchDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_3>;
|
|
2768
2504
|
matchDirective_4($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_4>;
|
|
2505
|
+
matchDirective_5($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_5>;
|
|
2769
2506
|
matchForbiddenNames($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames>;
|
|
2770
2507
|
matchForbiddenNames_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_1>;
|
|
2771
2508
|
matchForbiddenNames_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_2>;
|
|
@@ -2810,6 +2547,16 @@ export declare class Parser {
|
|
|
2810
2547
|
matchPrimaryExpression_2($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_2>;
|
|
2811
2548
|
matchPrimaryExpression_3($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_3>;
|
|
2812
2549
|
matchReg8($$dpth: number, $$cr?: ErrorTracker): Nullable<Reg8>;
|
|
2550
|
+
matchIX($$dpth: number, $$cr?: ErrorTracker): Nullable<IX>;
|
|
2551
|
+
matchIX_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0>;
|
|
2552
|
+
matchIX_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0_$0>;
|
|
2553
|
+
matchIX_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0_$0_1>;
|
|
2554
|
+
matchIX_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IX_$0_$0_2>;
|
|
2555
|
+
matchIY($$dpth: number, $$cr?: ErrorTracker): Nullable<IY>;
|
|
2556
|
+
matchIY_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0>;
|
|
2557
|
+
matchIY_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0_$0>;
|
|
2558
|
+
matchIY_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0_$0_1>;
|
|
2559
|
+
matchIY_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IY_$0_$0_2>;
|
|
2813
2560
|
matchInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction>;
|
|
2814
2561
|
matchInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_1>;
|
|
2815
2562
|
matchInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_2>;
|
|
@@ -2849,24 +2596,6 @@ export declare class Parser {
|
|
|
2849
2596
|
matchLoad8Instruction_19($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_19>;
|
|
2850
2597
|
matchLoad8Instruction_20($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_20>;
|
|
2851
2598
|
matchLoad8Instruction_21($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_21>;
|
|
2852
|
-
matchLoad8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0>;
|
|
2853
|
-
matchLoad8Instruction_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0_1>;
|
|
2854
|
-
matchLoad8Instruction_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$0_2>;
|
|
2855
|
-
matchLoad8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1>;
|
|
2856
|
-
matchLoad8Instruction_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1_1>;
|
|
2857
|
-
matchLoad8Instruction_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$1_2>;
|
|
2858
|
-
matchLoad8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2>;
|
|
2859
|
-
matchLoad8Instruction_$2_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2_1>;
|
|
2860
|
-
matchLoad8Instruction_$2_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$2_2>;
|
|
2861
|
-
matchLoad8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3>;
|
|
2862
|
-
matchLoad8Instruction_$3_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3_1>;
|
|
2863
|
-
matchLoad8Instruction_$3_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$3_2>;
|
|
2864
|
-
matchLoad8Instruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4>;
|
|
2865
|
-
matchLoad8Instruction_$4_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4_1>;
|
|
2866
|
-
matchLoad8Instruction_$4_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$4_2>;
|
|
2867
|
-
matchLoad8Instruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5>;
|
|
2868
|
-
matchLoad8Instruction_$5_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5_1>;
|
|
2869
|
-
matchLoad8Instruction_$5_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_$5_2>;
|
|
2870
2599
|
matchLoad16Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction>;
|
|
2871
2600
|
matchLoad16Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_1>;
|
|
2872
2601
|
matchLoad16Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_2>;
|
|
@@ -2948,91 +2677,43 @@ export declare class Parser {
|
|
|
2948
2677
|
matchArithmeticLogic8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$0>;
|
|
2949
2678
|
matchArithmeticLogic8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$1>;
|
|
2950
2679
|
matchArithmeticLogic8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2>;
|
|
2951
|
-
matchArithmeticLogic8Instruction_$2_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2_1>;
|
|
2952
|
-
matchArithmeticLogic8Instruction_$2_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2_2>;
|
|
2953
2680
|
matchArithmeticLogic8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$3>;
|
|
2954
2681
|
matchArithmeticLogic8Instruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4>;
|
|
2955
|
-
matchArithmeticLogic8Instruction_$4_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4_1>;
|
|
2956
|
-
matchArithmeticLogic8Instruction_$4_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4_2>;
|
|
2957
2682
|
matchArithmeticLogic8Instruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$5>;
|
|
2958
2683
|
matchArithmeticLogic8Instruction_$6($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$6>;
|
|
2959
2684
|
matchArithmeticLogic8Instruction_$7($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$7>;
|
|
2960
2685
|
matchArithmeticLogic8Instruction_$8($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$8>;
|
|
2961
2686
|
matchArithmeticLogic8Instruction_$9($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9>;
|
|
2962
|
-
matchArithmeticLogic8Instruction_$9_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9_1>;
|
|
2963
|
-
matchArithmeticLogic8Instruction_$9_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9_2>;
|
|
2964
2687
|
matchArithmeticLogic8Instruction_$10($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$10>;
|
|
2965
2688
|
matchArithmeticLogic8Instruction_$11($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11>;
|
|
2966
|
-
matchArithmeticLogic8Instruction_$11_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11_1>;
|
|
2967
|
-
matchArithmeticLogic8Instruction_$11_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11_2>;
|
|
2968
2689
|
matchArithmeticLogic8Instruction_$12($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$12>;
|
|
2969
2690
|
matchArithmeticLogic8Instruction_$13($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$13>;
|
|
2970
2691
|
matchArithmeticLogic8Instruction_$14($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$14>;
|
|
2971
2692
|
matchArithmeticLogic8Instruction_$15($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$15>;
|
|
2972
2693
|
matchArithmeticLogic8Instruction_$16($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16>;
|
|
2973
|
-
matchArithmeticLogic8Instruction_$16_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16_1>;
|
|
2974
|
-
matchArithmeticLogic8Instruction_$16_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16_2>;
|
|
2975
2694
|
matchArithmeticLogic8Instruction_$17($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$17>;
|
|
2976
2695
|
matchArithmeticLogic8Instruction_$18($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18>;
|
|
2977
|
-
matchArithmeticLogic8Instruction_$18_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18_1>;
|
|
2978
|
-
matchArithmeticLogic8Instruction_$18_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18_2>;
|
|
2979
2696
|
matchArithmeticLogic8Instruction_$19($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$19>;
|
|
2980
2697
|
matchArithmeticLogic8Instruction_$20($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$20>;
|
|
2981
2698
|
matchArithmeticLogic8Instruction_$21($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$21>;
|
|
2982
2699
|
matchArithmeticLogic8Instruction_$22($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$22>;
|
|
2983
2700
|
matchArithmeticLogic8Instruction_$23($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23>;
|
|
2984
|
-
matchArithmeticLogic8Instruction_$23_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23_1>;
|
|
2985
|
-
matchArithmeticLogic8Instruction_$23_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23_2>;
|
|
2986
2701
|
matchArithmeticLogic8Instruction_$24($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$24>;
|
|
2987
2702
|
matchArithmeticLogic8Instruction_$25($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25>;
|
|
2988
|
-
matchArithmeticLogic8Instruction_$25_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25_1>;
|
|
2989
|
-
matchArithmeticLogic8Instruction_$25_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25_2>;
|
|
2990
2703
|
matchArithmeticLogic8Instruction_$26($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$26>;
|
|
2991
2704
|
matchArithmeticLogic8Instruction_$27($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$27>;
|
|
2992
2705
|
matchArithmeticLogic8Instruction_$28($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$28>;
|
|
2993
2706
|
matchArithmeticLogic8Instruction_$29($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$29>;
|
|
2994
2707
|
matchArithmeticLogic8Instruction_$30($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30>;
|
|
2995
|
-
matchArithmeticLogic8Instruction_$30_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30_1>;
|
|
2996
|
-
matchArithmeticLogic8Instruction_$30_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30_2>;
|
|
2997
2708
|
matchArithmeticLogic8Instruction_$31($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$31>;
|
|
2998
2709
|
matchArithmeticLogic8Instruction_$32($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32>;
|
|
2999
|
-
matchArithmeticLogic8Instruction_$32_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32_1>;
|
|
3000
|
-
matchArithmeticLogic8Instruction_$32_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32_2>;
|
|
3001
2710
|
matchArithmeticLogic8Instruction_$33($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$33>;
|
|
3002
2711
|
matchArithmeticLogic8Instruction_$34($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$34>;
|
|
3003
2712
|
matchArithmeticLogic8Instruction_$35($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$35>;
|
|
3004
2713
|
matchArithmeticLogic8Instruction_$36($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$36>;
|
|
3005
2714
|
matchArithmeticLogic8Instruction_$37($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37>;
|
|
3006
|
-
matchArithmeticLogic8Instruction_$37_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37_1>;
|
|
3007
|
-
matchArithmeticLogic8Instruction_$37_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37_2>;
|
|
3008
2715
|
matchArithmeticLogic8Instruction_$38($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$38>;
|
|
3009
2716
|
matchArithmeticLogic8Instruction_$39($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39>;
|
|
3010
|
-
matchArithmeticLogic8Instruction_$39_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39_1>;
|
|
3011
|
-
matchArithmeticLogic8Instruction_$39_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39_2>;
|
|
3012
|
-
matchArithmeticLogic8Instruction_$40($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$40>;
|
|
3013
|
-
matchArithmeticLogic8Instruction_$41($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$41>;
|
|
3014
|
-
matchArithmeticLogic8Instruction_$42($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$42>;
|
|
3015
|
-
matchArithmeticLogic8Instruction_$43($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$43>;
|
|
3016
|
-
matchArithmeticLogic8Instruction_$44($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44>;
|
|
3017
|
-
matchArithmeticLogic8Instruction_$44_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44_1>;
|
|
3018
|
-
matchArithmeticLogic8Instruction_$44_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$44_2>;
|
|
3019
|
-
matchArithmeticLogic8Instruction_$45($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$45>;
|
|
3020
|
-
matchArithmeticLogic8Instruction_$46($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46>;
|
|
3021
|
-
matchArithmeticLogic8Instruction_$46_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46_1>;
|
|
3022
|
-
matchArithmeticLogic8Instruction_$46_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$46_2>;
|
|
3023
|
-
matchArithmeticLogic8Instruction_$47($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$47>;
|
|
3024
|
-
matchArithmeticLogic8Instruction_$48($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$48>;
|
|
3025
|
-
matchArithmeticLogic8Instruction_$49($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$49>;
|
|
3026
|
-
matchArithmeticLogic8Instruction_$50($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$50>;
|
|
3027
|
-
matchArithmeticLogic8Instruction_$51($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51>;
|
|
3028
|
-
matchArithmeticLogic8Instruction_$51_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51_1>;
|
|
3029
|
-
matchArithmeticLogic8Instruction_$51_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$51_2>;
|
|
3030
|
-
matchArithmeticLogic8Instruction_$52($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$52>;
|
|
3031
|
-
matchArithmeticLogic8Instruction_$53($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53>;
|
|
3032
|
-
matchArithmeticLogic8Instruction_$53_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53_1>;
|
|
3033
|
-
matchArithmeticLogic8Instruction_$53_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$53_2>;
|
|
3034
|
-
matchArithmeticLogic8Instruction_$54($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$54>;
|
|
3035
|
-
matchArithmeticLogic8Instruction_$55($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$55>;
|
|
3036
2717
|
matchIncrementDecrement8Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction>;
|
|
3037
2718
|
matchIncrementDecrement8Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_1>;
|
|
3038
2719
|
matchIncrementDecrement8Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_2>;
|
|
@@ -3042,18 +2723,6 @@ export declare class Parser {
|
|
|
3042
2723
|
matchIncrementDecrement8Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_6>;
|
|
3043
2724
|
matchIncrementDecrement8Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_7>;
|
|
3044
2725
|
matchIncrementDecrement8Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_8>;
|
|
3045
|
-
matchIncrementDecrement8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0>;
|
|
3046
|
-
matchIncrementDecrement8Instruction_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0_1>;
|
|
3047
|
-
matchIncrementDecrement8Instruction_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$0_2>;
|
|
3048
|
-
matchIncrementDecrement8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1>;
|
|
3049
|
-
matchIncrementDecrement8Instruction_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1_1>;
|
|
3050
|
-
matchIncrementDecrement8Instruction_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$1_2>;
|
|
3051
|
-
matchIncrementDecrement8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2>;
|
|
3052
|
-
matchIncrementDecrement8Instruction_$2_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2_1>;
|
|
3053
|
-
matchIncrementDecrement8Instruction_$2_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$2_2>;
|
|
3054
|
-
matchIncrementDecrement8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3>;
|
|
3055
|
-
matchIncrementDecrement8Instruction_$3_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3_1>;
|
|
3056
|
-
matchIncrementDecrement8Instruction_$3_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_$3_2>;
|
|
3057
2726
|
matchGeneralPurposeArithmeticInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction>;
|
|
3058
2727
|
matchGeneralPurposeArithmeticInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_1>;
|
|
3059
2728
|
matchGeneralPurposeArithmeticInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_2>;
|
|
@@ -3113,48 +2782,6 @@ export declare class Parser {
|
|
|
3113
2782
|
matchRotateShiftInstruction_32($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_32>;
|
|
3114
2783
|
matchRotateShiftInstruction_33($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_33>;
|
|
3115
2784
|
matchRotateShiftInstruction_34($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_34>;
|
|
3116
|
-
matchRotateShiftInstruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0>;
|
|
3117
|
-
matchRotateShiftInstruction_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0_1>;
|
|
3118
|
-
matchRotateShiftInstruction_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$0_2>;
|
|
3119
|
-
matchRotateShiftInstruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1>;
|
|
3120
|
-
matchRotateShiftInstruction_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1_1>;
|
|
3121
|
-
matchRotateShiftInstruction_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$1_2>;
|
|
3122
|
-
matchRotateShiftInstruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2>;
|
|
3123
|
-
matchRotateShiftInstruction_$2_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2_1>;
|
|
3124
|
-
matchRotateShiftInstruction_$2_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$2_2>;
|
|
3125
|
-
matchRotateShiftInstruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3>;
|
|
3126
|
-
matchRotateShiftInstruction_$3_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3_1>;
|
|
3127
|
-
matchRotateShiftInstruction_$3_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$3_2>;
|
|
3128
|
-
matchRotateShiftInstruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4>;
|
|
3129
|
-
matchRotateShiftInstruction_$4_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4_1>;
|
|
3130
|
-
matchRotateShiftInstruction_$4_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$4_2>;
|
|
3131
|
-
matchRotateShiftInstruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5>;
|
|
3132
|
-
matchRotateShiftInstruction_$5_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5_1>;
|
|
3133
|
-
matchRotateShiftInstruction_$5_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$5_2>;
|
|
3134
|
-
matchRotateShiftInstruction_$6($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6>;
|
|
3135
|
-
matchRotateShiftInstruction_$6_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6_1>;
|
|
3136
|
-
matchRotateShiftInstruction_$6_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$6_2>;
|
|
3137
|
-
matchRotateShiftInstruction_$7($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7>;
|
|
3138
|
-
matchRotateShiftInstruction_$7_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7_1>;
|
|
3139
|
-
matchRotateShiftInstruction_$7_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$7_2>;
|
|
3140
|
-
matchRotateShiftInstruction_$8($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8>;
|
|
3141
|
-
matchRotateShiftInstruction_$8_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8_1>;
|
|
3142
|
-
matchRotateShiftInstruction_$8_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$8_2>;
|
|
3143
|
-
matchRotateShiftInstruction_$9($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9>;
|
|
3144
|
-
matchRotateShiftInstruction_$9_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9_1>;
|
|
3145
|
-
matchRotateShiftInstruction_$9_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$9_2>;
|
|
3146
|
-
matchRotateShiftInstruction_$10($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10>;
|
|
3147
|
-
matchRotateShiftInstruction_$10_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10_1>;
|
|
3148
|
-
matchRotateShiftInstruction_$10_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$10_2>;
|
|
3149
|
-
matchRotateShiftInstruction_$11($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11>;
|
|
3150
|
-
matchRotateShiftInstruction_$11_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11_1>;
|
|
3151
|
-
matchRotateShiftInstruction_$11_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$11_2>;
|
|
3152
|
-
matchRotateShiftInstruction_$12($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12>;
|
|
3153
|
-
matchRotateShiftInstruction_$12_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12_1>;
|
|
3154
|
-
matchRotateShiftInstruction_$12_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$12_2>;
|
|
3155
|
-
matchRotateShiftInstruction_$13($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13>;
|
|
3156
|
-
matchRotateShiftInstruction_$13_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13_1>;
|
|
3157
|
-
matchRotateShiftInstruction_$13_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_$13_2>;
|
|
3158
2785
|
matchBitManipulationInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction>;
|
|
3159
2786
|
matchBitManipulationInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_1>;
|
|
3160
2787
|
matchBitManipulationInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_2>;
|
|
@@ -3168,24 +2795,6 @@ export declare class Parser {
|
|
|
3168
2795
|
matchBitManipulationInstruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_10>;
|
|
3169
2796
|
matchBitManipulationInstruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_11>;
|
|
3170
2797
|
matchBitManipulationInstruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_12>;
|
|
3171
|
-
matchBitManipulationInstruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0>;
|
|
3172
|
-
matchBitManipulationInstruction_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0_1>;
|
|
3173
|
-
matchBitManipulationInstruction_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$0_2>;
|
|
3174
|
-
matchBitManipulationInstruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1>;
|
|
3175
|
-
matchBitManipulationInstruction_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1_1>;
|
|
3176
|
-
matchBitManipulationInstruction_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$1_2>;
|
|
3177
|
-
matchBitManipulationInstruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2>;
|
|
3178
|
-
matchBitManipulationInstruction_$2_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2_1>;
|
|
3179
|
-
matchBitManipulationInstruction_$2_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$2_2>;
|
|
3180
|
-
matchBitManipulationInstruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3>;
|
|
3181
|
-
matchBitManipulationInstruction_$3_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3_1>;
|
|
3182
|
-
matchBitManipulationInstruction_$3_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$3_2>;
|
|
3183
|
-
matchBitManipulationInstruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4>;
|
|
3184
|
-
matchBitManipulationInstruction_$4_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4_1>;
|
|
3185
|
-
matchBitManipulationInstruction_$4_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$4_2>;
|
|
3186
|
-
matchBitManipulationInstruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5>;
|
|
3187
|
-
matchBitManipulationInstruction_$5_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5_1>;
|
|
3188
|
-
matchBitManipulationInstruction_$5_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_$5_2>;
|
|
3189
2798
|
matchOffset($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset>;
|
|
3190
2799
|
matchOffset_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset_1>;
|
|
3191
2800
|
matchOffset_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset_2>;
|
|
@@ -3260,16 +2869,16 @@ export declare class Parser {
|
|
|
3260
2869
|
matchSimpleEscapeSequence_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<SimpleEscapeSequence_$0_2>;
|
|
3261
2870
|
matchOctalEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<OctalEscapeSequence>;
|
|
3262
2871
|
matchHexadecimalEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<HexadecimalEscapeSequence>;
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
2872
|
+
matchNoQuoteChar($$dpth: number, $$cr?: ErrorTracker): Nullable<NoQuoteChar>;
|
|
2873
|
+
matchNoDoubleQuoteChar($$dpth: number, $$cr?: ErrorTracker): Nullable<NoDoubleQuoteChar>;
|
|
2874
|
+
matchQuottedStr($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr>;
|
|
2875
|
+
matchQuottedStr_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr_$0>;
|
|
2876
|
+
matchQuottedStr_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr_$0_1>;
|
|
2877
|
+
matchQuottedStr_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<QuottedStr_$0_2>;
|
|
2878
|
+
matchDoubleQuottedStr($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr>;
|
|
2879
|
+
matchDoubleQuottedStr_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr_$0>;
|
|
2880
|
+
matchDoubleQuottedStr_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr_$0_1>;
|
|
2881
|
+
matchDoubleQuottedStr_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<DoubleQuottedStr_$0_2>;
|
|
3273
2882
|
matchComment($$dpth: number, $$cr?: ErrorTracker): Nullable<Comment>;
|
|
3274
2883
|
matchOriginDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<OriginDirective>;
|
|
3275
2884
|
matchFilename($$dpth: number, $$cr?: ErrorTracker): Nullable<Filename>;
|
|
@@ -3279,6 +2888,7 @@ export declare class Parser {
|
|
|
3279
2888
|
matchOutputDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputDirective>;
|
|
3280
2889
|
matchOutputDirective_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputDirective_$0>;
|
|
3281
2890
|
matchDeviceDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<DeviceDirective>;
|
|
2891
|
+
matchEndDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<EndDirective>;
|
|
3282
2892
|
test(): boolean;
|
|
3283
2893
|
parse(): ParseResult;
|
|
3284
2894
|
mark(): PosInfo;
|