@andrivet/z80-assembler 1.3.1 → 1.4.0

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.
Files changed (197) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintignore +3 -0
  3. package/.eslintrc.json +35 -0
  4. package/.github/workflows/node.js.yml +47 -0
  5. package/.prettierignore +3 -0
  6. package/.prettierrc +3 -0
  7. package/.vscode/extensions.json +7 -0
  8. package/README.md +53 -27
  9. package/apps/.gitkeep +0 -0
  10. package/apps/z80-assembler-app/.eslintrc.json +18 -0
  11. package/apps/z80-assembler-app/index.html +16 -0
  12. package/apps/z80-assembler-app/postcss.config.js +24 -0
  13. package/apps/z80-assembler-app/project.json +70 -0
  14. package/apps/z80-assembler-app/public/favicon.ico +0 -0
  15. package/apps/z80-assembler-app/public/logo.png +0 -0
  16. package/apps/z80-assembler-app/public/logo192.png +0 -0
  17. package/apps/z80-assembler-app/public/logo512.png +0 -0
  18. package/apps/z80-assembler-app/public/manifest.json +25 -0
  19. package/apps/z80-assembler-app/public/robots.txt +3 -0
  20. package/apps/z80-assembler-app/src/app/app.module.css +0 -0
  21. package/apps/z80-assembler-app/src/app/app.tsx +122 -0
  22. package/apps/z80-assembler-app/src/app/binary.tsx +39 -0
  23. package/apps/z80-assembler-app/src/app/editor.tsx +228 -0
  24. package/apps/z80-assembler-app/src/app/errors.tsx +31 -0
  25. package/apps/z80-assembler-app/src/app/footer.tsx +20 -0
  26. package/apps/z80-assembler-app/src/app/header.tsx +57 -0
  27. package/apps/z80-assembler-app/src/app/misc.ts +13 -0
  28. package/apps/z80-assembler-app/src/app/opcodes.tsx +335 -0
  29. package/apps/z80-assembler-app/src/assets/.gitkeep +0 -0
  30. package/apps/z80-assembler-app/src/assets/images/logo192.png +0 -0
  31. package/apps/z80-assembler-app/src/main.tsx +22 -0
  32. package/apps/z80-assembler-app/src/styles.css +8 -0
  33. package/apps/z80-assembler-app/tailwind.config.js +28 -0
  34. package/apps/z80-assembler-app/tsconfig.app.json +22 -0
  35. package/apps/z80-assembler-app/tsconfig.json +21 -0
  36. package/apps/z80-assembler-app/tsconfig.spec.json +23 -0
  37. package/apps/z80-assembler-app/vite.config.ts +64 -0
  38. package/assets/images/compile.png +0 -0
  39. package/assets/images/logo.png +0 -0
  40. package/assets/images/menu.png +0 -0
  41. package/assets/images/opcodes-load8.png +0 -0
  42. package/assets/images/opcodes.png +0 -0
  43. package/assets/images/open-dir.png +0 -0
  44. package/assets/images/z80-assembler-app.png +0 -0
  45. package/docs/assembly.md +551 -0
  46. package/docs/images/ZX81-0x00.png +0 -0
  47. package/docs/images/ZX81-0x0B.png +0 -0
  48. package/docs/images/ZX81-0x0C.png +0 -0
  49. package/docs/images/ZX81-0x0D.png +0 -0
  50. package/docs/images/ZX81-0x0E.png +0 -0
  51. package/docs/images/ZX81-0x0F.png +0 -0
  52. package/docs/images/ZX81-0x10.png +0 -0
  53. package/docs/images/ZX81-0x11.png +0 -0
  54. package/docs/images/ZX81-0x12.png +0 -0
  55. package/docs/images/ZX81-0x13.png +0 -0
  56. package/docs/images/ZX81-0x14.png +0 -0
  57. package/docs/images/ZX81-0x15.png +0 -0
  58. package/docs/images/ZX81-0x16.png +0 -0
  59. package/docs/images/ZX81-0x17.png +0 -0
  60. package/docs/images/ZX81-0x18.png +0 -0
  61. package/docs/images/ZX81-0x19.png +0 -0
  62. package/docs/images/ZX81-0x1A.png +0 -0
  63. package/docs/images/ZX81-0x1B.png +0 -0
  64. package/docs/images/ZX81-0x1C.png +0 -0
  65. package/docs/images/ZX81-0x1D.png +0 -0
  66. package/docs/images/ZX81-0x1E.png +0 -0
  67. package/docs/images/ZX81-0x1F.png +0 -0
  68. package/docs/images/ZX81-0x20.png +0 -0
  69. package/docs/images/ZX81-0x21.png +0 -0
  70. package/docs/images/ZX81-0x22.png +0 -0
  71. package/docs/images/ZX81-0x23.png +0 -0
  72. package/docs/images/ZX81-0x24.png +0 -0
  73. package/docs/images/ZX81-0x25.png +0 -0
  74. package/docs/images/ZX81-0x26.png +0 -0
  75. package/docs/images/ZX81-0x27.png +0 -0
  76. package/docs/images/ZX81-0x28.png +0 -0
  77. package/docs/images/ZX81-0x29.png +0 -0
  78. package/docs/images/ZX81-0x2A.png +0 -0
  79. package/docs/images/ZX81-0x2B.png +0 -0
  80. package/docs/images/ZX81-0x2C.png +0 -0
  81. package/docs/images/ZX81-0x2D.png +0 -0
  82. package/docs/images/ZX81-0x2E.png +0 -0
  83. package/docs/images/ZX81-0x2F.png +0 -0
  84. package/docs/images/ZX81-0x30.png +0 -0
  85. package/docs/images/ZX81-0x31.png +0 -0
  86. package/docs/images/ZX81-0x32.png +0 -0
  87. package/docs/images/ZX81-0x33.png +0 -0
  88. package/docs/images/ZX81-0x34.png +0 -0
  89. package/docs/images/ZX81-0x35.png +0 -0
  90. package/docs/images/ZX81-0x36.png +0 -0
  91. package/docs/images/ZX81-0x37.png +0 -0
  92. package/docs/images/ZX81-0x38.png +0 -0
  93. package/docs/images/ZX81-0x39.png +0 -0
  94. package/docs/images/ZX81-0x3A.png +0 -0
  95. package/docs/images/ZX81-0x3B.png +0 -0
  96. package/docs/images/ZX81-0x3C.png +0 -0
  97. package/docs/images/ZX81-0x3D.png +0 -0
  98. package/docs/images/ZX81-0x3E.png +0 -0
  99. package/docs/images/ZX81-0x3F.png +0 -0
  100. package/docs/images/ZX81-0x80.png +0 -0
  101. package/docs/images/ZX81-0x8B.png +0 -0
  102. package/docs/images/ZX81-0x8C.png +0 -0
  103. package/docs/images/ZX81-0x8D.png +0 -0
  104. package/docs/images/ZX81-0x8E.png +0 -0
  105. package/docs/images/ZX81-0x8F.png +0 -0
  106. package/docs/images/ZX81-0x90.png +0 -0
  107. package/docs/images/ZX81-0x91.png +0 -0
  108. package/docs/images/ZX81-0x92.png +0 -0
  109. package/docs/images/ZX81-0x93.png +0 -0
  110. package/docs/images/ZX81-0x94.png +0 -0
  111. package/docs/images/ZX81-0x95.png +0 -0
  112. package/docs/images/ZX81-0x96.png +0 -0
  113. package/docs/images/ZX81-0x97.png +0 -0
  114. package/docs/images/ZX81-0x98.png +0 -0
  115. package/docs/images/ZX81-0x99.png +0 -0
  116. package/docs/images/ZX81-0x9A.png +0 -0
  117. package/docs/images/ZX81-0x9B.png +0 -0
  118. package/docs/images/ZX81-0x9C.png +0 -0
  119. package/docs/images/ZX81-0x9D.png +0 -0
  120. package/docs/images/ZX81-0x9E.png +0 -0
  121. package/docs/images/ZX81-0x9F.png +0 -0
  122. package/docs/images/ZX81-0xA0.png +0 -0
  123. package/docs/images/ZX81-0xA1.png +0 -0
  124. package/docs/images/ZX81-0xA2.png +0 -0
  125. package/docs/images/ZX81-0xA3.png +0 -0
  126. package/docs/images/ZX81-0xA4.png +0 -0
  127. package/docs/images/ZX81-0xA5.png +0 -0
  128. package/docs/images/ZX81-0xA6.png +0 -0
  129. package/docs/images/ZX81-0xA7.png +0 -0
  130. package/docs/images/ZX81-0xA8.png +0 -0
  131. package/docs/images/ZX81-0xA9.png +0 -0
  132. package/docs/images/ZX81-0xAA.png +0 -0
  133. package/docs/images/ZX81-0xAB.png +0 -0
  134. package/docs/images/ZX81-0xAC.png +0 -0
  135. package/docs/images/ZX81-0xAD.png +0 -0
  136. package/docs/images/ZX81-0xAE.png +0 -0
  137. package/docs/images/ZX81-0xAF.png +0 -0
  138. package/docs/images/ZX81-0xB0.png +0 -0
  139. package/docs/images/ZX81-0xB1.png +0 -0
  140. package/docs/images/ZX81-0xB2.png +0 -0
  141. package/docs/images/ZX81-0xB3.png +0 -0
  142. package/docs/images/ZX81-0xB4.png +0 -0
  143. package/docs/images/ZX81-0xB5.png +0 -0
  144. package/docs/images/ZX81-0xB6.png +0 -0
  145. package/docs/images/ZX81-0xB7.png +0 -0
  146. package/docs/images/ZX81-0xB8.png +0 -0
  147. package/docs/images/ZX81-0xB9.png +0 -0
  148. package/docs/images/ZX81-0xBA.png +0 -0
  149. package/docs/images/ZX81-0xBB.png +0 -0
  150. package/docs/images/ZX81-0xBC.png +0 -0
  151. package/docs/images/ZX81-0xBD.png +0 -0
  152. package/docs/images/ZX81-0xBE.png +0 -0
  153. package/docs/images/ZX81-0xBF.png +0 -0
  154. package/libs/.gitkeep +0 -0
  155. package/libs/z80-assembler/.eslintrc.json +18 -0
  156. package/libs/z80-assembler/package.json +20 -0
  157. package/libs/z80-assembler/project.json +35 -0
  158. package/{CHANGELOG.md → libs/z80-assembler/public/CHANGELOG.md} +5 -1
  159. package/libs/z80-assembler/public/README.md +54 -0
  160. package/{index.d.ts → libs/z80-assembler/src/index.ts} +1 -1
  161. package/libs/z80-assembler/src/lib/assets/code/basic-end.zx81 +4 -0
  162. package/libs/z80-assembler/src/lib/assets/code/basic-line1.zx81 +4 -0
  163. package/libs/z80-assembler/src/lib/assets/code/basic-line2.zx81 +9 -0
  164. package/libs/z80-assembler/src/lib/assets/code/characters.zx81 +190 -0
  165. package/libs/z80-assembler/src/lib/assets/code/display.zx81 +50 -0
  166. package/libs/z80-assembler/src/lib/assets/code/system-variables.zx81 +46 -0
  167. package/{lib/compiler/Assets.d.ts → libs/z80-assembler/src/lib/compiler/Assets.ts} +6 -1
  168. package/libs/z80-assembler/src/lib/compiler/Ast.ts +545 -0
  169. package/libs/z80-assembler/src/lib/compiler/Compiler.test.ts +2141 -0
  170. package/libs/z80-assembler/src/lib/compiler/Compiler.ts +185 -0
  171. package/libs/z80-assembler/src/lib/compiler/Formatter.ts +43 -0
  172. package/libs/z80-assembler/src/lib/compiler/Generator.ts +255 -0
  173. package/libs/z80-assembler/src/lib/compiler/Labels.ts +165 -0
  174. package/libs/z80-assembler/src/lib/grammar/LowLevel.ts +163 -0
  175. package/libs/z80-assembler/src/lib/grammar/Parse.ts +128 -0
  176. package/libs/z80-assembler/src/lib/grammar/z80.peg +1252 -0
  177. package/libs/z80-assembler/src/lib/grammar/z80.ts +10649 -0
  178. package/libs/z80-assembler/src/lib/types/Error.ts +105 -0
  179. package/{lib/types/Types.d.ts → libs/z80-assembler/src/lib/types/Types.ts} +26 -11
  180. package/libs/z80-assembler/tsconfig.json +23 -0
  181. package/libs/z80-assembler/tsconfig.lib.json +10 -0
  182. package/libs/z80-assembler/tsconfig.spec.json +19 -0
  183. package/libs/z80-assembler/vite.config.ts +58 -0
  184. package/nx.json +57 -0
  185. package/package.json +52 -14
  186. package/tsconfig.base.json +22 -0
  187. package/index.js +0 -312
  188. package/index.mjs +0 -6441
  189. package/lib/compiler/Ast.d.ts +0 -210
  190. package/lib/compiler/Compiler.d.ts +0 -53
  191. package/lib/compiler/Formatter.d.ts +0 -23
  192. package/lib/compiler/Generator.d.ts +0 -40
  193. package/lib/compiler/Labels.d.ts +0 -47
  194. package/lib/grammar/LowLevel.d.ts +0 -68
  195. package/lib/grammar/Parse.d.ts +0 -48
  196. package/lib/grammar/z80.d.ts +0 -2938
  197. package/lib/types/Error.d.ts +0 -62
@@ -1,2938 +0,0 @@
1
- import { LinesInfo, Address } from '../types/Types';
2
- import { EvalFunc, AstElements } from '../compiler/Ast';
3
- type Nullable<T> = T | null;
4
- export interface ASTNodeIntf {
5
- kind: ASTKinds;
6
- }
7
- export declare enum ASTKinds {
8
- start = "start",
9
- r_1 = "r_1",
10
- r_2 = "r_2",
11
- r_3 = "r_3",
12
- r_4 = "r_4",
13
- r_5 = "r_5",
14
- r_6 = "r_6",
15
- r_7 = "r_7",
16
- dd_1 = "dd_1",
17
- dd_2 = "dd_2",
18
- dd_3 = "dd_3",
19
- dd_4 = "dd_4",
20
- ss = "ss",
21
- qq_1 = "qq_1",
22
- qq_2 = "qq_2",
23
- qq_3 = "qq_3",
24
- qq_4 = "qq_4",
25
- pp_1 = "pp_1",
26
- pp_2 = "pp_2",
27
- pp_3 = "pp_3",
28
- pp_4 = "pp_4",
29
- rr_1 = "rr_1",
30
- rr_2 = "rr_2",
31
- rr_3 = "rr_3",
32
- rr_4 = "rr_4",
33
- n_1 = "n_1",
34
- n_2 = "n_2",
35
- n_3 = "n_3",
36
- n_4 = "n_4",
37
- nn_1 = "nn_1",
38
- nn_2 = "nn_2",
39
- nn_3 = "nn_3",
40
- nn_4 = "nn_4",
41
- decimal = "decimal",
42
- binary_1 = "binary_1",
43
- binary_2 = "binary_2",
44
- binary_$0_1 = "binary_$0_1",
45
- binary_$0_2 = "binary_$0_2",
46
- octal_1 = "octal_1",
47
- octal_2 = "octal_2",
48
- octal_$0_1 = "octal_$0_1",
49
- octal_$0_2 = "octal_$0_2",
50
- octal_$0_3 = "octal_$0_3",
51
- octal_$1_1 = "octal_$1_1",
52
- octal_$1_2 = "octal_$1_2",
53
- hexadecimal_1 = "hexadecimal_1",
54
- hexadecimal_2 = "hexadecimal_2",
55
- hexadecimal_$0_1 = "hexadecimal_$0_1",
56
- hexadecimal_$0_2 = "hexadecimal_$0_2",
57
- hexadecimal_$0_3 = "hexadecimal_$0_3",
58
- d = "d",
59
- e = "e",
60
- p = "p",
61
- b = "b",
62
- cc_1 = "cc_1",
63
- cc_2 = "cc_2",
64
- cc_3 = "cc_3",
65
- cc_4 = "cc_4",
66
- cc_5 = "cc_5",
67
- cc_6 = "cc_6",
68
- cc_7 = "cc_7",
69
- cc_8 = "cc_8",
70
- cc_9 = "cc_9",
71
- jj_1 = "jj_1",
72
- jj_2 = "jj_2",
73
- jj_3 = "jj_3",
74
- jj_4 = "jj_4",
75
- __ = "__",
76
- _ = "_",
77
- eos = "eos",
78
- eol = "eol",
79
- Lines = "Lines",
80
- Line_1 = "Line_1",
81
- Line_2 = "Line_2",
82
- LineEqual = "LineEqual",
83
- LineStatement = "LineStatement",
84
- Statement_1 = "Statement_1",
85
- Statement_2 = "Statement_2",
86
- Statement_3 = "Statement_3",
87
- EqualDirective = "EqualDirective",
88
- Directive_1 = "Directive_1",
89
- Directive_2 = "Directive_2",
90
- Directive_3 = "Directive_3",
91
- Directive_4 = "Directive_4",
92
- Directive_5 = "Directive_5",
93
- ForbiddenNames_1 = "ForbiddenNames_1",
94
- ForbiddenNames_2 = "ForbiddenNames_2",
95
- ForbiddenNames_3 = "ForbiddenNames_3",
96
- ForbiddenNames_4 = "ForbiddenNames_4",
97
- ForbiddenNames_5 = "ForbiddenNames_5",
98
- ForbiddenLabel = "ForbiddenLabel",
99
- Label = "Label",
100
- LabelDeclaration = "LabelDeclaration",
101
- Expression = "Expression",
102
- BitwiseOrExpression = "BitwiseOrExpression",
103
- BitwiseOrExpression_$0 = "BitwiseOrExpression_$0",
104
- BitwiseXOrExpression = "BitwiseXOrExpression",
105
- BitwiseXOrExpression_$0 = "BitwiseXOrExpression_$0",
106
- BitwiseAndExpression = "BitwiseAndExpression",
107
- BitwiseAndExpression_$0 = "BitwiseAndExpression_$0",
108
- ShiftExpression = "ShiftExpression",
109
- ShiftExpression_$0 = "ShiftExpression_$0",
110
- ShiftExpression_$0_$0_1 = "ShiftExpression_$0_$0_1",
111
- ShiftExpression_$0_$0_2 = "ShiftExpression_$0_$0_2",
112
- AdditiveExpression = "AdditiveExpression",
113
- AdditiveExpression_$0 = "AdditiveExpression_$0",
114
- AdditiveExpression_$0_$0_1 = "AdditiveExpression_$0_$0_1",
115
- AdditiveExpression_$0_$0_2 = "AdditiveExpression_$0_$0_2",
116
- MultiplicativeExpression = "MultiplicativeExpression",
117
- MultiplicativeExpression_$0 = "MultiplicativeExpression_$0",
118
- MultiplicativeExpression_$0_$0_1 = "MultiplicativeExpression_$0_$0_1",
119
- MultiplicativeExpression_$0_$0_2 = "MultiplicativeExpression_$0_$0_2",
120
- MultiplicativeExpression_$0_$0_3 = "MultiplicativeExpression_$0_$0_3",
121
- UnaryExpression_1 = "UnaryExpression_1",
122
- UnaryExpression_2 = "UnaryExpression_2",
123
- UnaryExpression_$0_1 = "UnaryExpression_$0_1",
124
- UnaryExpression_$0_2 = "UnaryExpression_$0_2",
125
- UnaryExpression_$0_3 = "UnaryExpression_$0_3",
126
- PrimaryExpression_1 = "PrimaryExpression_1",
127
- PrimaryExpression_2 = "PrimaryExpression_2",
128
- PrimaryExpression_3 = "PrimaryExpression_3",
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",
138
- Instruction_1 = "Instruction_1",
139
- Instruction_2 = "Instruction_2",
140
- Instruction_3 = "Instruction_3",
141
- Instruction_4 = "Instruction_4",
142
- Instruction_5 = "Instruction_5",
143
- Instruction_6 = "Instruction_6",
144
- Instruction_7 = "Instruction_7",
145
- Instruction_8 = "Instruction_8",
146
- Instruction_9 = "Instruction_9",
147
- Instruction_10 = "Instruction_10",
148
- Instruction_11 = "Instruction_11",
149
- Instruction_12 = "Instruction_12",
150
- Instruction_13 = "Instruction_13",
151
- Instruction_14 = "Instruction_14",
152
- Instruction_15 = "Instruction_15",
153
- Instruction_16 = "Instruction_16",
154
- Load8Instruction_1 = "Load8Instruction_1",
155
- Load8Instruction_2 = "Load8Instruction_2",
156
- Load8Instruction_3 = "Load8Instruction_3",
157
- Load8Instruction_4 = "Load8Instruction_4",
158
- Load8Instruction_5 = "Load8Instruction_5",
159
- Load8Instruction_6 = "Load8Instruction_6",
160
- Load8Instruction_7 = "Load8Instruction_7",
161
- Load8Instruction_8 = "Load8Instruction_8",
162
- Load8Instruction_9 = "Load8Instruction_9",
163
- Load8Instruction_10 = "Load8Instruction_10",
164
- Load8Instruction_11 = "Load8Instruction_11",
165
- Load8Instruction_12 = "Load8Instruction_12",
166
- Load8Instruction_13 = "Load8Instruction_13",
167
- Load8Instruction_14 = "Load8Instruction_14",
168
- Load8Instruction_15 = "Load8Instruction_15",
169
- Load8Instruction_16 = "Load8Instruction_16",
170
- Load8Instruction_17 = "Load8Instruction_17",
171
- Load8Instruction_18 = "Load8Instruction_18",
172
- Load8Instruction_19 = "Load8Instruction_19",
173
- Load8Instruction_20 = "Load8Instruction_20",
174
- Load8Instruction_21 = "Load8Instruction_21",
175
- Load16Instruction_1 = "Load16Instruction_1",
176
- Load16Instruction_2 = "Load16Instruction_2",
177
- Load16Instruction_3 = "Load16Instruction_3",
178
- Load16Instruction_4 = "Load16Instruction_4",
179
- Load16Instruction_5 = "Load16Instruction_5",
180
- Load16Instruction_6 = "Load16Instruction_6",
181
- Load16Instruction_7 = "Load16Instruction_7",
182
- Load16Instruction_8 = "Load16Instruction_8",
183
- Load16Instruction_9 = "Load16Instruction_9",
184
- Load16Instruction_10 = "Load16Instruction_10",
185
- Load16Instruction_11 = "Load16Instruction_11",
186
- Load16Instruction_12 = "Load16Instruction_12",
187
- Load16Instruction_13 = "Load16Instruction_13",
188
- Load16Instruction_14 = "Load16Instruction_14",
189
- Load16Instruction_15 = "Load16Instruction_15",
190
- Load16Instruction_16 = "Load16Instruction_16",
191
- Load16Instruction_17 = "Load16Instruction_17",
192
- Load16Instruction_18 = "Load16Instruction_18",
193
- Load16Instruction_19 = "Load16Instruction_19",
194
- Load16Instruction_20 = "Load16Instruction_20",
195
- ExchangeInstruction_1 = "ExchangeInstruction_1",
196
- ExchangeInstruction_2 = "ExchangeInstruction_2",
197
- ExchangeInstruction_3 = "ExchangeInstruction_3",
198
- ExchangeInstruction_4 = "ExchangeInstruction_4",
199
- ExchangeInstruction_5 = "ExchangeInstruction_5",
200
- ExchangeInstruction_6 = "ExchangeInstruction_6",
201
- BlockInstruction_1 = "BlockInstruction_1",
202
- BlockInstruction_2 = "BlockInstruction_2",
203
- BlockInstruction_3 = "BlockInstruction_3",
204
- BlockInstruction_4 = "BlockInstruction_4",
205
- BlockInstruction_5 = "BlockInstruction_5",
206
- BlockInstruction_6 = "BlockInstruction_6",
207
- BlockInstruction_7 = "BlockInstruction_7",
208
- BlockInstruction_8 = "BlockInstruction_8",
209
- ArithmeticLogic8Instruction_1 = "ArithmeticLogic8Instruction_1",
210
- ArithmeticLogic8Instruction_2 = "ArithmeticLogic8Instruction_2",
211
- ArithmeticLogic8Instruction_3 = "ArithmeticLogic8Instruction_3",
212
- ArithmeticLogic8Instruction_4 = "ArithmeticLogic8Instruction_4",
213
- ArithmeticLogic8Instruction_5 = "ArithmeticLogic8Instruction_5",
214
- ArithmeticLogic8Instruction_6 = "ArithmeticLogic8Instruction_6",
215
- ArithmeticLogic8Instruction_7 = "ArithmeticLogic8Instruction_7",
216
- ArithmeticLogic8Instruction_8 = "ArithmeticLogic8Instruction_8",
217
- ArithmeticLogic8Instruction_9 = "ArithmeticLogic8Instruction_9",
218
- ArithmeticLogic8Instruction_10 = "ArithmeticLogic8Instruction_10",
219
- ArithmeticLogic8Instruction_11 = "ArithmeticLogic8Instruction_11",
220
- ArithmeticLogic8Instruction_12 = "ArithmeticLogic8Instruction_12",
221
- ArithmeticLogic8Instruction_13 = "ArithmeticLogic8Instruction_13",
222
- ArithmeticLogic8Instruction_14 = "ArithmeticLogic8Instruction_14",
223
- ArithmeticLogic8Instruction_15 = "ArithmeticLogic8Instruction_15",
224
- ArithmeticLogic8Instruction_16 = "ArithmeticLogic8Instruction_16",
225
- ArithmeticLogic8Instruction_17 = "ArithmeticLogic8Instruction_17",
226
- ArithmeticLogic8Instruction_18 = "ArithmeticLogic8Instruction_18",
227
- ArithmeticLogic8Instruction_19 = "ArithmeticLogic8Instruction_19",
228
- ArithmeticLogic8Instruction_20 = "ArithmeticLogic8Instruction_20",
229
- ArithmeticLogic8Instruction_21 = "ArithmeticLogic8Instruction_21",
230
- ArithmeticLogic8Instruction_22 = "ArithmeticLogic8Instruction_22",
231
- ArithmeticLogic8Instruction_23 = "ArithmeticLogic8Instruction_23",
232
- ArithmeticLogic8Instruction_24 = "ArithmeticLogic8Instruction_24",
233
- ArithmeticLogic8Instruction_25 = "ArithmeticLogic8Instruction_25",
234
- ArithmeticLogic8Instruction_26 = "ArithmeticLogic8Instruction_26",
235
- ArithmeticLogic8Instruction_27 = "ArithmeticLogic8Instruction_27",
236
- ArithmeticLogic8Instruction_28 = "ArithmeticLogic8Instruction_28",
237
- ArithmeticLogic8Instruction_29 = "ArithmeticLogic8Instruction_29",
238
- ArithmeticLogic8Instruction_30 = "ArithmeticLogic8Instruction_30",
239
- ArithmeticLogic8Instruction_31 = "ArithmeticLogic8Instruction_31",
240
- ArithmeticLogic8Instruction_32 = "ArithmeticLogic8Instruction_32",
241
- ArithmeticLogic8Instruction_33 = "ArithmeticLogic8Instruction_33",
242
- ArithmeticLogic8Instruction_34 = "ArithmeticLogic8Instruction_34",
243
- ArithmeticLogic8Instruction_35 = "ArithmeticLogic8Instruction_35",
244
- ArithmeticLogic8Instruction_36 = "ArithmeticLogic8Instruction_36",
245
- ArithmeticLogic8Instruction_37 = "ArithmeticLogic8Instruction_37",
246
- ArithmeticLogic8Instruction_38 = "ArithmeticLogic8Instruction_38",
247
- ArithmeticLogic8Instruction_39 = "ArithmeticLogic8Instruction_39",
248
- ArithmeticLogic8Instruction_40 = "ArithmeticLogic8Instruction_40",
249
- ArithmeticLogic8Instruction_$0 = "ArithmeticLogic8Instruction_$0",
250
- ArithmeticLogic8Instruction_$1 = "ArithmeticLogic8Instruction_$1",
251
- ArithmeticLogic8Instruction_$2 = "ArithmeticLogic8Instruction_$2",
252
- ArithmeticLogic8Instruction_$3 = "ArithmeticLogic8Instruction_$3",
253
- ArithmeticLogic8Instruction_$4 = "ArithmeticLogic8Instruction_$4",
254
- ArithmeticLogic8Instruction_$5 = "ArithmeticLogic8Instruction_$5",
255
- ArithmeticLogic8Instruction_$6 = "ArithmeticLogic8Instruction_$6",
256
- ArithmeticLogic8Instruction_$7 = "ArithmeticLogic8Instruction_$7",
257
- ArithmeticLogic8Instruction_$8 = "ArithmeticLogic8Instruction_$8",
258
- ArithmeticLogic8Instruction_$9 = "ArithmeticLogic8Instruction_$9",
259
- ArithmeticLogic8Instruction_$10 = "ArithmeticLogic8Instruction_$10",
260
- ArithmeticLogic8Instruction_$11 = "ArithmeticLogic8Instruction_$11",
261
- ArithmeticLogic8Instruction_$12 = "ArithmeticLogic8Instruction_$12",
262
- ArithmeticLogic8Instruction_$13 = "ArithmeticLogic8Instruction_$13",
263
- ArithmeticLogic8Instruction_$14 = "ArithmeticLogic8Instruction_$14",
264
- ArithmeticLogic8Instruction_$15 = "ArithmeticLogic8Instruction_$15",
265
- ArithmeticLogic8Instruction_$16 = "ArithmeticLogic8Instruction_$16",
266
- ArithmeticLogic8Instruction_$17 = "ArithmeticLogic8Instruction_$17",
267
- ArithmeticLogic8Instruction_$18 = "ArithmeticLogic8Instruction_$18",
268
- ArithmeticLogic8Instruction_$19 = "ArithmeticLogic8Instruction_$19",
269
- ArithmeticLogic8Instruction_$20 = "ArithmeticLogic8Instruction_$20",
270
- ArithmeticLogic8Instruction_$21 = "ArithmeticLogic8Instruction_$21",
271
- ArithmeticLogic8Instruction_$22 = "ArithmeticLogic8Instruction_$22",
272
- ArithmeticLogic8Instruction_$23 = "ArithmeticLogic8Instruction_$23",
273
- ArithmeticLogic8Instruction_$24 = "ArithmeticLogic8Instruction_$24",
274
- ArithmeticLogic8Instruction_$25 = "ArithmeticLogic8Instruction_$25",
275
- ArithmeticLogic8Instruction_$26 = "ArithmeticLogic8Instruction_$26",
276
- ArithmeticLogic8Instruction_$27 = "ArithmeticLogic8Instruction_$27",
277
- ArithmeticLogic8Instruction_$28 = "ArithmeticLogic8Instruction_$28",
278
- ArithmeticLogic8Instruction_$29 = "ArithmeticLogic8Instruction_$29",
279
- ArithmeticLogic8Instruction_$30 = "ArithmeticLogic8Instruction_$30",
280
- ArithmeticLogic8Instruction_$31 = "ArithmeticLogic8Instruction_$31",
281
- ArithmeticLogic8Instruction_$32 = "ArithmeticLogic8Instruction_$32",
282
- ArithmeticLogic8Instruction_$33 = "ArithmeticLogic8Instruction_$33",
283
- ArithmeticLogic8Instruction_$34 = "ArithmeticLogic8Instruction_$34",
284
- ArithmeticLogic8Instruction_$35 = "ArithmeticLogic8Instruction_$35",
285
- ArithmeticLogic8Instruction_$36 = "ArithmeticLogic8Instruction_$36",
286
- ArithmeticLogic8Instruction_$37 = "ArithmeticLogic8Instruction_$37",
287
- ArithmeticLogic8Instruction_$38 = "ArithmeticLogic8Instruction_$38",
288
- ArithmeticLogic8Instruction_$39 = "ArithmeticLogic8Instruction_$39",
289
- IncrementDecrement8Instruction_1 = "IncrementDecrement8Instruction_1",
290
- IncrementDecrement8Instruction_2 = "IncrementDecrement8Instruction_2",
291
- IncrementDecrement8Instruction_3 = "IncrementDecrement8Instruction_3",
292
- IncrementDecrement8Instruction_4 = "IncrementDecrement8Instruction_4",
293
- IncrementDecrement8Instruction_5 = "IncrementDecrement8Instruction_5",
294
- IncrementDecrement8Instruction_6 = "IncrementDecrement8Instruction_6",
295
- IncrementDecrement8Instruction_7 = "IncrementDecrement8Instruction_7",
296
- IncrementDecrement8Instruction_8 = "IncrementDecrement8Instruction_8",
297
- GeneralPurposeArithmeticInstruction_1 = "GeneralPurposeArithmeticInstruction_1",
298
- GeneralPurposeArithmeticInstruction_2 = "GeneralPurposeArithmeticInstruction_2",
299
- GeneralPurposeArithmeticInstruction_3 = "GeneralPurposeArithmeticInstruction_3",
300
- GeneralPurposeArithmeticInstruction_4 = "GeneralPurposeArithmeticInstruction_4",
301
- GeneralPurposeArithmeticInstruction_5 = "GeneralPurposeArithmeticInstruction_5",
302
- CpuControlGroupInstruction_1 = "CpuControlGroupInstruction_1",
303
- CpuControlGroupInstruction_2 = "CpuControlGroupInstruction_2",
304
- CpuControlGroupInstruction_3 = "CpuControlGroupInstruction_3",
305
- CpuControlGroupInstruction_4 = "CpuControlGroupInstruction_4",
306
- CpuControlGroupInstruction_5 = "CpuControlGroupInstruction_5",
307
- ArithmeticLogic16Instruction_1 = "ArithmeticLogic16Instruction_1",
308
- ArithmeticLogic16Instruction_2 = "ArithmeticLogic16Instruction_2",
309
- ArithmeticLogic16Instruction_3 = "ArithmeticLogic16Instruction_3",
310
- ArithmeticLogic16Instruction_4 = "ArithmeticLogic16Instruction_4",
311
- ArithmeticLogic16Instruction_5 = "ArithmeticLogic16Instruction_5",
312
- ArithmeticLogic16Instruction_6 = "ArithmeticLogic16Instruction_6",
313
- ArithmeticLogic16Instruction_7 = "ArithmeticLogic16Instruction_7",
314
- ArithmeticLogic16Instruction_8 = "ArithmeticLogic16Instruction_8",
315
- ArithmeticLogic16Instruction_9 = "ArithmeticLogic16Instruction_9",
316
- ArithmeticLogic16Instruction_10 = "ArithmeticLogic16Instruction_10",
317
- ArithmeticLogic16Instruction_11 = "ArithmeticLogic16Instruction_11",
318
- RotateShiftInstruction_1 = "RotateShiftInstruction_1",
319
- RotateShiftInstruction_2 = "RotateShiftInstruction_2",
320
- RotateShiftInstruction_3 = "RotateShiftInstruction_3",
321
- RotateShiftInstruction_4 = "RotateShiftInstruction_4",
322
- RotateShiftInstruction_5 = "RotateShiftInstruction_5",
323
- RotateShiftInstruction_6 = "RotateShiftInstruction_6",
324
- RotateShiftInstruction_7 = "RotateShiftInstruction_7",
325
- RotateShiftInstruction_8 = "RotateShiftInstruction_8",
326
- RotateShiftInstruction_9 = "RotateShiftInstruction_9",
327
- RotateShiftInstruction_10 = "RotateShiftInstruction_10",
328
- RotateShiftInstruction_11 = "RotateShiftInstruction_11",
329
- RotateShiftInstruction_12 = "RotateShiftInstruction_12",
330
- RotateShiftInstruction_13 = "RotateShiftInstruction_13",
331
- RotateShiftInstruction_14 = "RotateShiftInstruction_14",
332
- RotateShiftInstruction_15 = "RotateShiftInstruction_15",
333
- RotateShiftInstruction_16 = "RotateShiftInstruction_16",
334
- RotateShiftInstruction_17 = "RotateShiftInstruction_17",
335
- RotateShiftInstruction_18 = "RotateShiftInstruction_18",
336
- RotateShiftInstruction_19 = "RotateShiftInstruction_19",
337
- RotateShiftInstruction_20 = "RotateShiftInstruction_20",
338
- RotateShiftInstruction_21 = "RotateShiftInstruction_21",
339
- RotateShiftInstruction_22 = "RotateShiftInstruction_22",
340
- RotateShiftInstruction_23 = "RotateShiftInstruction_23",
341
- RotateShiftInstruction_24 = "RotateShiftInstruction_24",
342
- RotateShiftInstruction_25 = "RotateShiftInstruction_25",
343
- RotateShiftInstruction_26 = "RotateShiftInstruction_26",
344
- RotateShiftInstruction_27 = "RotateShiftInstruction_27",
345
- RotateShiftInstruction_28 = "RotateShiftInstruction_28",
346
- RotateShiftInstruction_29 = "RotateShiftInstruction_29",
347
- RotateShiftInstruction_30 = "RotateShiftInstruction_30",
348
- RotateShiftInstruction_31 = "RotateShiftInstruction_31",
349
- RotateShiftInstruction_32 = "RotateShiftInstruction_32",
350
- RotateShiftInstruction_33 = "RotateShiftInstruction_33",
351
- RotateShiftInstruction_34 = "RotateShiftInstruction_34",
352
- BitManipulationInstruction_1 = "BitManipulationInstruction_1",
353
- BitManipulationInstruction_2 = "BitManipulationInstruction_2",
354
- BitManipulationInstruction_3 = "BitManipulationInstruction_3",
355
- BitManipulationInstruction_4 = "BitManipulationInstruction_4",
356
- BitManipulationInstruction_5 = "BitManipulationInstruction_5",
357
- BitManipulationInstruction_6 = "BitManipulationInstruction_6",
358
- BitManipulationInstruction_7 = "BitManipulationInstruction_7",
359
- BitManipulationInstruction_8 = "BitManipulationInstruction_8",
360
- BitManipulationInstruction_9 = "BitManipulationInstruction_9",
361
- BitManipulationInstruction_10 = "BitManipulationInstruction_10",
362
- BitManipulationInstruction_11 = "BitManipulationInstruction_11",
363
- BitManipulationInstruction_12 = "BitManipulationInstruction_12",
364
- Offset_1 = "Offset_1",
365
- Offset_2 = "Offset_2",
366
- JumpInstruction_1 = "JumpInstruction_1",
367
- JumpInstruction_2 = "JumpInstruction_2",
368
- JumpInstruction_3 = "JumpInstruction_3",
369
- JumpInstruction_4 = "JumpInstruction_4",
370
- JumpInstruction_5 = "JumpInstruction_5",
371
- JumpInstruction_6 = "JumpInstruction_6",
372
- JumpInstruction_7 = "JumpInstruction_7",
373
- JumpInstruction_8 = "JumpInstruction_8",
374
- JumpInstruction_9 = "JumpInstruction_9",
375
- JumpInstruction_10 = "JumpInstruction_10",
376
- JumpInstruction_11 = "JumpInstruction_11",
377
- CallInstruction_1 = "CallInstruction_1",
378
- CallInstruction_2 = "CallInstruction_2",
379
- ReturnInstruction_1 = "ReturnInstruction_1",
380
- ReturnInstruction_2 = "ReturnInstruction_2",
381
- ReturnInstruction_3 = "ReturnInstruction_3",
382
- ReturnInstruction_4 = "ReturnInstruction_4",
383
- ReturnInstruction_5 = "ReturnInstruction_5",
384
- InputInstruction_1 = "InputInstruction_1",
385
- InputInstruction_2 = "InputInstruction_2",
386
- InputInstruction_3 = "InputInstruction_3",
387
- InputInstruction_4 = "InputInstruction_4",
388
- InputInstruction_5 = "InputInstruction_5",
389
- InputInstruction_6 = "InputInstruction_6",
390
- OutputInstruction_1 = "OutputInstruction_1",
391
- OutputInstruction_2 = "OutputInstruction_2",
392
- OutputInstruction_3 = "OutputInstruction_3",
393
- OutputInstruction_4 = "OutputInstruction_4",
394
- OutputInstruction_5 = "OutputInstruction_5",
395
- OutputInstruction_6 = "OutputInstruction_6",
396
- ByteDirective_1 = "ByteDirective_1",
397
- ByteDirective_2 = "ByteDirective_2",
398
- ByteDirective_3 = "ByteDirective_3",
399
- ByteDirective_4 = "ByteDirective_4",
400
- ByteDirective_5 = "ByteDirective_5",
401
- WordDirective_1 = "WordDirective_1",
402
- WordDirective_2 = "WordDirective_2",
403
- WordDirective_3 = "WordDirective_3",
404
- BlockDirective_1 = "BlockDirective_1",
405
- BlockDirective_2 = "BlockDirective_2",
406
- BlockDirective_3 = "BlockDirective_3",
407
- ByteValue_1 = "ByteValue_1",
408
- ByteValue_2 = "ByteValue_2",
409
- ByteValue_3 = "ByteValue_3",
410
- WordValue = "WordValue",
411
- DataDirective_1 = "DataDirective_1",
412
- DataDirective_2 = "DataDirective_2",
413
- DataDirective_3 = "DataDirective_3",
414
- DataDirective_$0 = "DataDirective_$0",
415
- DataDirective_$1 = "DataDirective_$1",
416
- DataDirective_$2 = "DataDirective_$2",
417
- EscapeSequence_1 = "EscapeSequence_1",
418
- EscapeSequence_2 = "EscapeSequence_2",
419
- EscapeSequence_3 = "EscapeSequence_3",
420
- SimpleEscapeSequence = "SimpleEscapeSequence",
421
- SimpleEscapeSequence_$0_1 = "SimpleEscapeSequence_$0_1",
422
- SimpleEscapeSequence_$0_2 = "SimpleEscapeSequence_$0_2",
423
- OctalEscapeSequence = "OctalEscapeSequence",
424
- HexadecimalEscapeSequence = "HexadecimalEscapeSequence",
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",
433
- Comment = "Comment",
434
- OriginDirective = "OriginDirective",
435
- Filename_1 = "Filename_1",
436
- Filename_2 = "Filename_2",
437
- IncludeDirective = "IncludeDirective",
438
- OutputDirective = "OutputDirective",
439
- OutputDirective_$0 = "OutputDirective_$0",
440
- DeviceDirective = "DeviceDirective",
441
- EndDirective = "EndDirective",
442
- $EOF = "$EOF"
443
- }
444
- export interface start {
445
- kind: ASTKinds.start;
446
- lines: Lines;
447
- }
448
- export type r = r_1 | r_2 | r_3 | r_4 | r_5 | r_6 | r_7;
449
- export type r_1 = string;
450
- export type r_2 = string;
451
- export type r_3 = string;
452
- export type r_4 = string;
453
- export type r_5 = string;
454
- export type r_6 = string;
455
- export type r_7 = string;
456
- export type dd = dd_1 | dd_2 | dd_3 | dd_4;
457
- export type dd_1 = string;
458
- export type dd_2 = string;
459
- export type dd_3 = string;
460
- export type dd_4 = string;
461
- export type ss = dd;
462
- export type qq = qq_1 | qq_2 | qq_3 | qq_4;
463
- export type qq_1 = string;
464
- export type qq_2 = string;
465
- export type qq_3 = string;
466
- export type qq_4 = string;
467
- export type pp = pp_1 | pp_2 | pp_3 | pp_4;
468
- export type pp_1 = string;
469
- export type pp_2 = string;
470
- export type pp_3 = string;
471
- export type pp_4 = string;
472
- export type rr = rr_1 | rr_2 | rr_3 | rr_4;
473
- export type rr_1 = string;
474
- export type rr_2 = string;
475
- export type rr_3 = string;
476
- export type rr_4 = string;
477
- export type n = n_1 | n_2 | n_3 | n_4;
478
- export declare class n_1 {
479
- kind: ASTKinds.n_1;
480
- pos: PosInfo;
481
- binary: binary;
482
- value: number;
483
- constructor(pos: PosInfo, binary: binary);
484
- }
485
- export declare class n_2 {
486
- kind: ASTKinds.n_2;
487
- pos: PosInfo;
488
- hexadecimal: hexadecimal;
489
- value: number;
490
- constructor(pos: PosInfo, hexadecimal: hexadecimal);
491
- }
492
- export declare class n_3 {
493
- kind: ASTKinds.n_3;
494
- pos: PosInfo;
495
- octal: octal;
496
- value: number;
497
- constructor(pos: PosInfo, octal: octal);
498
- }
499
- export declare class n_4 {
500
- kind: ASTKinds.n_4;
501
- pos: PosInfo;
502
- decimal: decimal;
503
- value: number;
504
- constructor(pos: PosInfo, decimal: decimal);
505
- }
506
- export type nn = nn_1 | nn_2 | nn_3 | nn_4;
507
- export declare class nn_1 {
508
- kind: ASTKinds.nn_1;
509
- pos: PosInfo;
510
- binary: binary;
511
- value: number;
512
- constructor(pos: PosInfo, binary: binary);
513
- }
514
- export declare class nn_2 {
515
- kind: ASTKinds.nn_2;
516
- pos: PosInfo;
517
- hexadecimal: hexadecimal;
518
- value: number;
519
- constructor(pos: PosInfo, hexadecimal: hexadecimal);
520
- }
521
- export declare class nn_3 {
522
- kind: ASTKinds.nn_3;
523
- pos: PosInfo;
524
- octal: octal;
525
- value: number;
526
- constructor(pos: PosInfo, octal: octal);
527
- }
528
- export declare class nn_4 {
529
- kind: ASTKinds.nn_4;
530
- pos: PosInfo;
531
- decimal: decimal;
532
- value: number;
533
- constructor(pos: PosInfo, decimal: decimal);
534
- }
535
- export interface decimal {
536
- kind: ASTKinds.decimal;
537
- raw: string;
538
- }
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;
546
- raw: string;
547
- }
548
- export type binary_$0 = binary_$0_1 | binary_$0_2;
549
- export type binary_$0_1 = string;
550
- export type binary_$0_2 = string;
551
- export type octal = octal_1 | octal_2;
552
- export interface octal_1 {
553
- kind: ASTKinds.octal_1;
554
- raw: string;
555
- }
556
- export interface octal_2 {
557
- kind: ASTKinds.octal_2;
558
- raw: string;
559
- }
560
- export type octal_$0 = octal_$0_1 | octal_$0_2 | octal_$0_3;
561
- export type octal_$0_1 = string;
562
- export type octal_$0_2 = string;
563
- export type octal_$0_3 = string;
564
- export type octal_$1 = octal_$1_1 | octal_$1_2;
565
- export type octal_$1_1 = string;
566
- export type octal_$1_2 = string;
567
- export type hexadecimal = hexadecimal_1 | hexadecimal_2;
568
- export interface hexadecimal_1 {
569
- kind: ASTKinds.hexadecimal_1;
570
- raw: string;
571
- }
572
- export interface hexadecimal_2 {
573
- kind: ASTKinds.hexadecimal_2;
574
- raw: string;
575
- }
576
- export type hexadecimal_$0 = hexadecimal_$0_1 | hexadecimal_$0_2 | hexadecimal_$0_3;
577
- export type hexadecimal_$0_1 = string;
578
- export type hexadecimal_$0_2 = string;
579
- export type hexadecimal_$0_3 = string;
580
- export type d = n;
581
- export type e = n;
582
- export type p = n;
583
- export declare class b {
584
- kind: ASTKinds.b;
585
- raw: string;
586
- value: number;
587
- constructor(raw: string);
588
- }
589
- export type cc = cc_1 | cc_2 | cc_3 | cc_4 | cc_5 | cc_6 | cc_7 | cc_8 | cc_9;
590
- export type cc_1 = string;
591
- export type cc_2 = string;
592
- export type cc_3 = string;
593
- export type cc_4 = string;
594
- export type cc_5 = string;
595
- export type cc_6 = string;
596
- export type cc_7 = string;
597
- export type cc_8 = string;
598
- export type cc_9 = string;
599
- export type jj = jj_1 | jj_2 | jj_3 | jj_4;
600
- export type jj_1 = string;
601
- export type jj_2 = string;
602
- export type jj_3 = string;
603
- export type jj_4 = string;
604
- export type __ = string;
605
- export type _ = string;
606
- export type eos = string;
607
- export type eol = string;
608
- export type Lines = Line[];
609
- export type Line = Line_1 | Line_2;
610
- export type Line_1 = LineEqual;
611
- export type Line_2 = LineStatement;
612
- export interface LineEqual {
613
- kind: ASTKinds.LineEqual;
614
- label: LabelDeclaration;
615
- equal: EqualDirective;
616
- comment: Nullable<Comment>;
617
- }
618
- export interface LineStatement {
619
- kind: ASTKinds.LineStatement;
620
- label: Nullable<LabelDeclaration>;
621
- statement: Nullable<Statement>;
622
- comment: Nullable<Comment>;
623
- }
624
- export type Statement = Statement_1 | Statement_2 | Statement_3;
625
- export declare class Statement_1 {
626
- kind: ASTKinds.Statement_1;
627
- inc: IncludeDirective;
628
- info: LinesInfo;
629
- constructor(inc: IncludeDirective);
630
- }
631
- export declare class Statement_2 {
632
- kind: ASTKinds.Statement_2;
633
- ins: Instruction;
634
- elements: AstElements;
635
- constructor(ins: Instruction);
636
- }
637
- export declare class Statement_3 {
638
- kind: ASTKinds.Statement_3;
639
- dir: Directive;
640
- elements: AstElements;
641
- address: Address;
642
- constructor(dir: Directive);
643
- }
644
- export interface EqualDirective {
645
- kind: ASTKinds.EqualDirective;
646
- e: Expression;
647
- }
648
- export type Directive = Directive_1 | Directive_2 | Directive_3 | Directive_4 | Directive_5;
649
- export declare class Directive_1 {
650
- kind: ASTKinds.Directive_1;
651
- data: DataDirective;
652
- elements: AstElements;
653
- address: Address;
654
- constructor(data: DataDirective);
655
- }
656
- export declare class Directive_2 {
657
- kind: ASTKinds.Directive_2;
658
- origin: OriginDirective;
659
- elements: AstElements;
660
- address: Address;
661
- constructor(origin: OriginDirective);
662
- }
663
- export declare class Directive_3 {
664
- kind: ASTKinds.Directive_3;
665
- directive: OutputDirective;
666
- elements: AstElements;
667
- address: Address;
668
- constructor(directive: OutputDirective);
669
- }
670
- export declare class Directive_4 {
671
- kind: ASTKinds.Directive_4;
672
- directive: DeviceDirective;
673
- elements: AstElements;
674
- address: Address;
675
- constructor(directive: DeviceDirective);
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
- }
684
- export type ForbiddenNames = ForbiddenNames_1 | ForbiddenNames_2 | ForbiddenNames_3 | ForbiddenNames_4 | ForbiddenNames_5;
685
- export type ForbiddenNames_1 = string;
686
- export type ForbiddenNames_2 = string;
687
- export type ForbiddenNames_3 = string;
688
- export type ForbiddenNames_4 = string;
689
- export type ForbiddenNames_5 = string;
690
- export interface ForbiddenLabel {
691
- kind: ASTKinds.ForbiddenLabel;
692
- }
693
- export interface Label {
694
- kind: ASTKinds.Label;
695
- pos: PosInfo;
696
- name: string;
697
- }
698
- export interface LabelDeclaration {
699
- kind: ASTKinds.LabelDeclaration;
700
- pos: PosInfo;
701
- name: string;
702
- }
703
- export declare class Expression {
704
- kind: ASTKinds.Expression;
705
- e1: BitwiseOrExpression;
706
- eval: EvalFunc;
707
- constructor(e1: BitwiseOrExpression);
708
- }
709
- export declare class BitwiseOrExpression {
710
- kind: ASTKinds.BitwiseOrExpression;
711
- left: Nullable<BitwiseOrExpression_$0>;
712
- right: BitwiseXOrExpression;
713
- eval: EvalFunc;
714
- constructor(left: Nullable<BitwiseOrExpression_$0>, right: BitwiseXOrExpression);
715
- }
716
- export interface BitwiseOrExpression_$0 {
717
- kind: ASTKinds.BitwiseOrExpression_$0;
718
- e: BitwiseOrExpression;
719
- }
720
- export declare class BitwiseXOrExpression {
721
- kind: ASTKinds.BitwiseXOrExpression;
722
- left: Nullable<BitwiseXOrExpression_$0>;
723
- right: BitwiseAndExpression;
724
- eval: EvalFunc;
725
- constructor(left: Nullable<BitwiseXOrExpression_$0>, right: BitwiseAndExpression);
726
- }
727
- export interface BitwiseXOrExpression_$0 {
728
- kind: ASTKinds.BitwiseXOrExpression_$0;
729
- e: BitwiseXOrExpression;
730
- }
731
- export declare class BitwiseAndExpression {
732
- kind: ASTKinds.BitwiseAndExpression;
733
- left: Nullable<BitwiseAndExpression_$0>;
734
- right: ShiftExpression;
735
- eval: EvalFunc;
736
- constructor(left: Nullable<BitwiseAndExpression_$0>, right: ShiftExpression);
737
- }
738
- export interface BitwiseAndExpression_$0 {
739
- kind: ASTKinds.BitwiseAndExpression_$0;
740
- e: BitwiseAndExpression;
741
- }
742
- export declare class ShiftExpression {
743
- kind: ASTKinds.ShiftExpression;
744
- left: Nullable<ShiftExpression_$0>;
745
- right: AdditiveExpression;
746
- eval: EvalFunc;
747
- constructor(left: Nullable<ShiftExpression_$0>, right: AdditiveExpression);
748
- }
749
- export interface ShiftExpression_$0 {
750
- kind: ASTKinds.ShiftExpression_$0;
751
- e: ShiftExpression;
752
- op: ShiftExpression_$0_$0;
753
- }
754
- export type ShiftExpression_$0_$0 = ShiftExpression_$0_$0_1 | ShiftExpression_$0_$0_2;
755
- export type ShiftExpression_$0_$0_1 = string;
756
- export type ShiftExpression_$0_$0_2 = string;
757
- export declare class AdditiveExpression {
758
- kind: ASTKinds.AdditiveExpression;
759
- left: Nullable<AdditiveExpression_$0>;
760
- right: MultiplicativeExpression;
761
- eval: EvalFunc;
762
- constructor(left: Nullable<AdditiveExpression_$0>, right: MultiplicativeExpression);
763
- }
764
- export interface AdditiveExpression_$0 {
765
- kind: ASTKinds.AdditiveExpression_$0;
766
- e: AdditiveExpression;
767
- op: AdditiveExpression_$0_$0;
768
- }
769
- export type AdditiveExpression_$0_$0 = AdditiveExpression_$0_$0_1 | AdditiveExpression_$0_$0_2;
770
- export type AdditiveExpression_$0_$0_1 = string;
771
- export type AdditiveExpression_$0_$0_2 = string;
772
- export declare class MultiplicativeExpression {
773
- kind: ASTKinds.MultiplicativeExpression;
774
- left: Nullable<MultiplicativeExpression_$0>;
775
- right: UnaryExpression;
776
- eval: EvalFunc;
777
- constructor(left: Nullable<MultiplicativeExpression_$0>, right: UnaryExpression);
778
- }
779
- export interface MultiplicativeExpression_$0 {
780
- kind: ASTKinds.MultiplicativeExpression_$0;
781
- e: MultiplicativeExpression;
782
- op: MultiplicativeExpression_$0_$0;
783
- }
784
- export type MultiplicativeExpression_$0_$0 = MultiplicativeExpression_$0_$0_1 | MultiplicativeExpression_$0_$0_2 | MultiplicativeExpression_$0_$0_3;
785
- export type MultiplicativeExpression_$0_$0_1 = string;
786
- export type MultiplicativeExpression_$0_$0_2 = string;
787
- export type MultiplicativeExpression_$0_$0_3 = string;
788
- export type UnaryExpression = UnaryExpression_1 | UnaryExpression_2;
789
- export declare class UnaryExpression_1 {
790
- kind: ASTKinds.UnaryExpression_1;
791
- op: UnaryExpression_$0;
792
- e: PrimaryExpression;
793
- eval: EvalFunc;
794
- constructor(op: UnaryExpression_$0, e: PrimaryExpression);
795
- }
796
- export declare class UnaryExpression_2 {
797
- kind: ASTKinds.UnaryExpression_2;
798
- e: PrimaryExpression;
799
- eval: EvalFunc;
800
- constructor(e: PrimaryExpression);
801
- }
802
- export type UnaryExpression_$0 = UnaryExpression_$0_1 | UnaryExpression_$0_2 | UnaryExpression_$0_3;
803
- export type UnaryExpression_$0_1 = string;
804
- export type UnaryExpression_$0_2 = string;
805
- export type UnaryExpression_$0_3 = string;
806
- export type PrimaryExpression = PrimaryExpression_1 | PrimaryExpression_2 | PrimaryExpression_3;
807
- export declare class PrimaryExpression_1 {
808
- kind: ASTKinds.PrimaryExpression_1;
809
- nn: nn;
810
- eval: EvalFunc;
811
- constructor(nn: nn);
812
- }
813
- export declare class PrimaryExpression_2 {
814
- kind: ASTKinds.PrimaryExpression_2;
815
- pos: PosInfo;
816
- label: Label;
817
- eval: EvalFunc;
818
- constructor(pos: PosInfo, label: Label);
819
- }
820
- export declare class PrimaryExpression_3 {
821
- kind: ASTKinds.PrimaryExpression_3;
822
- e: BitwiseOrExpression;
823
- eval: EvalFunc;
824
- constructor(e: BitwiseOrExpression);
825
- }
826
- export interface Reg8 {
827
- kind: ASTKinds.Reg8;
828
- reg: r;
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;
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;
857
- export type Instruction_1 = Load8Instruction;
858
- export type Instruction_2 = Load16Instruction;
859
- export type Instruction_3 = ExchangeInstruction;
860
- export type Instruction_4 = BlockInstruction;
861
- export type Instruction_5 = ArithmeticLogic8Instruction;
862
- export type Instruction_6 = IncrementDecrement8Instruction;
863
- export type Instruction_7 = GeneralPurposeArithmeticInstruction;
864
- export type Instruction_8 = ArithmeticLogic16Instruction;
865
- export type Instruction_9 = RotateShiftInstruction;
866
- export type Instruction_10 = BitManipulationInstruction;
867
- export type Instruction_11 = JumpInstruction;
868
- export type Instruction_12 = CallInstruction;
869
- export type Instruction_13 = ReturnInstruction;
870
- export type Instruction_14 = InputInstruction;
871
- export type Instruction_15 = OutputInstruction;
872
- export type Instruction_16 = CpuControlGroupInstruction;
873
- export type Load8Instruction = Load8Instruction_1 | Load8Instruction_2 | Load8Instruction_3 | Load8Instruction_4 | Load8Instruction_5 | Load8Instruction_6 | Load8Instruction_7 | Load8Instruction_8 | Load8Instruction_9 | Load8Instruction_10 | Load8Instruction_11 | Load8Instruction_12 | Load8Instruction_13 | Load8Instruction_14 | Load8Instruction_15 | Load8Instruction_16 | Load8Instruction_17 | Load8Instruction_18 | Load8Instruction_19 | Load8Instruction_20 | Load8Instruction_21;
874
- export declare class Load8Instruction_1 {
875
- kind: ASTKinds.Load8Instruction_1;
876
- r0: Reg8;
877
- r1: Reg8;
878
- elements: AstElements;
879
- constructor(r0: Reg8, r1: Reg8);
880
- }
881
- export declare class Load8Instruction_2 {
882
- kind: ASTKinds.Load8Instruction_2;
883
- r: r;
884
- elements: AstElements;
885
- constructor(r: r);
886
- }
887
- export declare class Load8Instruction_3 {
888
- kind: ASTKinds.Load8Instruction_3;
889
- r: r;
890
- i: IX;
891
- elements: AstElements;
892
- constructor(r: r, i: IX);
893
- }
894
- export declare class Load8Instruction_4 {
895
- kind: ASTKinds.Load8Instruction_4;
896
- r: r;
897
- i: IY;
898
- elements: AstElements;
899
- constructor(r: r, i: IY);
900
- }
901
- export declare class Load8Instruction_5 {
902
- kind: ASTKinds.Load8Instruction_5;
903
- r: r;
904
- elements: AstElements;
905
- constructor(r: r);
906
- }
907
- export declare class Load8Instruction_6 {
908
- kind: ASTKinds.Load8Instruction_6;
909
- i: IX;
910
- r: r;
911
- elements: AstElements;
912
- constructor(i: IX, r: r);
913
- }
914
- export declare class Load8Instruction_7 {
915
- kind: ASTKinds.Load8Instruction_7;
916
- i: IY;
917
- r: r;
918
- elements: AstElements;
919
- constructor(i: IY, r: r);
920
- }
921
- export declare class Load8Instruction_8 {
922
- kind: ASTKinds.Load8Instruction_8;
923
- pos: PosInfo;
924
- n: Expression;
925
- elements: AstElements;
926
- constructor(pos: PosInfo, n: Expression);
927
- }
928
- export declare class Load8Instruction_9 {
929
- kind: ASTKinds.Load8Instruction_9;
930
- i: IX;
931
- pos: PosInfo;
932
- n: Expression;
933
- elements: AstElements;
934
- constructor(i: IX, pos: PosInfo, n: Expression);
935
- }
936
- export declare class Load8Instruction_10 {
937
- kind: ASTKinds.Load8Instruction_10;
938
- i: IY;
939
- pos: PosInfo;
940
- n: Expression;
941
- elements: AstElements;
942
- constructor(i: IY, pos: PosInfo, n: Expression);
943
- }
944
- export declare class Load8Instruction_11 {
945
- kind: ASTKinds.Load8Instruction_11;
946
- elements: AstElements;
947
- constructor();
948
- }
949
- export declare class Load8Instruction_12 {
950
- kind: ASTKinds.Load8Instruction_12;
951
- elements: AstElements;
952
- constructor();
953
- }
954
- export declare class Load8Instruction_13 {
955
- kind: ASTKinds.Load8Instruction_13;
956
- pos: PosInfo;
957
- ee: Expression;
958
- elements: AstElements;
959
- constructor(pos: PosInfo, ee: Expression);
960
- }
961
- export declare class Load8Instruction_14 {
962
- kind: ASTKinds.Load8Instruction_14;
963
- elements: AstElements;
964
- constructor();
965
- }
966
- export declare class Load8Instruction_15 {
967
- kind: ASTKinds.Load8Instruction_15;
968
- elements: AstElements;
969
- constructor();
970
- }
971
- export declare class Load8Instruction_16 {
972
- kind: ASTKinds.Load8Instruction_16;
973
- pos: PosInfo;
974
- ee: Expression;
975
- elements: AstElements;
976
- constructor(pos: PosInfo, ee: Expression);
977
- }
978
- export declare class Load8Instruction_17 {
979
- kind: ASTKinds.Load8Instruction_17;
980
- elements: AstElements;
981
- constructor();
982
- }
983
- export declare class Load8Instruction_18 {
984
- kind: ASTKinds.Load8Instruction_18;
985
- elements: AstElements;
986
- constructor();
987
- }
988
- export declare class Load8Instruction_19 {
989
- kind: ASTKinds.Load8Instruction_19;
990
- elements: AstElements;
991
- constructor();
992
- }
993
- export declare class Load8Instruction_20 {
994
- kind: ASTKinds.Load8Instruction_20;
995
- elements: AstElements;
996
- constructor();
997
- }
998
- export declare class Load8Instruction_21 {
999
- kind: ASTKinds.Load8Instruction_21;
1000
- r: Reg8;
1001
- pos: PosInfo;
1002
- n: Expression;
1003
- elements: AstElements;
1004
- constructor(r: Reg8, pos: PosInfo, n: Expression);
1005
- }
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;
1007
- export declare class Load16Instruction_1 {
1008
- kind: ASTKinds.Load16Instruction_1;
1009
- pos: PosInfo;
1010
- ee: Expression;
1011
- elements: AstElements;
1012
- constructor(pos: PosInfo, ee: Expression);
1013
- }
1014
- export declare class Load16Instruction_2 {
1015
- kind: ASTKinds.Load16Instruction_2;
1016
- pos: PosInfo;
1017
- ee: Expression;
1018
- elements: AstElements;
1019
- constructor(pos: PosInfo, ee: Expression);
1020
- }
1021
- export declare class Load16Instruction_3 {
1022
- kind: ASTKinds.Load16Instruction_3;
1023
- pos: PosInfo;
1024
- ee: Expression;
1025
- elements: AstElements;
1026
- constructor(pos: PosInfo, ee: Expression);
1027
- }
1028
- export declare class Load16Instruction_4 {
1029
- kind: ASTKinds.Load16Instruction_4;
1030
- pos: PosInfo;
1031
- ee: Expression;
1032
- elements: AstElements;
1033
- constructor(pos: PosInfo, ee: Expression);
1034
- }
1035
- export declare class Load16Instruction_5 {
1036
- kind: ASTKinds.Load16Instruction_5;
1037
- pos: PosInfo;
1038
- ee: Expression;
1039
- elements: AstElements;
1040
- constructor(pos: PosInfo, ee: Expression);
1041
- }
1042
- export declare class Load16Instruction_6 {
1043
- kind: ASTKinds.Load16Instruction_6;
1044
- dd: dd;
1045
- pos: PosInfo;
1046
- ee: Expression;
1047
- elements: AstElements;
1048
- constructor(dd: dd, pos: PosInfo, ee: Expression);
1049
- }
1050
- export declare class Load16Instruction_7 {
1051
- kind: ASTKinds.Load16Instruction_7;
1052
- pos: PosInfo;
1053
- ee: Expression;
1054
- elements: AstElements;
1055
- constructor(pos: PosInfo, ee: Expression);
1056
- }
1057
- export declare class Load16Instruction_8 {
1058
- kind: ASTKinds.Load16Instruction_8;
1059
- pos: PosInfo;
1060
- ee: Expression;
1061
- dd: dd;
1062
- elements: AstElements;
1063
- constructor(pos: PosInfo, ee: Expression, dd: dd);
1064
- }
1065
- export declare class Load16Instruction_9 {
1066
- kind: ASTKinds.Load16Instruction_9;
1067
- pos: PosInfo;
1068
- ee: Expression;
1069
- elements: AstElements;
1070
- constructor(pos: PosInfo, ee: Expression);
1071
- }
1072
- export declare class Load16Instruction_10 {
1073
- kind: ASTKinds.Load16Instruction_10;
1074
- pos: PosInfo;
1075
- ee: Expression;
1076
- elements: AstElements;
1077
- constructor(pos: PosInfo, ee: Expression);
1078
- }
1079
- export declare class Load16Instruction_11 {
1080
- kind: ASTKinds.Load16Instruction_11;
1081
- elements: AstElements;
1082
- constructor();
1083
- }
1084
- export declare class Load16Instruction_12 {
1085
- kind: ASTKinds.Load16Instruction_12;
1086
- elements: AstElements;
1087
- constructor();
1088
- }
1089
- export declare class Load16Instruction_13 {
1090
- kind: ASTKinds.Load16Instruction_13;
1091
- elements: AstElements;
1092
- constructor();
1093
- }
1094
- export declare class Load16Instruction_14 {
1095
- kind: ASTKinds.Load16Instruction_14;
1096
- dd: dd;
1097
- pos: PosInfo;
1098
- ee: Expression;
1099
- elements: AstElements;
1100
- constructor(dd: dd, pos: PosInfo, ee: Expression);
1101
- }
1102
- export declare class Load16Instruction_15 {
1103
- kind: ASTKinds.Load16Instruction_15;
1104
- qq: qq;
1105
- elements: AstElements;
1106
- constructor(qq: qq);
1107
- }
1108
- export declare class Load16Instruction_16 {
1109
- kind: ASTKinds.Load16Instruction_16;
1110
- elements: AstElements;
1111
- constructor();
1112
- }
1113
- export declare class Load16Instruction_17 {
1114
- kind: ASTKinds.Load16Instruction_17;
1115
- elements: AstElements;
1116
- constructor();
1117
- }
1118
- export declare class Load16Instruction_18 {
1119
- kind: ASTKinds.Load16Instruction_18;
1120
- qq: qq;
1121
- elements: AstElements;
1122
- constructor(qq: qq);
1123
- }
1124
- export declare class Load16Instruction_19 {
1125
- kind: ASTKinds.Load16Instruction_19;
1126
- elements: AstElements;
1127
- constructor();
1128
- }
1129
- export declare class Load16Instruction_20 {
1130
- kind: ASTKinds.Load16Instruction_20;
1131
- elements: AstElements;
1132
- constructor();
1133
- }
1134
- export type ExchangeInstruction = ExchangeInstruction_1 | ExchangeInstruction_2 | ExchangeInstruction_3 | ExchangeInstruction_4 | ExchangeInstruction_5 | ExchangeInstruction_6;
1135
- export declare class ExchangeInstruction_1 {
1136
- kind: ASTKinds.ExchangeInstruction_1;
1137
- elements: AstElements;
1138
- constructor();
1139
- }
1140
- export declare class ExchangeInstruction_2 {
1141
- kind: ASTKinds.ExchangeInstruction_2;
1142
- elements: AstElements;
1143
- constructor();
1144
- }
1145
- export declare class ExchangeInstruction_3 {
1146
- kind: ASTKinds.ExchangeInstruction_3;
1147
- elements: AstElements;
1148
- constructor();
1149
- }
1150
- export declare class ExchangeInstruction_4 {
1151
- kind: ASTKinds.ExchangeInstruction_4;
1152
- elements: AstElements;
1153
- constructor();
1154
- }
1155
- export declare class ExchangeInstruction_5 {
1156
- kind: ASTKinds.ExchangeInstruction_5;
1157
- elements: AstElements;
1158
- constructor();
1159
- }
1160
- export declare class ExchangeInstruction_6 {
1161
- kind: ASTKinds.ExchangeInstruction_6;
1162
- elements: AstElements;
1163
- constructor();
1164
- }
1165
- export type BlockInstruction = BlockInstruction_1 | BlockInstruction_2 | BlockInstruction_3 | BlockInstruction_4 | BlockInstruction_5 | BlockInstruction_6 | BlockInstruction_7 | BlockInstruction_8;
1166
- export declare class BlockInstruction_1 {
1167
- kind: ASTKinds.BlockInstruction_1;
1168
- elements: AstElements;
1169
- constructor();
1170
- }
1171
- export declare class BlockInstruction_2 {
1172
- kind: ASTKinds.BlockInstruction_2;
1173
- elements: AstElements;
1174
- constructor();
1175
- }
1176
- export declare class BlockInstruction_3 {
1177
- kind: ASTKinds.BlockInstruction_3;
1178
- elements: AstElements;
1179
- constructor();
1180
- }
1181
- export declare class BlockInstruction_4 {
1182
- kind: ASTKinds.BlockInstruction_4;
1183
- elements: AstElements;
1184
- constructor();
1185
- }
1186
- export declare class BlockInstruction_5 {
1187
- kind: ASTKinds.BlockInstruction_5;
1188
- elements: AstElements;
1189
- constructor();
1190
- }
1191
- export declare class BlockInstruction_6 {
1192
- kind: ASTKinds.BlockInstruction_6;
1193
- elements: AstElements;
1194
- constructor();
1195
- }
1196
- export declare class BlockInstruction_7 {
1197
- kind: ASTKinds.BlockInstruction_7;
1198
- elements: AstElements;
1199
- constructor();
1200
- }
1201
- export declare class BlockInstruction_8 {
1202
- kind: ASTKinds.BlockInstruction_8;
1203
- elements: AstElements;
1204
- constructor();
1205
- }
1206
- export type ArithmeticLogic8Instruction = ArithmeticLogic8Instruction_1 | ArithmeticLogic8Instruction_2 | ArithmeticLogic8Instruction_3 | ArithmeticLogic8Instruction_4 | ArithmeticLogic8Instruction_5 | ArithmeticLogic8Instruction_6 | ArithmeticLogic8Instruction_7 | ArithmeticLogic8Instruction_8 | ArithmeticLogic8Instruction_9 | ArithmeticLogic8Instruction_10 | ArithmeticLogic8Instruction_11 | ArithmeticLogic8Instruction_12 | ArithmeticLogic8Instruction_13 | ArithmeticLogic8Instruction_14 | ArithmeticLogic8Instruction_15 | ArithmeticLogic8Instruction_16 | ArithmeticLogic8Instruction_17 | ArithmeticLogic8Instruction_18 | ArithmeticLogic8Instruction_19 | ArithmeticLogic8Instruction_20 | ArithmeticLogic8Instruction_21 | ArithmeticLogic8Instruction_22 | ArithmeticLogic8Instruction_23 | ArithmeticLogic8Instruction_24 | ArithmeticLogic8Instruction_25 | ArithmeticLogic8Instruction_26 | ArithmeticLogic8Instruction_27 | ArithmeticLogic8Instruction_28 | ArithmeticLogic8Instruction_29 | ArithmeticLogic8Instruction_30 | ArithmeticLogic8Instruction_31 | ArithmeticLogic8Instruction_32 | ArithmeticLogic8Instruction_33 | ArithmeticLogic8Instruction_34 | ArithmeticLogic8Instruction_35 | ArithmeticLogic8Instruction_36 | ArithmeticLogic8Instruction_37 | ArithmeticLogic8Instruction_38 | ArithmeticLogic8Instruction_39 | ArithmeticLogic8Instruction_40;
1207
- export declare class ArithmeticLogic8Instruction_1 {
1208
- kind: ASTKinds.ArithmeticLogic8Instruction_1;
1209
- elements: AstElements;
1210
- constructor();
1211
- }
1212
- export declare class ArithmeticLogic8Instruction_2 {
1213
- kind: ASTKinds.ArithmeticLogic8Instruction_2;
1214
- i: IX;
1215
- elements: AstElements;
1216
- constructor(i: IX);
1217
- }
1218
- export declare class ArithmeticLogic8Instruction_3 {
1219
- kind: ASTKinds.ArithmeticLogic8Instruction_3;
1220
- i: IY;
1221
- elements: AstElements;
1222
- constructor(i: IY);
1223
- }
1224
- export declare class ArithmeticLogic8Instruction_4 {
1225
- kind: ASTKinds.ArithmeticLogic8Instruction_4;
1226
- r: r;
1227
- elements: AstElements;
1228
- constructor(r: r);
1229
- }
1230
- export declare class ArithmeticLogic8Instruction_5 {
1231
- kind: ASTKinds.ArithmeticLogic8Instruction_5;
1232
- pos: PosInfo;
1233
- n: Expression;
1234
- elements: AstElements;
1235
- constructor(pos: PosInfo, n: Expression);
1236
- }
1237
- export declare class ArithmeticLogic8Instruction_6 {
1238
- kind: ASTKinds.ArithmeticLogic8Instruction_6;
1239
- elements: AstElements;
1240
- constructor();
1241
- }
1242
- export declare class ArithmeticLogic8Instruction_7 {
1243
- kind: ASTKinds.ArithmeticLogic8Instruction_7;
1244
- i: IX;
1245
- elements: AstElements;
1246
- constructor(i: IX);
1247
- }
1248
- export declare class ArithmeticLogic8Instruction_8 {
1249
- kind: ASTKinds.ArithmeticLogic8Instruction_8;
1250
- i: IY;
1251
- elements: AstElements;
1252
- constructor(i: IY);
1253
- }
1254
- export declare class ArithmeticLogic8Instruction_9 {
1255
- kind: ASTKinds.ArithmeticLogic8Instruction_9;
1256
- r: r;
1257
- elements: AstElements;
1258
- constructor(r: r);
1259
- }
1260
- export declare class ArithmeticLogic8Instruction_10 {
1261
- kind: ASTKinds.ArithmeticLogic8Instruction_10;
1262
- pos: PosInfo;
1263
- n: Expression;
1264
- elements: AstElements;
1265
- constructor(pos: PosInfo, n: Expression);
1266
- }
1267
- export declare class ArithmeticLogic8Instruction_11 {
1268
- kind: ASTKinds.ArithmeticLogic8Instruction_11;
1269
- elements: AstElements;
1270
- constructor();
1271
- }
1272
- export declare class ArithmeticLogic8Instruction_12 {
1273
- kind: ASTKinds.ArithmeticLogic8Instruction_12;
1274
- i: IX;
1275
- elements: AstElements;
1276
- constructor(i: IX);
1277
- }
1278
- export declare class ArithmeticLogic8Instruction_13 {
1279
- kind: ASTKinds.ArithmeticLogic8Instruction_13;
1280
- i: IY;
1281
- elements: AstElements;
1282
- constructor(i: IY);
1283
- }
1284
- export declare class ArithmeticLogic8Instruction_14 {
1285
- kind: ASTKinds.ArithmeticLogic8Instruction_14;
1286
- r: r;
1287
- elements: AstElements;
1288
- constructor(r: r);
1289
- }
1290
- export declare class ArithmeticLogic8Instruction_15 {
1291
- kind: ASTKinds.ArithmeticLogic8Instruction_15;
1292
- pos: PosInfo;
1293
- n: Expression;
1294
- elements: AstElements;
1295
- constructor(pos: PosInfo, n: Expression);
1296
- }
1297
- export declare class ArithmeticLogic8Instruction_16 {
1298
- kind: ASTKinds.ArithmeticLogic8Instruction_16;
1299
- elements: AstElements;
1300
- constructor();
1301
- }
1302
- export declare class ArithmeticLogic8Instruction_17 {
1303
- kind: ASTKinds.ArithmeticLogic8Instruction_17;
1304
- i: IX;
1305
- elements: AstElements;
1306
- constructor(i: IX);
1307
- }
1308
- export declare class ArithmeticLogic8Instruction_18 {
1309
- kind: ASTKinds.ArithmeticLogic8Instruction_18;
1310
- i: IY;
1311
- elements: AstElements;
1312
- constructor(i: IY);
1313
- }
1314
- export declare class ArithmeticLogic8Instruction_19 {
1315
- kind: ASTKinds.ArithmeticLogic8Instruction_19;
1316
- r: r;
1317
- elements: AstElements;
1318
- constructor(r: r);
1319
- }
1320
- export declare class ArithmeticLogic8Instruction_20 {
1321
- kind: ASTKinds.ArithmeticLogic8Instruction_20;
1322
- pos: PosInfo;
1323
- n: Expression;
1324
- elements: AstElements;
1325
- constructor(pos: PosInfo, n: Expression);
1326
- }
1327
- export declare class ArithmeticLogic8Instruction_21 {
1328
- kind: ASTKinds.ArithmeticLogic8Instruction_21;
1329
- elements: AstElements;
1330
- constructor();
1331
- }
1332
- export declare class ArithmeticLogic8Instruction_22 {
1333
- kind: ASTKinds.ArithmeticLogic8Instruction_22;
1334
- i: IX;
1335
- elements: AstElements;
1336
- constructor(i: IX);
1337
- }
1338
- export declare class ArithmeticLogic8Instruction_23 {
1339
- kind: ASTKinds.ArithmeticLogic8Instruction_23;
1340
- i: IY;
1341
- elements: AstElements;
1342
- constructor(i: IY);
1343
- }
1344
- export declare class ArithmeticLogic8Instruction_24 {
1345
- kind: ASTKinds.ArithmeticLogic8Instruction_24;
1346
- r: r;
1347
- elements: AstElements;
1348
- constructor(r: r);
1349
- }
1350
- export declare class ArithmeticLogic8Instruction_25 {
1351
- kind: ASTKinds.ArithmeticLogic8Instruction_25;
1352
- pos: PosInfo;
1353
- n: Expression;
1354
- elements: AstElements;
1355
- constructor(pos: PosInfo, n: Expression);
1356
- }
1357
- export declare class ArithmeticLogic8Instruction_26 {
1358
- kind: ASTKinds.ArithmeticLogic8Instruction_26;
1359
- elements: AstElements;
1360
- constructor();
1361
- }
1362
- export declare class ArithmeticLogic8Instruction_27 {
1363
- kind: ASTKinds.ArithmeticLogic8Instruction_27;
1364
- i: IX;
1365
- elements: AstElements;
1366
- constructor(i: IX);
1367
- }
1368
- export declare class ArithmeticLogic8Instruction_28 {
1369
- kind: ASTKinds.ArithmeticLogic8Instruction_28;
1370
- i: IY;
1371
- elements: AstElements;
1372
- constructor(i: IY);
1373
- }
1374
- export declare class ArithmeticLogic8Instruction_29 {
1375
- kind: ASTKinds.ArithmeticLogic8Instruction_29;
1376
- r: r;
1377
- elements: AstElements;
1378
- constructor(r: r);
1379
- }
1380
- export declare class ArithmeticLogic8Instruction_30 {
1381
- kind: ASTKinds.ArithmeticLogic8Instruction_30;
1382
- pos: PosInfo;
1383
- n: Expression;
1384
- elements: AstElements;
1385
- constructor(pos: PosInfo, n: Expression);
1386
- }
1387
- export declare class ArithmeticLogic8Instruction_31 {
1388
- kind: ASTKinds.ArithmeticLogic8Instruction_31;
1389
- elements: AstElements;
1390
- constructor();
1391
- }
1392
- export declare class ArithmeticLogic8Instruction_32 {
1393
- kind: ASTKinds.ArithmeticLogic8Instruction_32;
1394
- i: IX;
1395
- elements: AstElements;
1396
- constructor(i: IX);
1397
- }
1398
- export declare class ArithmeticLogic8Instruction_33 {
1399
- kind: ASTKinds.ArithmeticLogic8Instruction_33;
1400
- i: IY;
1401
- elements: AstElements;
1402
- constructor(i: IY);
1403
- }
1404
- export declare class ArithmeticLogic8Instruction_34 {
1405
- kind: ASTKinds.ArithmeticLogic8Instruction_34;
1406
- r: r;
1407
- elements: AstElements;
1408
- constructor(r: r);
1409
- }
1410
- export declare class ArithmeticLogic8Instruction_35 {
1411
- kind: ASTKinds.ArithmeticLogic8Instruction_35;
1412
- pos: PosInfo;
1413
- n: Expression;
1414
- elements: AstElements;
1415
- constructor(pos: PosInfo, n: Expression);
1416
- }
1417
- export declare class ArithmeticLogic8Instruction_36 {
1418
- kind: ASTKinds.ArithmeticLogic8Instruction_36;
1419
- elements: AstElements;
1420
- constructor();
1421
- }
1422
- export declare class ArithmeticLogic8Instruction_37 {
1423
- kind: ASTKinds.ArithmeticLogic8Instruction_37;
1424
- i: IX;
1425
- elements: AstElements;
1426
- constructor(i: IX);
1427
- }
1428
- export declare class ArithmeticLogic8Instruction_38 {
1429
- kind: ASTKinds.ArithmeticLogic8Instruction_38;
1430
- i: IY;
1431
- elements: AstElements;
1432
- constructor(i: IY);
1433
- }
1434
- export declare class ArithmeticLogic8Instruction_39 {
1435
- kind: ASTKinds.ArithmeticLogic8Instruction_39;
1436
- r: r;
1437
- elements: AstElements;
1438
- constructor(r: r);
1439
- }
1440
- export declare class ArithmeticLogic8Instruction_40 {
1441
- kind: ASTKinds.ArithmeticLogic8Instruction_40;
1442
- pos: PosInfo;
1443
- n: Expression;
1444
- elements: AstElements;
1445
- constructor(pos: PosInfo, n: Expression);
1446
- }
1447
- export interface ArithmeticLogic8Instruction_$0 {
1448
- kind: ASTKinds.ArithmeticLogic8Instruction_$0;
1449
- }
1450
- export interface ArithmeticLogic8Instruction_$1 {
1451
- kind: ASTKinds.ArithmeticLogic8Instruction_$1;
1452
- }
1453
- export interface ArithmeticLogic8Instruction_$2 {
1454
- kind: ASTKinds.ArithmeticLogic8Instruction_$2;
1455
- }
1456
- export interface ArithmeticLogic8Instruction_$3 {
1457
- kind: ASTKinds.ArithmeticLogic8Instruction_$3;
1458
- }
1459
- export interface ArithmeticLogic8Instruction_$4 {
1460
- kind: ASTKinds.ArithmeticLogic8Instruction_$4;
1461
- }
1462
- export interface ArithmeticLogic8Instruction_$5 {
1463
- kind: ASTKinds.ArithmeticLogic8Instruction_$5;
1464
- }
1465
- export interface ArithmeticLogic8Instruction_$6 {
1466
- kind: ASTKinds.ArithmeticLogic8Instruction_$6;
1467
- }
1468
- export interface ArithmeticLogic8Instruction_$7 {
1469
- kind: ASTKinds.ArithmeticLogic8Instruction_$7;
1470
- }
1471
- export interface ArithmeticLogic8Instruction_$8 {
1472
- kind: ASTKinds.ArithmeticLogic8Instruction_$8;
1473
- }
1474
- export interface ArithmeticLogic8Instruction_$9 {
1475
- kind: ASTKinds.ArithmeticLogic8Instruction_$9;
1476
- }
1477
- export interface ArithmeticLogic8Instruction_$10 {
1478
- kind: ASTKinds.ArithmeticLogic8Instruction_$10;
1479
- }
1480
- export interface ArithmeticLogic8Instruction_$11 {
1481
- kind: ASTKinds.ArithmeticLogic8Instruction_$11;
1482
- }
1483
- export interface ArithmeticLogic8Instruction_$12 {
1484
- kind: ASTKinds.ArithmeticLogic8Instruction_$12;
1485
- }
1486
- export interface ArithmeticLogic8Instruction_$13 {
1487
- kind: ASTKinds.ArithmeticLogic8Instruction_$13;
1488
- }
1489
- export interface ArithmeticLogic8Instruction_$14 {
1490
- kind: ASTKinds.ArithmeticLogic8Instruction_$14;
1491
- }
1492
- export interface ArithmeticLogic8Instruction_$15 {
1493
- kind: ASTKinds.ArithmeticLogic8Instruction_$15;
1494
- }
1495
- export interface ArithmeticLogic8Instruction_$16 {
1496
- kind: ASTKinds.ArithmeticLogic8Instruction_$16;
1497
- }
1498
- export interface ArithmeticLogic8Instruction_$17 {
1499
- kind: ASTKinds.ArithmeticLogic8Instruction_$17;
1500
- }
1501
- export interface ArithmeticLogic8Instruction_$18 {
1502
- kind: ASTKinds.ArithmeticLogic8Instruction_$18;
1503
- }
1504
- export interface ArithmeticLogic8Instruction_$19 {
1505
- kind: ASTKinds.ArithmeticLogic8Instruction_$19;
1506
- }
1507
- export interface ArithmeticLogic8Instruction_$20 {
1508
- kind: ASTKinds.ArithmeticLogic8Instruction_$20;
1509
- }
1510
- export interface ArithmeticLogic8Instruction_$21 {
1511
- kind: ASTKinds.ArithmeticLogic8Instruction_$21;
1512
- }
1513
- export interface ArithmeticLogic8Instruction_$22 {
1514
- kind: ASTKinds.ArithmeticLogic8Instruction_$22;
1515
- }
1516
- export interface ArithmeticLogic8Instruction_$23 {
1517
- kind: ASTKinds.ArithmeticLogic8Instruction_$23;
1518
- }
1519
- export interface ArithmeticLogic8Instruction_$24 {
1520
- kind: ASTKinds.ArithmeticLogic8Instruction_$24;
1521
- }
1522
- export interface ArithmeticLogic8Instruction_$25 {
1523
- kind: ASTKinds.ArithmeticLogic8Instruction_$25;
1524
- }
1525
- export interface ArithmeticLogic8Instruction_$26 {
1526
- kind: ASTKinds.ArithmeticLogic8Instruction_$26;
1527
- }
1528
- export interface ArithmeticLogic8Instruction_$27 {
1529
- kind: ASTKinds.ArithmeticLogic8Instruction_$27;
1530
- }
1531
- export interface ArithmeticLogic8Instruction_$28 {
1532
- kind: ASTKinds.ArithmeticLogic8Instruction_$28;
1533
- }
1534
- export interface ArithmeticLogic8Instruction_$29 {
1535
- kind: ASTKinds.ArithmeticLogic8Instruction_$29;
1536
- }
1537
- export interface ArithmeticLogic8Instruction_$30 {
1538
- kind: ASTKinds.ArithmeticLogic8Instruction_$30;
1539
- }
1540
- export interface ArithmeticLogic8Instruction_$31 {
1541
- kind: ASTKinds.ArithmeticLogic8Instruction_$31;
1542
- }
1543
- export interface ArithmeticLogic8Instruction_$32 {
1544
- kind: ASTKinds.ArithmeticLogic8Instruction_$32;
1545
- }
1546
- export interface ArithmeticLogic8Instruction_$33 {
1547
- kind: ASTKinds.ArithmeticLogic8Instruction_$33;
1548
- }
1549
- export interface ArithmeticLogic8Instruction_$34 {
1550
- kind: ASTKinds.ArithmeticLogic8Instruction_$34;
1551
- }
1552
- export interface ArithmeticLogic8Instruction_$35 {
1553
- kind: ASTKinds.ArithmeticLogic8Instruction_$35;
1554
- }
1555
- export interface ArithmeticLogic8Instruction_$36 {
1556
- kind: ASTKinds.ArithmeticLogic8Instruction_$36;
1557
- }
1558
- export interface ArithmeticLogic8Instruction_$37 {
1559
- kind: ASTKinds.ArithmeticLogic8Instruction_$37;
1560
- }
1561
- export interface ArithmeticLogic8Instruction_$38 {
1562
- kind: ASTKinds.ArithmeticLogic8Instruction_$38;
1563
- }
1564
- export interface ArithmeticLogic8Instruction_$39 {
1565
- kind: ASTKinds.ArithmeticLogic8Instruction_$39;
1566
- }
1567
- export type IncrementDecrement8Instruction = IncrementDecrement8Instruction_1 | IncrementDecrement8Instruction_2 | IncrementDecrement8Instruction_3 | IncrementDecrement8Instruction_4 | IncrementDecrement8Instruction_5 | IncrementDecrement8Instruction_6 | IncrementDecrement8Instruction_7 | IncrementDecrement8Instruction_8;
1568
- export declare class IncrementDecrement8Instruction_1 {
1569
- kind: ASTKinds.IncrementDecrement8Instruction_1;
1570
- r: r;
1571
- elements: AstElements;
1572
- constructor(r: r);
1573
- }
1574
- export declare class IncrementDecrement8Instruction_2 {
1575
- kind: ASTKinds.IncrementDecrement8Instruction_2;
1576
- elements: AstElements;
1577
- constructor();
1578
- }
1579
- export declare class IncrementDecrement8Instruction_3 {
1580
- kind: ASTKinds.IncrementDecrement8Instruction_3;
1581
- i: IX;
1582
- elements: AstElements;
1583
- constructor(i: IX);
1584
- }
1585
- export declare class IncrementDecrement8Instruction_4 {
1586
- kind: ASTKinds.IncrementDecrement8Instruction_4;
1587
- i: IY;
1588
- elements: AstElements;
1589
- constructor(i: IY);
1590
- }
1591
- export declare class IncrementDecrement8Instruction_5 {
1592
- kind: ASTKinds.IncrementDecrement8Instruction_5;
1593
- r: r;
1594
- elements: AstElements;
1595
- constructor(r: r);
1596
- }
1597
- export declare class IncrementDecrement8Instruction_6 {
1598
- kind: ASTKinds.IncrementDecrement8Instruction_6;
1599
- elements: AstElements;
1600
- constructor();
1601
- }
1602
- export declare class IncrementDecrement8Instruction_7 {
1603
- kind: ASTKinds.IncrementDecrement8Instruction_7;
1604
- i: IX;
1605
- elements: AstElements;
1606
- constructor(i: IX);
1607
- }
1608
- export declare class IncrementDecrement8Instruction_8 {
1609
- kind: ASTKinds.IncrementDecrement8Instruction_8;
1610
- i: IY;
1611
- elements: AstElements;
1612
- constructor(i: IY);
1613
- }
1614
- export type GeneralPurposeArithmeticInstruction = GeneralPurposeArithmeticInstruction_1 | GeneralPurposeArithmeticInstruction_2 | GeneralPurposeArithmeticInstruction_3 | GeneralPurposeArithmeticInstruction_4 | GeneralPurposeArithmeticInstruction_5;
1615
- export declare class GeneralPurposeArithmeticInstruction_1 {
1616
- kind: ASTKinds.GeneralPurposeArithmeticInstruction_1;
1617
- elements: AstElements;
1618
- constructor();
1619
- }
1620
- export declare class GeneralPurposeArithmeticInstruction_2 {
1621
- kind: ASTKinds.GeneralPurposeArithmeticInstruction_2;
1622
- elements: AstElements;
1623
- constructor();
1624
- }
1625
- export declare class GeneralPurposeArithmeticInstruction_3 {
1626
- kind: ASTKinds.GeneralPurposeArithmeticInstruction_3;
1627
- elements: AstElements;
1628
- constructor();
1629
- }
1630
- export declare class GeneralPurposeArithmeticInstruction_4 {
1631
- kind: ASTKinds.GeneralPurposeArithmeticInstruction_4;
1632
- elements: AstElements;
1633
- constructor();
1634
- }
1635
- export declare class GeneralPurposeArithmeticInstruction_5 {
1636
- kind: ASTKinds.GeneralPurposeArithmeticInstruction_5;
1637
- elements: AstElements;
1638
- constructor();
1639
- }
1640
- export type CpuControlGroupInstruction = CpuControlGroupInstruction_1 | CpuControlGroupInstruction_2 | CpuControlGroupInstruction_3 | CpuControlGroupInstruction_4 | CpuControlGroupInstruction_5;
1641
- export declare class CpuControlGroupInstruction_1 {
1642
- kind: ASTKinds.CpuControlGroupInstruction_1;
1643
- elements: AstElements;
1644
- constructor();
1645
- }
1646
- export declare class CpuControlGroupInstruction_2 {
1647
- kind: ASTKinds.CpuControlGroupInstruction_2;
1648
- elements: AstElements;
1649
- constructor();
1650
- }
1651
- export declare class CpuControlGroupInstruction_3 {
1652
- kind: ASTKinds.CpuControlGroupInstruction_3;
1653
- elements: AstElements;
1654
- constructor();
1655
- }
1656
- export declare class CpuControlGroupInstruction_4 {
1657
- kind: ASTKinds.CpuControlGroupInstruction_4;
1658
- elements: AstElements;
1659
- constructor();
1660
- }
1661
- export declare class CpuControlGroupInstruction_5 {
1662
- kind: ASTKinds.CpuControlGroupInstruction_5;
1663
- m: string;
1664
- elements: AstElements;
1665
- constructor(m: string);
1666
- }
1667
- export type ArithmeticLogic16Instruction = ArithmeticLogic16Instruction_1 | ArithmeticLogic16Instruction_2 | ArithmeticLogic16Instruction_3 | ArithmeticLogic16Instruction_4 | ArithmeticLogic16Instruction_5 | ArithmeticLogic16Instruction_6 | ArithmeticLogic16Instruction_7 | ArithmeticLogic16Instruction_8 | ArithmeticLogic16Instruction_9 | ArithmeticLogic16Instruction_10 | ArithmeticLogic16Instruction_11;
1668
- export declare class ArithmeticLogic16Instruction_1 {
1669
- kind: ASTKinds.ArithmeticLogic16Instruction_1;
1670
- ss: ss;
1671
- elements: AstElements;
1672
- constructor(ss: ss);
1673
- }
1674
- export declare class ArithmeticLogic16Instruction_2 {
1675
- kind: ASTKinds.ArithmeticLogic16Instruction_2;
1676
- ss: ss;
1677
- elements: AstElements;
1678
- constructor(ss: ss);
1679
- }
1680
- export declare class ArithmeticLogic16Instruction_3 {
1681
- kind: ASTKinds.ArithmeticLogic16Instruction_3;
1682
- ss: ss;
1683
- elements: AstElements;
1684
- constructor(ss: ss);
1685
- }
1686
- export declare class ArithmeticLogic16Instruction_4 {
1687
- kind: ASTKinds.ArithmeticLogic16Instruction_4;
1688
- pp: pp;
1689
- elements: AstElements;
1690
- constructor(pp: pp);
1691
- }
1692
- export declare class ArithmeticLogic16Instruction_5 {
1693
- kind: ASTKinds.ArithmeticLogic16Instruction_5;
1694
- rr: rr;
1695
- elements: AstElements;
1696
- constructor(rr: rr);
1697
- }
1698
- export declare class ArithmeticLogic16Instruction_6 {
1699
- kind: ASTKinds.ArithmeticLogic16Instruction_6;
1700
- ss: ss;
1701
- elements: AstElements;
1702
- constructor(ss: ss);
1703
- }
1704
- export declare class ArithmeticLogic16Instruction_7 {
1705
- kind: ASTKinds.ArithmeticLogic16Instruction_7;
1706
- elements: AstElements;
1707
- constructor();
1708
- }
1709
- export declare class ArithmeticLogic16Instruction_8 {
1710
- kind: ASTKinds.ArithmeticLogic16Instruction_8;
1711
- elements: AstElements;
1712
- constructor();
1713
- }
1714
- export declare class ArithmeticLogic16Instruction_9 {
1715
- kind: ASTKinds.ArithmeticLogic16Instruction_9;
1716
- ss: ss;
1717
- elements: AstElements;
1718
- constructor(ss: ss);
1719
- }
1720
- export declare class ArithmeticLogic16Instruction_10 {
1721
- kind: ASTKinds.ArithmeticLogic16Instruction_10;
1722
- elements: AstElements;
1723
- constructor();
1724
- }
1725
- export declare class ArithmeticLogic16Instruction_11 {
1726
- kind: ASTKinds.ArithmeticLogic16Instruction_11;
1727
- elements: AstElements;
1728
- constructor();
1729
- }
1730
- export type RotateShiftInstruction = RotateShiftInstruction_1 | RotateShiftInstruction_2 | RotateShiftInstruction_3 | RotateShiftInstruction_4 | RotateShiftInstruction_5 | RotateShiftInstruction_6 | RotateShiftInstruction_7 | RotateShiftInstruction_8 | RotateShiftInstruction_9 | RotateShiftInstruction_10 | RotateShiftInstruction_11 | RotateShiftInstruction_12 | RotateShiftInstruction_13 | RotateShiftInstruction_14 | RotateShiftInstruction_15 | RotateShiftInstruction_16 | RotateShiftInstruction_17 | RotateShiftInstruction_18 | RotateShiftInstruction_19 | RotateShiftInstruction_20 | RotateShiftInstruction_21 | RotateShiftInstruction_22 | RotateShiftInstruction_23 | RotateShiftInstruction_24 | RotateShiftInstruction_25 | RotateShiftInstruction_26 | RotateShiftInstruction_27 | RotateShiftInstruction_28 | RotateShiftInstruction_29 | RotateShiftInstruction_30 | RotateShiftInstruction_31 | RotateShiftInstruction_32 | RotateShiftInstruction_33 | RotateShiftInstruction_34;
1731
- export declare class RotateShiftInstruction_1 {
1732
- kind: ASTKinds.RotateShiftInstruction_1;
1733
- elements: AstElements;
1734
- constructor();
1735
- }
1736
- export declare class RotateShiftInstruction_2 {
1737
- kind: ASTKinds.RotateShiftInstruction_2;
1738
- elements: AstElements;
1739
- constructor();
1740
- }
1741
- export declare class RotateShiftInstruction_3 {
1742
- kind: ASTKinds.RotateShiftInstruction_3;
1743
- elements: AstElements;
1744
- constructor();
1745
- }
1746
- export declare class RotateShiftInstruction_4 {
1747
- kind: ASTKinds.RotateShiftInstruction_4;
1748
- elements: AstElements;
1749
- constructor();
1750
- }
1751
- export declare class RotateShiftInstruction_5 {
1752
- kind: ASTKinds.RotateShiftInstruction_5;
1753
- r: r;
1754
- elements: AstElements;
1755
- constructor(r: r);
1756
- }
1757
- export declare class RotateShiftInstruction_6 {
1758
- kind: ASTKinds.RotateShiftInstruction_6;
1759
- elements: AstElements;
1760
- constructor();
1761
- }
1762
- export declare class RotateShiftInstruction_7 {
1763
- kind: ASTKinds.RotateShiftInstruction_7;
1764
- i: IX;
1765
- elements: AstElements;
1766
- constructor(i: IX);
1767
- }
1768
- export declare class RotateShiftInstruction_8 {
1769
- kind: ASTKinds.RotateShiftInstruction_8;
1770
- i: IY;
1771
- elements: AstElements;
1772
- constructor(i: IY);
1773
- }
1774
- export declare class RotateShiftInstruction_9 {
1775
- kind: ASTKinds.RotateShiftInstruction_9;
1776
- r: r;
1777
- elements: AstElements;
1778
- constructor(r: r);
1779
- }
1780
- export declare class RotateShiftInstruction_10 {
1781
- kind: ASTKinds.RotateShiftInstruction_10;
1782
- elements: AstElements;
1783
- constructor();
1784
- }
1785
- export declare class RotateShiftInstruction_11 {
1786
- kind: ASTKinds.RotateShiftInstruction_11;
1787
- i: IX;
1788
- elements: AstElements;
1789
- constructor(i: IX);
1790
- }
1791
- export declare class RotateShiftInstruction_12 {
1792
- kind: ASTKinds.RotateShiftInstruction_12;
1793
- i: IY;
1794
- elements: AstElements;
1795
- constructor(i: IY);
1796
- }
1797
- export declare class RotateShiftInstruction_13 {
1798
- kind: ASTKinds.RotateShiftInstruction_13;
1799
- r: r;
1800
- elements: AstElements;
1801
- constructor(r: r);
1802
- }
1803
- export declare class RotateShiftInstruction_14 {
1804
- kind: ASTKinds.RotateShiftInstruction_14;
1805
- elements: AstElements;
1806
- constructor();
1807
- }
1808
- export declare class RotateShiftInstruction_15 {
1809
- kind: ASTKinds.RotateShiftInstruction_15;
1810
- i: IX;
1811
- elements: AstElements;
1812
- constructor(i: IX);
1813
- }
1814
- export declare class RotateShiftInstruction_16 {
1815
- kind: ASTKinds.RotateShiftInstruction_16;
1816
- i: IY;
1817
- elements: AstElements;
1818
- constructor(i: IY);
1819
- }
1820
- export declare class RotateShiftInstruction_17 {
1821
- kind: ASTKinds.RotateShiftInstruction_17;
1822
- r: r;
1823
- elements: AstElements;
1824
- constructor(r: r);
1825
- }
1826
- export declare class RotateShiftInstruction_18 {
1827
- kind: ASTKinds.RotateShiftInstruction_18;
1828
- elements: AstElements;
1829
- constructor();
1830
- }
1831
- export declare class RotateShiftInstruction_19 {
1832
- kind: ASTKinds.RotateShiftInstruction_19;
1833
- i: IX;
1834
- elements: AstElements;
1835
- constructor(i: IX);
1836
- }
1837
- export declare class RotateShiftInstruction_20 {
1838
- kind: ASTKinds.RotateShiftInstruction_20;
1839
- i: IY;
1840
- elements: AstElements;
1841
- constructor(i: IY);
1842
- }
1843
- export declare class RotateShiftInstruction_21 {
1844
- kind: ASTKinds.RotateShiftInstruction_21;
1845
- r: r;
1846
- elements: AstElements;
1847
- constructor(r: r);
1848
- }
1849
- export declare class RotateShiftInstruction_22 {
1850
- kind: ASTKinds.RotateShiftInstruction_22;
1851
- elements: AstElements;
1852
- constructor();
1853
- }
1854
- export declare class RotateShiftInstruction_23 {
1855
- kind: ASTKinds.RotateShiftInstruction_23;
1856
- i: IX;
1857
- elements: AstElements;
1858
- constructor(i: IX);
1859
- }
1860
- export declare class RotateShiftInstruction_24 {
1861
- kind: ASTKinds.RotateShiftInstruction_24;
1862
- i: IY;
1863
- elements: AstElements;
1864
- constructor(i: IY);
1865
- }
1866
- export declare class RotateShiftInstruction_25 {
1867
- kind: ASTKinds.RotateShiftInstruction_25;
1868
- r: r;
1869
- elements: AstElements;
1870
- constructor(r: r);
1871
- }
1872
- export declare class RotateShiftInstruction_26 {
1873
- kind: ASTKinds.RotateShiftInstruction_26;
1874
- elements: AstElements;
1875
- constructor();
1876
- }
1877
- export declare class RotateShiftInstruction_27 {
1878
- kind: ASTKinds.RotateShiftInstruction_27;
1879
- i: IX;
1880
- elements: AstElements;
1881
- constructor(i: IX);
1882
- }
1883
- export declare class RotateShiftInstruction_28 {
1884
- kind: ASTKinds.RotateShiftInstruction_28;
1885
- i: IY;
1886
- elements: AstElements;
1887
- constructor(i: IY);
1888
- }
1889
- export declare class RotateShiftInstruction_29 {
1890
- kind: ASTKinds.RotateShiftInstruction_29;
1891
- r: r;
1892
- elements: AstElements;
1893
- constructor(r: r);
1894
- }
1895
- export declare class RotateShiftInstruction_30 {
1896
- kind: ASTKinds.RotateShiftInstruction_30;
1897
- elements: AstElements;
1898
- constructor();
1899
- }
1900
- export declare class RotateShiftInstruction_31 {
1901
- kind: ASTKinds.RotateShiftInstruction_31;
1902
- i: IX;
1903
- elements: AstElements;
1904
- constructor(i: IX);
1905
- }
1906
- export declare class RotateShiftInstruction_32 {
1907
- kind: ASTKinds.RotateShiftInstruction_32;
1908
- i: IY;
1909
- elements: AstElements;
1910
- constructor(i: IY);
1911
- }
1912
- export declare class RotateShiftInstruction_33 {
1913
- kind: ASTKinds.RotateShiftInstruction_33;
1914
- elements: AstElements;
1915
- constructor();
1916
- }
1917
- export declare class RotateShiftInstruction_34 {
1918
- kind: ASTKinds.RotateShiftInstruction_34;
1919
- elements: AstElements;
1920
- constructor();
1921
- }
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;
1923
- export declare class BitManipulationInstruction_1 {
1924
- kind: ASTKinds.BitManipulationInstruction_1;
1925
- b: b;
1926
- r: r;
1927
- elements: AstElements;
1928
- constructor(b: b, r: r);
1929
- }
1930
- export declare class BitManipulationInstruction_2 {
1931
- kind: ASTKinds.BitManipulationInstruction_2;
1932
- b: b;
1933
- elements: AstElements;
1934
- constructor(b: b);
1935
- }
1936
- export declare class BitManipulationInstruction_3 {
1937
- kind: ASTKinds.BitManipulationInstruction_3;
1938
- b: b;
1939
- i: IX;
1940
- elements: AstElements;
1941
- constructor(b: b, i: IX);
1942
- }
1943
- export declare class BitManipulationInstruction_4 {
1944
- kind: ASTKinds.BitManipulationInstruction_4;
1945
- b: b;
1946
- i: IY;
1947
- elements: AstElements;
1948
- constructor(b: b, i: IY);
1949
- }
1950
- export declare class BitManipulationInstruction_5 {
1951
- kind: ASTKinds.BitManipulationInstruction_5;
1952
- b: b;
1953
- r: r;
1954
- elements: AstElements;
1955
- constructor(b: b, r: r);
1956
- }
1957
- export declare class BitManipulationInstruction_6 {
1958
- kind: ASTKinds.BitManipulationInstruction_6;
1959
- b: b;
1960
- elements: AstElements;
1961
- constructor(b: b);
1962
- }
1963
- export declare class BitManipulationInstruction_7 {
1964
- kind: ASTKinds.BitManipulationInstruction_7;
1965
- b: b;
1966
- i: IX;
1967
- elements: AstElements;
1968
- constructor(b: b, i: IX);
1969
- }
1970
- export declare class BitManipulationInstruction_8 {
1971
- kind: ASTKinds.BitManipulationInstruction_8;
1972
- b: b;
1973
- i: IY;
1974
- elements: AstElements;
1975
- constructor(b: b, i: IY);
1976
- }
1977
- export declare class BitManipulationInstruction_9 {
1978
- kind: ASTKinds.BitManipulationInstruction_9;
1979
- b: b;
1980
- r: r;
1981
- elements: AstElements;
1982
- constructor(b: b, r: r);
1983
- }
1984
- export declare class BitManipulationInstruction_10 {
1985
- kind: ASTKinds.BitManipulationInstruction_10;
1986
- b: b;
1987
- elements: AstElements;
1988
- constructor(b: b);
1989
- }
1990
- export declare class BitManipulationInstruction_11 {
1991
- kind: ASTKinds.BitManipulationInstruction_11;
1992
- b: b;
1993
- i: IX;
1994
- elements: AstElements;
1995
- constructor(b: b, i: IX);
1996
- }
1997
- export declare class BitManipulationInstruction_12 {
1998
- kind: ASTKinds.BitManipulationInstruction_12;
1999
- b: b;
2000
- i: IY;
2001
- elements: AstElements;
2002
- constructor(b: b, i: IY);
2003
- }
2004
- export type Offset = Offset_1 | Offset_2;
2005
- export declare class Offset_1 {
2006
- kind: ASTKinds.Offset_1;
2007
- pos: PosInfo;
2008
- label: Label;
2009
- eval: EvalFunc;
2010
- constructor(pos: PosInfo, label: Label);
2011
- }
2012
- export declare class Offset_2 {
2013
- kind: ASTKinds.Offset_2;
2014
- e: Expression;
2015
- eval: EvalFunc;
2016
- constructor(e: Expression);
2017
- }
2018
- export type JumpInstruction = JumpInstruction_1 | JumpInstruction_2 | JumpInstruction_3 | JumpInstruction_4 | JumpInstruction_5 | JumpInstruction_6 | JumpInstruction_7 | JumpInstruction_8 | JumpInstruction_9 | JumpInstruction_10 | JumpInstruction_11;
2019
- export declare class JumpInstruction_1 {
2020
- kind: ASTKinds.JumpInstruction_1;
2021
- elements: AstElements;
2022
- constructor();
2023
- }
2024
- export declare class JumpInstruction_2 {
2025
- kind: ASTKinds.JumpInstruction_2;
2026
- elements: AstElements;
2027
- constructor();
2028
- }
2029
- export declare class JumpInstruction_3 {
2030
- kind: ASTKinds.JumpInstruction_3;
2031
- elements: AstElements;
2032
- constructor();
2033
- }
2034
- export declare class JumpInstruction_4 {
2035
- kind: ASTKinds.JumpInstruction_4;
2036
- pos: PosInfo;
2037
- ee: Expression;
2038
- elements: AstElements;
2039
- constructor(pos: PosInfo, ee: Expression);
2040
- }
2041
- export declare class JumpInstruction_5 {
2042
- kind: ASTKinds.JumpInstruction_5;
2043
- cc: cc;
2044
- pos: PosInfo;
2045
- ee: Expression;
2046
- elements: AstElements;
2047
- constructor(cc: cc, pos: PosInfo, ee: Expression);
2048
- }
2049
- export declare class JumpInstruction_6 {
2050
- kind: ASTKinds.JumpInstruction_6;
2051
- pos: PosInfo;
2052
- label: Label;
2053
- elements: AstElements;
2054
- constructor(pos: PosInfo, label: Label);
2055
- }
2056
- export declare class JumpInstruction_7 {
2057
- kind: ASTKinds.JumpInstruction_7;
2058
- pos: PosInfo;
2059
- e: Expression;
2060
- elements: AstElements;
2061
- constructor(pos: PosInfo, e: Expression);
2062
- }
2063
- export declare class JumpInstruction_8 {
2064
- kind: ASTKinds.JumpInstruction_8;
2065
- jj: jj;
2066
- pos: PosInfo;
2067
- label: Label;
2068
- elements: AstElements;
2069
- constructor(jj: jj, pos: PosInfo, label: Label);
2070
- }
2071
- export declare class JumpInstruction_9 {
2072
- kind: ASTKinds.JumpInstruction_9;
2073
- jj: jj;
2074
- pos: PosInfo;
2075
- e: Expression;
2076
- elements: AstElements;
2077
- constructor(jj: jj, pos: PosInfo, e: Expression);
2078
- }
2079
- export declare class JumpInstruction_10 {
2080
- kind: ASTKinds.JumpInstruction_10;
2081
- pos: PosInfo;
2082
- label: Label;
2083
- elements: AstElements;
2084
- constructor(pos: PosInfo, label: Label);
2085
- }
2086
- export declare class JumpInstruction_11 {
2087
- kind: ASTKinds.JumpInstruction_11;
2088
- pos: PosInfo;
2089
- e: Expression;
2090
- elements: AstElements;
2091
- constructor(pos: PosInfo, e: Expression);
2092
- }
2093
- export type CallInstruction = CallInstruction_1 | CallInstruction_2;
2094
- export declare class CallInstruction_1 {
2095
- kind: ASTKinds.CallInstruction_1;
2096
- pos: PosInfo;
2097
- ee: Expression;
2098
- elements: AstElements;
2099
- constructor(pos: PosInfo, ee: Expression);
2100
- }
2101
- export declare class CallInstruction_2 {
2102
- kind: ASTKinds.CallInstruction_2;
2103
- cc: cc;
2104
- pos: PosInfo;
2105
- ee: Expression;
2106
- elements: AstElements;
2107
- constructor(cc: cc, pos: PosInfo, ee: Expression);
2108
- }
2109
- export type ReturnInstruction = ReturnInstruction_1 | ReturnInstruction_2 | ReturnInstruction_3 | ReturnInstruction_4 | ReturnInstruction_5;
2110
- export declare class ReturnInstruction_1 {
2111
- kind: ASTKinds.ReturnInstruction_1;
2112
- elements: AstElements;
2113
- constructor();
2114
- }
2115
- export declare class ReturnInstruction_2 {
2116
- kind: ASTKinds.ReturnInstruction_2;
2117
- cc: cc;
2118
- elements: AstElements;
2119
- constructor(cc: cc);
2120
- }
2121
- export declare class ReturnInstruction_3 {
2122
- kind: ASTKinds.ReturnInstruction_3;
2123
- elements: AstElements;
2124
- constructor();
2125
- }
2126
- export declare class ReturnInstruction_4 {
2127
- kind: ASTKinds.ReturnInstruction_4;
2128
- elements: AstElements;
2129
- constructor();
2130
- }
2131
- export declare class ReturnInstruction_5 {
2132
- kind: ASTKinds.ReturnInstruction_5;
2133
- p: p;
2134
- elements: AstElements;
2135
- constructor(p: p);
2136
- }
2137
- export type InputInstruction = InputInstruction_1 | InputInstruction_2 | InputInstruction_3 | InputInstruction_4 | InputInstruction_5 | InputInstruction_6;
2138
- export declare class InputInstruction_1 {
2139
- kind: ASTKinds.InputInstruction_1;
2140
- r: r;
2141
- elements: AstElements;
2142
- constructor(r: r);
2143
- }
2144
- export declare class InputInstruction_2 {
2145
- kind: ASTKinds.InputInstruction_2;
2146
- pos: PosInfo;
2147
- n: Expression;
2148
- elements: AstElements;
2149
- constructor(pos: PosInfo, n: Expression);
2150
- }
2151
- export declare class InputInstruction_3 {
2152
- kind: ASTKinds.InputInstruction_3;
2153
- elements: AstElements;
2154
- constructor();
2155
- }
2156
- export declare class InputInstruction_4 {
2157
- kind: ASTKinds.InputInstruction_4;
2158
- elements: AstElements;
2159
- constructor();
2160
- }
2161
- export declare class InputInstruction_5 {
2162
- kind: ASTKinds.InputInstruction_5;
2163
- elements: AstElements;
2164
- constructor();
2165
- }
2166
- export declare class InputInstruction_6 {
2167
- kind: ASTKinds.InputInstruction_6;
2168
- elements: AstElements;
2169
- constructor();
2170
- }
2171
- export type OutputInstruction = OutputInstruction_1 | OutputInstruction_2 | OutputInstruction_3 | OutputInstruction_4 | OutputInstruction_5 | OutputInstruction_6;
2172
- export declare class OutputInstruction_1 {
2173
- kind: ASTKinds.OutputInstruction_1;
2174
- r: r;
2175
- elements: AstElements;
2176
- constructor(r: r);
2177
- }
2178
- export declare class OutputInstruction_2 {
2179
- kind: ASTKinds.OutputInstruction_2;
2180
- pos: PosInfo;
2181
- n: Expression;
2182
- elements: AstElements;
2183
- constructor(pos: PosInfo, n: Expression);
2184
- }
2185
- export declare class OutputInstruction_3 {
2186
- kind: ASTKinds.OutputInstruction_3;
2187
- elements: AstElements;
2188
- constructor();
2189
- }
2190
- export declare class OutputInstruction_4 {
2191
- kind: ASTKinds.OutputInstruction_4;
2192
- elements: AstElements;
2193
- constructor();
2194
- }
2195
- export declare class OutputInstruction_5 {
2196
- kind: ASTKinds.OutputInstruction_5;
2197
- elements: AstElements;
2198
- constructor();
2199
- }
2200
- export declare class OutputInstruction_6 {
2201
- kind: ASTKinds.OutputInstruction_6;
2202
- elements: AstElements;
2203
- constructor();
2204
- }
2205
- export type ByteDirective = ByteDirective_1 | ByteDirective_2 | ByteDirective_3 | ByteDirective_4 | ByteDirective_5;
2206
- export type ByteDirective_1 = string;
2207
- export type ByteDirective_2 = string;
2208
- export type ByteDirective_3 = string;
2209
- export type ByteDirective_4 = string;
2210
- export type ByteDirective_5 = string;
2211
- export type WordDirective = WordDirective_1 | WordDirective_2 | WordDirective_3;
2212
- export type WordDirective_1 = string;
2213
- export type WordDirective_2 = string;
2214
- export type WordDirective_3 = string;
2215
- export type BlockDirective = BlockDirective_1 | BlockDirective_2 | BlockDirective_3;
2216
- export type BlockDirective_1 = string;
2217
- export type BlockDirective_2 = string;
2218
- export type BlockDirective_3 = string;
2219
- export type ByteValue = ByteValue_1 | ByteValue_2 | ByteValue_3;
2220
- export declare class ByteValue_1 {
2221
- kind: ASTKinds.ByteValue_1;
2222
- s: QuottedStr;
2223
- elements: AstElements;
2224
- constructor(s: QuottedStr);
2225
- }
2226
- export declare class ByteValue_2 {
2227
- kind: ASTKinds.ByteValue_2;
2228
- s: DoubleQuottedStr;
2229
- elements: AstElements;
2230
- constructor(s: DoubleQuottedStr);
2231
- }
2232
- export declare class ByteValue_3 {
2233
- kind: ASTKinds.ByteValue_3;
2234
- pos: PosInfo;
2235
- e: Expression;
2236
- elements: AstElements;
2237
- constructor(pos: PosInfo, e: Expression);
2238
- }
2239
- export declare class WordValue {
2240
- kind: ASTKinds.WordValue;
2241
- pos: PosInfo;
2242
- e: Expression;
2243
- elements: AstElements;
2244
- constructor(pos: PosInfo, e: Expression);
2245
- }
2246
- export type DataDirective = DataDirective_1 | DataDirective_2 | DataDirective_3;
2247
- export declare class DataDirective_1 {
2248
- kind: ASTKinds.DataDirective_1;
2249
- pos0: PosInfo;
2250
- data0: ByteValue;
2251
- data: DataDirective_$0[];
2252
- elements: AstElements;
2253
- constructor(pos0: PosInfo, data0: ByteValue, data: DataDirective_$0[]);
2254
- }
2255
- export declare class DataDirective_2 {
2256
- kind: ASTKinds.DataDirective_2;
2257
- pos0: PosInfo;
2258
- data0: WordValue;
2259
- data: DataDirective_$1[];
2260
- elements: AstElements;
2261
- constructor(pos0: PosInfo, data0: WordValue, data: DataDirective_$1[]);
2262
- }
2263
- export declare class DataDirective_3 {
2264
- kind: ASTKinds.DataDirective_3;
2265
- pos0: PosInfo;
2266
- nn: Expression;
2267
- data: Nullable<DataDirective_$2>;
2268
- elements: AstElements;
2269
- constructor(pos0: PosInfo, nn: Expression, data: Nullable<DataDirective_$2>);
2270
- }
2271
- export interface DataDirective_$0 {
2272
- kind: ASTKinds.DataDirective_$0;
2273
- inner: ByteValue;
2274
- }
2275
- export interface DataDirective_$1 {
2276
- kind: ASTKinds.DataDirective_$1;
2277
- inner: WordValue;
2278
- }
2279
- export interface DataDirective_$2 {
2280
- kind: ASTKinds.DataDirective_$2;
2281
- pos1: PosInfo;
2282
- b: Expression;
2283
- }
2284
- export type EscapeSequence = EscapeSequence_1 | EscapeSequence_2 | EscapeSequence_3;
2285
- export type EscapeSequence_1 = SimpleEscapeSequence;
2286
- export type EscapeSequence_2 = OctalEscapeSequence;
2287
- export type EscapeSequence_3 = HexadecimalEscapeSequence;
2288
- export declare class SimpleEscapeSequence {
2289
- kind: ASTKinds.SimpleEscapeSequence;
2290
- pos: PosInfo;
2291
- raw: SimpleEscapeSequence_$0;
2292
- elements: AstElements;
2293
- constructor(pos: PosInfo, raw: SimpleEscapeSequence_$0);
2294
- }
2295
- export type SimpleEscapeSequence_$0 = SimpleEscapeSequence_$0_1 | SimpleEscapeSequence_$0_2;
2296
- export type SimpleEscapeSequence_$0_1 = string;
2297
- export type SimpleEscapeSequence_$0_2 = string;
2298
- export declare class OctalEscapeSequence {
2299
- kind: ASTKinds.OctalEscapeSequence;
2300
- pos: PosInfo;
2301
- raw: string;
2302
- elements: AstElements;
2303
- constructor(pos: PosInfo, raw: string);
2304
- }
2305
- export declare class HexadecimalEscapeSequence {
2306
- kind: ASTKinds.HexadecimalEscapeSequence;
2307
- pos: PosInfo;
2308
- raw: string;
2309
- elements: AstElements;
2310
- constructor(pos: PosInfo, raw: string);
2311
- }
2312
- export declare class NoQuoteChar {
2313
- kind: ASTKinds.NoQuoteChar;
2314
- pos: PosInfo;
2315
- raw: string;
2316
- elements: AstElements;
2317
- constructor(pos: PosInfo, raw: string);
2318
- }
2319
- export declare class NoDoubleQuoteChar {
2320
- kind: ASTKinds.NoDoubleQuoteChar;
2321
- pos: PosInfo;
2322
- raw: string;
2323
- elements: AstElements;
2324
- constructor(pos: PosInfo, raw: string);
2325
- }
2326
- export declare class QuottedStr {
2327
- kind: ASTKinds.QuottedStr;
2328
- pos: PosInfo;
2329
- chars: QuottedStr_$0[];
2330
- elements: AstElements;
2331
- constructor(pos: PosInfo, chars: QuottedStr_$0[]);
2332
- }
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;
2338
- pos: PosInfo;
2339
- chars: DoubleQuottedStr_$0[];
2340
- elements: AstElements;
2341
- constructor(pos: PosInfo, chars: DoubleQuottedStr_$0[]);
2342
- }
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;
2346
- export type Comment = string;
2347
- export interface OriginDirective {
2348
- kind: ASTKinds.OriginDirective;
2349
- address: nn;
2350
- }
2351
- export type Filename = Filename_1 | Filename_2;
2352
- export interface Filename_1 {
2353
- kind: ASTKinds.Filename_1;
2354
- raw: string;
2355
- }
2356
- export interface Filename_2 {
2357
- kind: ASTKinds.Filename_2;
2358
- raw: string;
2359
- }
2360
- export declare class IncludeDirective {
2361
- kind: ASTKinds.IncludeDirective;
2362
- pos: PosInfo;
2363
- name: Filename;
2364
- info: LinesInfo;
2365
- constructor(pos: PosInfo, name: Filename);
2366
- }
2367
- export declare class OutputDirective {
2368
- kind: ASTKinds.OutputDirective;
2369
- name: Filename;
2370
- sld: Nullable<OutputDirective_$0>;
2371
- void: void;
2372
- constructor(name: Filename, sld: Nullable<OutputDirective_$0>);
2373
- }
2374
- export interface OutputDirective_$0 {
2375
- kind: ASTKinds.OutputDirective_$0;
2376
- name: Filename;
2377
- }
2378
- export declare class DeviceDirective {
2379
- kind: ASTKinds.DeviceDirective;
2380
- raw: string;
2381
- void: void;
2382
- constructor(raw: string);
2383
- }
2384
- export interface EndDirective {
2385
- kind: ASTKinds.EndDirective;
2386
- }
2387
- export declare class Parser {
2388
- private readonly input;
2389
- private pos;
2390
- private negating;
2391
- private memoSafe;
2392
- constructor(input: string);
2393
- reset(pos: PosInfo): void;
2394
- finished(): boolean;
2395
- clearMemos(): void;
2396
- protected $scope$BitwiseOrExpression$memo: Map<number, [Nullable<BitwiseOrExpression>, PosInfo]>;
2397
- protected $scope$BitwiseXOrExpression$memo: Map<number, [Nullable<BitwiseXOrExpression>, PosInfo]>;
2398
- protected $scope$BitwiseAndExpression$memo: Map<number, [Nullable<BitwiseAndExpression>, PosInfo]>;
2399
- protected $scope$ShiftExpression$memo: Map<number, [Nullable<ShiftExpression>, PosInfo]>;
2400
- protected $scope$AdditiveExpression$memo: Map<number, [Nullable<AdditiveExpression>, PosInfo]>;
2401
- protected $scope$MultiplicativeExpression$memo: Map<number, [Nullable<MultiplicativeExpression>, PosInfo]>;
2402
- matchstart($$dpth: number, $$cr?: ErrorTracker): Nullable<start>;
2403
- matchr($$dpth: number, $$cr?: ErrorTracker): Nullable<r>;
2404
- matchr_1($$dpth: number, $$cr?: ErrorTracker): Nullable<r_1>;
2405
- matchr_2($$dpth: number, $$cr?: ErrorTracker): Nullable<r_2>;
2406
- matchr_3($$dpth: number, $$cr?: ErrorTracker): Nullable<r_3>;
2407
- matchr_4($$dpth: number, $$cr?: ErrorTracker): Nullable<r_4>;
2408
- matchr_5($$dpth: number, $$cr?: ErrorTracker): Nullable<r_5>;
2409
- matchr_6($$dpth: number, $$cr?: ErrorTracker): Nullable<r_6>;
2410
- matchr_7($$dpth: number, $$cr?: ErrorTracker): Nullable<r_7>;
2411
- matchdd($$dpth: number, $$cr?: ErrorTracker): Nullable<dd>;
2412
- matchdd_1($$dpth: number, $$cr?: ErrorTracker): Nullable<dd_1>;
2413
- matchdd_2($$dpth: number, $$cr?: ErrorTracker): Nullable<dd_2>;
2414
- matchdd_3($$dpth: number, $$cr?: ErrorTracker): Nullable<dd_3>;
2415
- matchdd_4($$dpth: number, $$cr?: ErrorTracker): Nullable<dd_4>;
2416
- matchss($$dpth: number, $$cr?: ErrorTracker): Nullable<ss>;
2417
- matchqq($$dpth: number, $$cr?: ErrorTracker): Nullable<qq>;
2418
- matchqq_1($$dpth: number, $$cr?: ErrorTracker): Nullable<qq_1>;
2419
- matchqq_2($$dpth: number, $$cr?: ErrorTracker): Nullable<qq_2>;
2420
- matchqq_3($$dpth: number, $$cr?: ErrorTracker): Nullable<qq_3>;
2421
- matchqq_4($$dpth: number, $$cr?: ErrorTracker): Nullable<qq_4>;
2422
- matchpp($$dpth: number, $$cr?: ErrorTracker): Nullable<pp>;
2423
- matchpp_1($$dpth: number, $$cr?: ErrorTracker): Nullable<pp_1>;
2424
- matchpp_2($$dpth: number, $$cr?: ErrorTracker): Nullable<pp_2>;
2425
- matchpp_3($$dpth: number, $$cr?: ErrorTracker): Nullable<pp_3>;
2426
- matchpp_4($$dpth: number, $$cr?: ErrorTracker): Nullable<pp_4>;
2427
- matchrr($$dpth: number, $$cr?: ErrorTracker): Nullable<rr>;
2428
- matchrr_1($$dpth: number, $$cr?: ErrorTracker): Nullable<rr_1>;
2429
- matchrr_2($$dpth: number, $$cr?: ErrorTracker): Nullable<rr_2>;
2430
- matchrr_3($$dpth: number, $$cr?: ErrorTracker): Nullable<rr_3>;
2431
- matchrr_4($$dpth: number, $$cr?: ErrorTracker): Nullable<rr_4>;
2432
- matchn($$dpth: number, $$cr?: ErrorTracker): Nullable<n>;
2433
- matchn_1($$dpth: number, $$cr?: ErrorTracker): Nullable<n_1>;
2434
- matchn_2($$dpth: number, $$cr?: ErrorTracker): Nullable<n_2>;
2435
- matchn_3($$dpth: number, $$cr?: ErrorTracker): Nullable<n_3>;
2436
- matchn_4($$dpth: number, $$cr?: ErrorTracker): Nullable<n_4>;
2437
- matchnn($$dpth: number, $$cr?: ErrorTracker): Nullable<nn>;
2438
- matchnn_1($$dpth: number, $$cr?: ErrorTracker): Nullable<nn_1>;
2439
- matchnn_2($$dpth: number, $$cr?: ErrorTracker): Nullable<nn_2>;
2440
- matchnn_3($$dpth: number, $$cr?: ErrorTracker): Nullable<nn_3>;
2441
- matchnn_4($$dpth: number, $$cr?: ErrorTracker): Nullable<nn_4>;
2442
- matchdecimal($$dpth: number, $$cr?: ErrorTracker): Nullable<decimal>;
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>;
2446
- matchbinary_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0>;
2447
- matchbinary_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0_1>;
2448
- matchbinary_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<binary_$0_2>;
2449
- matchoctal($$dpth: number, $$cr?: ErrorTracker): Nullable<octal>;
2450
- matchoctal_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_1>;
2451
- matchoctal_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_2>;
2452
- matchoctal_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0>;
2453
- matchoctal_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_1>;
2454
- matchoctal_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_2>;
2455
- matchoctal_$0_3($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$0_3>;
2456
- matchoctal_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1>;
2457
- matchoctal_$1_1($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1_1>;
2458
- matchoctal_$1_2($$dpth: number, $$cr?: ErrorTracker): Nullable<octal_$1_2>;
2459
- matchhexadecimal($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal>;
2460
- matchhexadecimal_1($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal_1>;
2461
- matchhexadecimal_2($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal_2>;
2462
- matchhexadecimal_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal_$0>;
2463
- matchhexadecimal_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal_$0_1>;
2464
- matchhexadecimal_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal_$0_2>;
2465
- matchhexadecimal_$0_3($$dpth: number, $$cr?: ErrorTracker): Nullable<hexadecimal_$0_3>;
2466
- matchd($$dpth: number, $$cr?: ErrorTracker): Nullable<d>;
2467
- matche($$dpth: number, $$cr?: ErrorTracker): Nullable<e>;
2468
- matchp($$dpth: number, $$cr?: ErrorTracker): Nullable<p>;
2469
- matchb($$dpth: number, $$cr?: ErrorTracker): Nullable<b>;
2470
- matchcc($$dpth: number, $$cr?: ErrorTracker): Nullable<cc>;
2471
- matchcc_1($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_1>;
2472
- matchcc_2($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_2>;
2473
- matchcc_3($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_3>;
2474
- matchcc_4($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_4>;
2475
- matchcc_5($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_5>;
2476
- matchcc_6($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_6>;
2477
- matchcc_7($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_7>;
2478
- matchcc_8($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_8>;
2479
- matchcc_9($$dpth: number, $$cr?: ErrorTracker): Nullable<cc_9>;
2480
- matchjj($$dpth: number, $$cr?: ErrorTracker): Nullable<jj>;
2481
- matchjj_1($$dpth: number, $$cr?: ErrorTracker): Nullable<jj_1>;
2482
- matchjj_2($$dpth: number, $$cr?: ErrorTracker): Nullable<jj_2>;
2483
- matchjj_3($$dpth: number, $$cr?: ErrorTracker): Nullable<jj_3>;
2484
- matchjj_4($$dpth: number, $$cr?: ErrorTracker): Nullable<jj_4>;
2485
- match__($$dpth: number, $$cr?: ErrorTracker): Nullable<__>;
2486
- match_($$dpth: number, $$cr?: ErrorTracker): Nullable<_>;
2487
- matcheos($$dpth: number, $$cr?: ErrorTracker): Nullable<eos>;
2488
- matcheol($$dpth: number, $$cr?: ErrorTracker): Nullable<eol>;
2489
- matchLines($$dpth: number, $$cr?: ErrorTracker): Nullable<Lines>;
2490
- matchLine($$dpth: number, $$cr?: ErrorTracker): Nullable<Line>;
2491
- matchLine_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Line_1>;
2492
- matchLine_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Line_2>;
2493
- matchLineEqual($$dpth: number, $$cr?: ErrorTracker): Nullable<LineEqual>;
2494
- matchLineStatement($$dpth: number, $$cr?: ErrorTracker): Nullable<LineStatement>;
2495
- matchStatement($$dpth: number, $$cr?: ErrorTracker): Nullable<Statement>;
2496
- matchStatement_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Statement_1>;
2497
- matchStatement_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Statement_2>;
2498
- matchStatement_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Statement_3>;
2499
- matchEqualDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<EqualDirective>;
2500
- matchDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive>;
2501
- matchDirective_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_1>;
2502
- matchDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_2>;
2503
- matchDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_3>;
2504
- matchDirective_4($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_4>;
2505
- matchDirective_5($$dpth: number, $$cr?: ErrorTracker): Nullable<Directive_5>;
2506
- matchForbiddenNames($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames>;
2507
- matchForbiddenNames_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_1>;
2508
- matchForbiddenNames_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_2>;
2509
- matchForbiddenNames_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_3>;
2510
- matchForbiddenNames_4($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_4>;
2511
- matchForbiddenNames_5($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenNames_5>;
2512
- matchForbiddenLabel($$dpth: number, $$cr?: ErrorTracker): Nullable<ForbiddenLabel>;
2513
- matchLabel($$dpth: number, $$cr?: ErrorTracker): Nullable<Label>;
2514
- matchLabelDeclaration($$dpth: number, $$cr?: ErrorTracker): Nullable<LabelDeclaration>;
2515
- matchExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<Expression>;
2516
- matchBitwiseOrExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<BitwiseOrExpression>;
2517
- matchBitwiseOrExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitwiseOrExpression_$0>;
2518
- matchBitwiseXOrExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<BitwiseXOrExpression>;
2519
- matchBitwiseXOrExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitwiseXOrExpression_$0>;
2520
- matchBitwiseAndExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<BitwiseAndExpression>;
2521
- matchBitwiseAndExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<BitwiseAndExpression_$0>;
2522
- matchShiftExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<ShiftExpression>;
2523
- matchShiftExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ShiftExpression_$0>;
2524
- matchShiftExpression_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ShiftExpression_$0_$0>;
2525
- matchShiftExpression_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ShiftExpression_$0_$0_1>;
2526
- matchShiftExpression_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ShiftExpression_$0_$0_2>;
2527
- matchAdditiveExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<AdditiveExpression>;
2528
- matchAdditiveExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<AdditiveExpression_$0>;
2529
- matchAdditiveExpression_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<AdditiveExpression_$0_$0>;
2530
- matchAdditiveExpression_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<AdditiveExpression_$0_$0_1>;
2531
- matchAdditiveExpression_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<AdditiveExpression_$0_$0_2>;
2532
- matchMultiplicativeExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<MultiplicativeExpression>;
2533
- matchMultiplicativeExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<MultiplicativeExpression_$0>;
2534
- matchMultiplicativeExpression_$0_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<MultiplicativeExpression_$0_$0>;
2535
- matchMultiplicativeExpression_$0_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<MultiplicativeExpression_$0_$0_1>;
2536
- matchMultiplicativeExpression_$0_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<MultiplicativeExpression_$0_$0_2>;
2537
- matchMultiplicativeExpression_$0_$0_3($$dpth: number, $$cr?: ErrorTracker): Nullable<MultiplicativeExpression_$0_$0_3>;
2538
- matchUnaryExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression>;
2539
- matchUnaryExpression_1($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression_1>;
2540
- matchUnaryExpression_2($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression_2>;
2541
- matchUnaryExpression_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression_$0>;
2542
- matchUnaryExpression_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression_$0_1>;
2543
- matchUnaryExpression_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression_$0_2>;
2544
- matchUnaryExpression_$0_3($$dpth: number, $$cr?: ErrorTracker): Nullable<UnaryExpression_$0_3>;
2545
- matchPrimaryExpression($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression>;
2546
- matchPrimaryExpression_1($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_1>;
2547
- matchPrimaryExpression_2($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_2>;
2548
- matchPrimaryExpression_3($$dpth: number, $$cr?: ErrorTracker): Nullable<PrimaryExpression_3>;
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>;
2560
- matchInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction>;
2561
- matchInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_1>;
2562
- matchInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_2>;
2563
- matchInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_3>;
2564
- matchInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_4>;
2565
- matchInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_5>;
2566
- matchInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_6>;
2567
- matchInstruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_7>;
2568
- matchInstruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_8>;
2569
- matchInstruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_9>;
2570
- matchInstruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_10>;
2571
- matchInstruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_11>;
2572
- matchInstruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_12>;
2573
- matchInstruction_13($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_13>;
2574
- matchInstruction_14($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_14>;
2575
- matchInstruction_15($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_15>;
2576
- matchInstruction_16($$dpth: number, $$cr?: ErrorTracker): Nullable<Instruction_16>;
2577
- matchLoad8Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction>;
2578
- matchLoad8Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_1>;
2579
- matchLoad8Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_2>;
2580
- matchLoad8Instruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_3>;
2581
- matchLoad8Instruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_4>;
2582
- matchLoad8Instruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_5>;
2583
- matchLoad8Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_6>;
2584
- matchLoad8Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_7>;
2585
- matchLoad8Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_8>;
2586
- matchLoad8Instruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_9>;
2587
- matchLoad8Instruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_10>;
2588
- matchLoad8Instruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_11>;
2589
- matchLoad8Instruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_12>;
2590
- matchLoad8Instruction_13($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_13>;
2591
- matchLoad8Instruction_14($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_14>;
2592
- matchLoad8Instruction_15($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_15>;
2593
- matchLoad8Instruction_16($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_16>;
2594
- matchLoad8Instruction_17($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_17>;
2595
- matchLoad8Instruction_18($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_18>;
2596
- matchLoad8Instruction_19($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_19>;
2597
- matchLoad8Instruction_20($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_20>;
2598
- matchLoad8Instruction_21($$dpth: number, $$cr?: ErrorTracker): Nullable<Load8Instruction_21>;
2599
- matchLoad16Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction>;
2600
- matchLoad16Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_1>;
2601
- matchLoad16Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_2>;
2602
- matchLoad16Instruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_3>;
2603
- matchLoad16Instruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_4>;
2604
- matchLoad16Instruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_5>;
2605
- matchLoad16Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_6>;
2606
- matchLoad16Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_7>;
2607
- matchLoad16Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_8>;
2608
- matchLoad16Instruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_9>;
2609
- matchLoad16Instruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_10>;
2610
- matchLoad16Instruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_11>;
2611
- matchLoad16Instruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_12>;
2612
- matchLoad16Instruction_13($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_13>;
2613
- matchLoad16Instruction_14($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_14>;
2614
- matchLoad16Instruction_15($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_15>;
2615
- matchLoad16Instruction_16($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_16>;
2616
- matchLoad16Instruction_17($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_17>;
2617
- matchLoad16Instruction_18($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_18>;
2618
- matchLoad16Instruction_19($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_19>;
2619
- matchLoad16Instruction_20($$dpth: number, $$cr?: ErrorTracker): Nullable<Load16Instruction_20>;
2620
- matchExchangeInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction>;
2621
- matchExchangeInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction_1>;
2622
- matchExchangeInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction_2>;
2623
- matchExchangeInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction_3>;
2624
- matchExchangeInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction_4>;
2625
- matchExchangeInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction_5>;
2626
- matchExchangeInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<ExchangeInstruction_6>;
2627
- matchBlockInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction>;
2628
- matchBlockInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_1>;
2629
- matchBlockInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_2>;
2630
- matchBlockInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_3>;
2631
- matchBlockInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_4>;
2632
- matchBlockInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_5>;
2633
- matchBlockInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_6>;
2634
- matchBlockInstruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_7>;
2635
- matchBlockInstruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockInstruction_8>;
2636
- matchArithmeticLogic8Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction>;
2637
- matchArithmeticLogic8Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_1>;
2638
- matchArithmeticLogic8Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_2>;
2639
- matchArithmeticLogic8Instruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_3>;
2640
- matchArithmeticLogic8Instruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_4>;
2641
- matchArithmeticLogic8Instruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_5>;
2642
- matchArithmeticLogic8Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_6>;
2643
- matchArithmeticLogic8Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_7>;
2644
- matchArithmeticLogic8Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_8>;
2645
- matchArithmeticLogic8Instruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_9>;
2646
- matchArithmeticLogic8Instruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_10>;
2647
- matchArithmeticLogic8Instruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_11>;
2648
- matchArithmeticLogic8Instruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_12>;
2649
- matchArithmeticLogic8Instruction_13($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_13>;
2650
- matchArithmeticLogic8Instruction_14($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_14>;
2651
- matchArithmeticLogic8Instruction_15($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_15>;
2652
- matchArithmeticLogic8Instruction_16($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_16>;
2653
- matchArithmeticLogic8Instruction_17($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_17>;
2654
- matchArithmeticLogic8Instruction_18($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_18>;
2655
- matchArithmeticLogic8Instruction_19($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_19>;
2656
- matchArithmeticLogic8Instruction_20($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_20>;
2657
- matchArithmeticLogic8Instruction_21($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_21>;
2658
- matchArithmeticLogic8Instruction_22($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_22>;
2659
- matchArithmeticLogic8Instruction_23($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_23>;
2660
- matchArithmeticLogic8Instruction_24($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_24>;
2661
- matchArithmeticLogic8Instruction_25($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_25>;
2662
- matchArithmeticLogic8Instruction_26($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_26>;
2663
- matchArithmeticLogic8Instruction_27($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_27>;
2664
- matchArithmeticLogic8Instruction_28($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_28>;
2665
- matchArithmeticLogic8Instruction_29($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_29>;
2666
- matchArithmeticLogic8Instruction_30($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_30>;
2667
- matchArithmeticLogic8Instruction_31($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_31>;
2668
- matchArithmeticLogic8Instruction_32($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_32>;
2669
- matchArithmeticLogic8Instruction_33($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_33>;
2670
- matchArithmeticLogic8Instruction_34($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_34>;
2671
- matchArithmeticLogic8Instruction_35($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_35>;
2672
- matchArithmeticLogic8Instruction_36($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_36>;
2673
- matchArithmeticLogic8Instruction_37($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_37>;
2674
- matchArithmeticLogic8Instruction_38($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_38>;
2675
- matchArithmeticLogic8Instruction_39($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_39>;
2676
- matchArithmeticLogic8Instruction_40($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_40>;
2677
- matchArithmeticLogic8Instruction_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$0>;
2678
- matchArithmeticLogic8Instruction_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$1>;
2679
- matchArithmeticLogic8Instruction_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$2>;
2680
- matchArithmeticLogic8Instruction_$3($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$3>;
2681
- matchArithmeticLogic8Instruction_$4($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$4>;
2682
- matchArithmeticLogic8Instruction_$5($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$5>;
2683
- matchArithmeticLogic8Instruction_$6($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$6>;
2684
- matchArithmeticLogic8Instruction_$7($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$7>;
2685
- matchArithmeticLogic8Instruction_$8($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$8>;
2686
- matchArithmeticLogic8Instruction_$9($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$9>;
2687
- matchArithmeticLogic8Instruction_$10($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$10>;
2688
- matchArithmeticLogic8Instruction_$11($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$11>;
2689
- matchArithmeticLogic8Instruction_$12($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$12>;
2690
- matchArithmeticLogic8Instruction_$13($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$13>;
2691
- matchArithmeticLogic8Instruction_$14($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$14>;
2692
- matchArithmeticLogic8Instruction_$15($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$15>;
2693
- matchArithmeticLogic8Instruction_$16($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$16>;
2694
- matchArithmeticLogic8Instruction_$17($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$17>;
2695
- matchArithmeticLogic8Instruction_$18($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$18>;
2696
- matchArithmeticLogic8Instruction_$19($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$19>;
2697
- matchArithmeticLogic8Instruction_$20($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$20>;
2698
- matchArithmeticLogic8Instruction_$21($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$21>;
2699
- matchArithmeticLogic8Instruction_$22($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$22>;
2700
- matchArithmeticLogic8Instruction_$23($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$23>;
2701
- matchArithmeticLogic8Instruction_$24($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$24>;
2702
- matchArithmeticLogic8Instruction_$25($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$25>;
2703
- matchArithmeticLogic8Instruction_$26($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$26>;
2704
- matchArithmeticLogic8Instruction_$27($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$27>;
2705
- matchArithmeticLogic8Instruction_$28($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$28>;
2706
- matchArithmeticLogic8Instruction_$29($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$29>;
2707
- matchArithmeticLogic8Instruction_$30($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$30>;
2708
- matchArithmeticLogic8Instruction_$31($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$31>;
2709
- matchArithmeticLogic8Instruction_$32($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$32>;
2710
- matchArithmeticLogic8Instruction_$33($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$33>;
2711
- matchArithmeticLogic8Instruction_$34($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$34>;
2712
- matchArithmeticLogic8Instruction_$35($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$35>;
2713
- matchArithmeticLogic8Instruction_$36($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$36>;
2714
- matchArithmeticLogic8Instruction_$37($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$37>;
2715
- matchArithmeticLogic8Instruction_$38($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$38>;
2716
- matchArithmeticLogic8Instruction_$39($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic8Instruction_$39>;
2717
- matchIncrementDecrement8Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction>;
2718
- matchIncrementDecrement8Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_1>;
2719
- matchIncrementDecrement8Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_2>;
2720
- matchIncrementDecrement8Instruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_3>;
2721
- matchIncrementDecrement8Instruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_4>;
2722
- matchIncrementDecrement8Instruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_5>;
2723
- matchIncrementDecrement8Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_6>;
2724
- matchIncrementDecrement8Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_7>;
2725
- matchIncrementDecrement8Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<IncrementDecrement8Instruction_8>;
2726
- matchGeneralPurposeArithmeticInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction>;
2727
- matchGeneralPurposeArithmeticInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_1>;
2728
- matchGeneralPurposeArithmeticInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_2>;
2729
- matchGeneralPurposeArithmeticInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_3>;
2730
- matchGeneralPurposeArithmeticInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_4>;
2731
- matchGeneralPurposeArithmeticInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<GeneralPurposeArithmeticInstruction_5>;
2732
- matchCpuControlGroupInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<CpuControlGroupInstruction>;
2733
- matchCpuControlGroupInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<CpuControlGroupInstruction_1>;
2734
- matchCpuControlGroupInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<CpuControlGroupInstruction_2>;
2735
- matchCpuControlGroupInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<CpuControlGroupInstruction_3>;
2736
- matchCpuControlGroupInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<CpuControlGroupInstruction_4>;
2737
- matchCpuControlGroupInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<CpuControlGroupInstruction_5>;
2738
- matchArithmeticLogic16Instruction($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction>;
2739
- matchArithmeticLogic16Instruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_1>;
2740
- matchArithmeticLogic16Instruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_2>;
2741
- matchArithmeticLogic16Instruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_3>;
2742
- matchArithmeticLogic16Instruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_4>;
2743
- matchArithmeticLogic16Instruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_5>;
2744
- matchArithmeticLogic16Instruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_6>;
2745
- matchArithmeticLogic16Instruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_7>;
2746
- matchArithmeticLogic16Instruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_8>;
2747
- matchArithmeticLogic16Instruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_9>;
2748
- matchArithmeticLogic16Instruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_10>;
2749
- matchArithmeticLogic16Instruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<ArithmeticLogic16Instruction_11>;
2750
- matchRotateShiftInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction>;
2751
- matchRotateShiftInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_1>;
2752
- matchRotateShiftInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_2>;
2753
- matchRotateShiftInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_3>;
2754
- matchRotateShiftInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_4>;
2755
- matchRotateShiftInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_5>;
2756
- matchRotateShiftInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_6>;
2757
- matchRotateShiftInstruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_7>;
2758
- matchRotateShiftInstruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_8>;
2759
- matchRotateShiftInstruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_9>;
2760
- matchRotateShiftInstruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_10>;
2761
- matchRotateShiftInstruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_11>;
2762
- matchRotateShiftInstruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_12>;
2763
- matchRotateShiftInstruction_13($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_13>;
2764
- matchRotateShiftInstruction_14($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_14>;
2765
- matchRotateShiftInstruction_15($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_15>;
2766
- matchRotateShiftInstruction_16($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_16>;
2767
- matchRotateShiftInstruction_17($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_17>;
2768
- matchRotateShiftInstruction_18($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_18>;
2769
- matchRotateShiftInstruction_19($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_19>;
2770
- matchRotateShiftInstruction_20($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_20>;
2771
- matchRotateShiftInstruction_21($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_21>;
2772
- matchRotateShiftInstruction_22($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_22>;
2773
- matchRotateShiftInstruction_23($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_23>;
2774
- matchRotateShiftInstruction_24($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_24>;
2775
- matchRotateShiftInstruction_25($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_25>;
2776
- matchRotateShiftInstruction_26($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_26>;
2777
- matchRotateShiftInstruction_27($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_27>;
2778
- matchRotateShiftInstruction_28($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_28>;
2779
- matchRotateShiftInstruction_29($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_29>;
2780
- matchRotateShiftInstruction_30($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_30>;
2781
- matchRotateShiftInstruction_31($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_31>;
2782
- matchRotateShiftInstruction_32($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_32>;
2783
- matchRotateShiftInstruction_33($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_33>;
2784
- matchRotateShiftInstruction_34($$dpth: number, $$cr?: ErrorTracker): Nullable<RotateShiftInstruction_34>;
2785
- matchBitManipulationInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction>;
2786
- matchBitManipulationInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_1>;
2787
- matchBitManipulationInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_2>;
2788
- matchBitManipulationInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_3>;
2789
- matchBitManipulationInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_4>;
2790
- matchBitManipulationInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_5>;
2791
- matchBitManipulationInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_6>;
2792
- matchBitManipulationInstruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_7>;
2793
- matchBitManipulationInstruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_8>;
2794
- matchBitManipulationInstruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_9>;
2795
- matchBitManipulationInstruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_10>;
2796
- matchBitManipulationInstruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_11>;
2797
- matchBitManipulationInstruction_12($$dpth: number, $$cr?: ErrorTracker): Nullable<BitManipulationInstruction_12>;
2798
- matchOffset($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset>;
2799
- matchOffset_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset_1>;
2800
- matchOffset_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Offset_2>;
2801
- matchJumpInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction>;
2802
- matchJumpInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_1>;
2803
- matchJumpInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_2>;
2804
- matchJumpInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_3>;
2805
- matchJumpInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_4>;
2806
- matchJumpInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_5>;
2807
- matchJumpInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_6>;
2808
- matchJumpInstruction_7($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_7>;
2809
- matchJumpInstruction_8($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_8>;
2810
- matchJumpInstruction_9($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_9>;
2811
- matchJumpInstruction_10($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_10>;
2812
- matchJumpInstruction_11($$dpth: number, $$cr?: ErrorTracker): Nullable<JumpInstruction_11>;
2813
- matchCallInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<CallInstruction>;
2814
- matchCallInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<CallInstruction_1>;
2815
- matchCallInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<CallInstruction_2>;
2816
- matchReturnInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<ReturnInstruction>;
2817
- matchReturnInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ReturnInstruction_1>;
2818
- matchReturnInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ReturnInstruction_2>;
2819
- matchReturnInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ReturnInstruction_3>;
2820
- matchReturnInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<ReturnInstruction_4>;
2821
- matchReturnInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<ReturnInstruction_5>;
2822
- matchInputInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction>;
2823
- matchInputInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction_1>;
2824
- matchInputInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction_2>;
2825
- matchInputInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction_3>;
2826
- matchInputInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction_4>;
2827
- matchInputInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction_5>;
2828
- matchInputInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<InputInstruction_6>;
2829
- matchOutputInstruction($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction>;
2830
- matchOutputInstruction_1($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction_1>;
2831
- matchOutputInstruction_2($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction_2>;
2832
- matchOutputInstruction_3($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction_3>;
2833
- matchOutputInstruction_4($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction_4>;
2834
- matchOutputInstruction_5($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction_5>;
2835
- matchOutputInstruction_6($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputInstruction_6>;
2836
- matchByteDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteDirective>;
2837
- matchByteDirective_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteDirective_1>;
2838
- matchByteDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteDirective_2>;
2839
- matchByteDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteDirective_3>;
2840
- matchByteDirective_4($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteDirective_4>;
2841
- matchByteDirective_5($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteDirective_5>;
2842
- matchWordDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<WordDirective>;
2843
- matchWordDirective_1($$dpth: number, $$cr?: ErrorTracker): Nullable<WordDirective_1>;
2844
- matchWordDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<WordDirective_2>;
2845
- matchWordDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<WordDirective_3>;
2846
- matchBlockDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockDirective>;
2847
- matchBlockDirective_1($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockDirective_1>;
2848
- matchBlockDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockDirective_2>;
2849
- matchBlockDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<BlockDirective_3>;
2850
- matchByteValue($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteValue>;
2851
- matchByteValue_1($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteValue_1>;
2852
- matchByteValue_2($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteValue_2>;
2853
- matchByteValue_3($$dpth: number, $$cr?: ErrorTracker): Nullable<ByteValue_3>;
2854
- matchWordValue($$dpth: number, $$cr?: ErrorTracker): Nullable<WordValue>;
2855
- matchDataDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective>;
2856
- matchDataDirective_1($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective_1>;
2857
- matchDataDirective_2($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective_2>;
2858
- matchDataDirective_3($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective_3>;
2859
- matchDataDirective_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective_$0>;
2860
- matchDataDirective_$1($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective_$1>;
2861
- matchDataDirective_$2($$dpth: number, $$cr?: ErrorTracker): Nullable<DataDirective_$2>;
2862
- matchEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<EscapeSequence>;
2863
- matchEscapeSequence_1($$dpth: number, $$cr?: ErrorTracker): Nullable<EscapeSequence_1>;
2864
- matchEscapeSequence_2($$dpth: number, $$cr?: ErrorTracker): Nullable<EscapeSequence_2>;
2865
- matchEscapeSequence_3($$dpth: number, $$cr?: ErrorTracker): Nullable<EscapeSequence_3>;
2866
- matchSimpleEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<SimpleEscapeSequence>;
2867
- matchSimpleEscapeSequence_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<SimpleEscapeSequence_$0>;
2868
- matchSimpleEscapeSequence_$0_1($$dpth: number, $$cr?: ErrorTracker): Nullable<SimpleEscapeSequence_$0_1>;
2869
- matchSimpleEscapeSequence_$0_2($$dpth: number, $$cr?: ErrorTracker): Nullable<SimpleEscapeSequence_$0_2>;
2870
- matchOctalEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<OctalEscapeSequence>;
2871
- matchHexadecimalEscapeSequence($$dpth: number, $$cr?: ErrorTracker): Nullable<HexadecimalEscapeSequence>;
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>;
2882
- matchComment($$dpth: number, $$cr?: ErrorTracker): Nullable<Comment>;
2883
- matchOriginDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<OriginDirective>;
2884
- matchFilename($$dpth: number, $$cr?: ErrorTracker): Nullable<Filename>;
2885
- matchFilename_1($$dpth: number, $$cr?: ErrorTracker): Nullable<Filename_1>;
2886
- matchFilename_2($$dpth: number, $$cr?: ErrorTracker): Nullable<Filename_2>;
2887
- matchIncludeDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<IncludeDirective>;
2888
- matchOutputDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputDirective>;
2889
- matchOutputDirective_$0($$dpth: number, $$cr?: ErrorTracker): Nullable<OutputDirective_$0>;
2890
- matchDeviceDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<DeviceDirective>;
2891
- matchEndDirective($$dpth: number, $$cr?: ErrorTracker): Nullable<EndDirective>;
2892
- test(): boolean;
2893
- parse(): ParseResult;
2894
- mark(): PosInfo;
2895
- private loop;
2896
- private run;
2897
- private choice;
2898
- private regexAccept;
2899
- private tryConsume;
2900
- private noConsume;
2901
- private negate;
2902
- private memoise;
2903
- private match$EOF;
2904
- }
2905
- export declare function parse(s: string): ParseResult;
2906
- export interface ParseResult {
2907
- ast: Nullable<start>;
2908
- errs: SyntaxErr[];
2909
- }
2910
- export interface PosInfo {
2911
- readonly overallPos: number;
2912
- readonly line: number;
2913
- readonly offset: number;
2914
- }
2915
- export interface RegexMatch {
2916
- readonly kind: "RegexMatch";
2917
- readonly negated: boolean;
2918
- readonly literal: string;
2919
- }
2920
- export type EOFMatch = {
2921
- kind: "EOF";
2922
- negated: boolean;
2923
- };
2924
- export type MatchAttempt = RegexMatch | EOFMatch;
2925
- export declare class SyntaxErr {
2926
- pos: PosInfo;
2927
- expmatches: MatchAttempt[];
2928
- constructor(pos: PosInfo, expmatches: MatchAttempt[]);
2929
- toString(): string;
2930
- }
2931
- declare class ErrorTracker {
2932
- private mxpos;
2933
- private regexset;
2934
- private pmatches;
2935
- record(pos: PosInfo, result: any, att: MatchAttempt): void;
2936
- getErr(): SyntaxErr | null;
2937
- }
2938
- export {};