@andrivet/z80-assembler 1.0.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.
- package/index.d.ts +14 -0
- package/index.js +9 -0
- package/index.mjs +6604 -0
- package/lib/compiler/Ast.d.ts +201 -0
- package/lib/compiler/Compiler.d.ts +53 -0
- package/lib/compiler/Formatter.d.ts +14 -0
- package/lib/compiler/Generator.d.ts +41 -0
- package/lib/compiler/Labels.d.ts +46 -0
- package/lib/grammar/LowLevel.d.ts +68 -0
- package/lib/grammar/Parse.d.ts +38 -0
- package/lib/grammar/z80.d.ts +3370 -0
- package/lib/types/Error.d.ts +63 -0
- package/lib/types/Types.d.ts +40 -0
- package/package.json +12 -0
package/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function _(e,t=0){switch(e.toLowerCase()){case"b":return 0<<t;case"c":return 1<<t;case"d":return 2<<t;case"e":return 3<<t;case"h":return 4<<t;case"l":return 5<<t;case"a":return 7<<t;default:return console.log(`Invalid register name: ${e}`),0}}function R(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"hl":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function P(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"hl":return 2<<t;case"af":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function S(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"hl":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function Y(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"ix":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function T(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"iy":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function v(e,t=0){switch(e.toLowerCase()){case"nz":return 0<<t;case"z":return 1<<t;case"nc":return 2<<t;case"c":return 3<<t;case"po":return 4<<t;case"pe":return 5<<t;case"p":return 6<<t;case"s":case"m":return 7<<t;default:return console.log(`Invalid jump condition: ${e}`),0}}function k(e=""){switch(e.toLowerCase()){case"":return 24;case"nz":return 32;case"z":return 40;case"nc":return 48;case"c":return 56;default:return console.log(`Invalid relative jump condition: ${e}`),0}}function K(e,t=0){return(e<0||e>56||e%8!==0)&&console.log(`Invalid argument for RST: ${e}`),e/8<<t}function d(e){switch(e){case"0":return 70;case"1":return 86;case"2":return 94;default:return console.log(`Invalid interrupt mode: ${e}`),0}}const L=new Map;function $(){L.clear()}function tt(e,t,i){const n=L.get(t);if(!n){L.set(t,{expression:null,value:i??0,known:i!=null,used:!1});return}if(n.known&&n.value!=i)throw new m(h.fileName,e,`The value if the label '${t}' is redefined (old value: ${n.value}, new value: ${i})`);n.value=i??0,n.known=i!=null}function it(e,t,i){const n=L.get(t);if(!n){L.set(t,{expression:i,value:0,known:!1,used:!1});return}n.known||(n.expression=i)}function E(e,t=!0){const i=L.get(e);if(!i)return L.set(e,{expression:null,value:0,known:!1,used:!0}),null;if(t&&(i.used=!0),i.known)return i.value;if(i.expression==null)return null;const n=i.expression.eval();return n==null?null:(i.value=n,i.known=!0,n)}function nt(e){return L.get(e)?.used}function et(){return[...L.entries()].filter(([,e])=>!e.known&&e.value==null).map(([e])=>e)}class st{constructor(t,i,n,s){this.pos0=t,this.length=i,this.pos1=n,this.value=s,this.filename=h.fileName}get size(){const t=this.length.eval();if(t==null)throw new m(this.filename,this.pos0,"Unknown size for the data block");if(t<0)throw new m(this.filename,this.pos0,`Invalid size size for the data block: ${t}`);return t}getValue(){if(this.value==null||this.pos1==null)return 0;let t=this.value.eval();if(t==null)throw new m(this.filename,this.pos1,"Not able to determine a value");if(t<-256||t>255)throw new m(this.filename,this.pos1,`Invalid 8-bits value: ${t}`);return t<0&&(t=256+t),t}generate(){const t=new Array(this.size);return t.fill(this.getValue()),t}}class rt{constructor(t,i){this.pos=t,this.expression=i,this.filename=h.fileName}get size(){return 2}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the 16-bits value");if(t<-65536||t>65535)throw new m(this.filename,this.pos,`Invalid 16-bits value: ${t}`);return t<0&&(t=65536+t),[t&255,(t&65280)>>8]}}class N{constructor(t,i){this.pos=t,this.expression=i,this.filename=h.fileName}get size(){return 1}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the 8-bits value");if(t<-256||t>255)throw new m(this.filename,this.pos,`Invalid 8-bits value: ${t}`);return t<0&&(t=256+t),[t]}}class ct{constructor(t,i){this.pos=t,this.expression=i,this.filename=h.fileName}get size(){return 1}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the 8-bits value");if(t=-t,t<-256||t>255)throw new m(this.filename,this.pos,`Invalid 8-bits value: ${t}`);return t<0&&(t=256+t),[t]}}class ut{constructor(t,i){this.pos=t,this.expression=i,this.filename=h.fileName}get size(){return 1}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the offset value");if(t<-126||t>129)throw new m(this.filename,this.pos,`Invalid offset for JR instruction: ${t}`);return t-=2,t<0&&(t=256+t),[t]}}class lt{constructor(t,i){this.pos=t,this.label=i,this.filename=h.fileName}get size(){return 1}generate(t){const i=E(this.label);if(i==null)throw new m(this.filename,this.pos,`Not able to determine the value of label '${this.label}'`);let n=i-t;if(n<-126||n>129)throw new m(this.filename,this.pos,`Label ${this.label} is to far from JR instruction: ${n} bytes`);return n-=2,n<0&&(n=256+n),[n]}}function J(e){return e.generate!==void 0}function q(e){return J(e)?e.size:1}function C(e,t,i){return()=>{const n=t.eval();if(n==null)return null;if(e.length<=0)return n;const s=e[0].e.eval(),r=e.slice(1).reduce((c,u)=>{const o=u.e.eval();return c==null||o==null?null:i(c,o)},s);return r==null?null:i(r,n)}}function p(e,t,i){return()=>{const n=t.eval();if(n==null)return null;if(e.length<=0)return n;const s=e[0],r=e.slice(1).reduce((c,u)=>{const o=u.e.eval();return c==null||o==null?null:i[u.op](c,o)},s.e.eval());return r==null?null:i[s.op](r,n)}}function G(e,t){return()=>{const i=e.eval();return i==null?null:t(i)}}function ot(e,t,i){return()=>{const n=e.eval();return n==null?null:i[t](n)}}const at=(e,t)=>e|t,ht=(e,t)=>e^t,mt=(e,t)=>e&t,_t=(e,t)=>e<<t,gt=(e,t)=>e>>t,It=(e,t)=>e+t,xt=(e,t)=>e-t,wt=(e,t)=>e*t,At=(e,t)=>Math.trunc(e/t),Lt=(e,t)=>e%t,ft=e=>+e,St=e=>-e,kt=e=>~e,j=e=>e;function I(e,t){return new rt(e,t)}function A(e,t){return new N(e,t)}function l(e,t,i){return t==="-"?new ct(e,i):new N(e,i)}function B(e,t){return new ut(e,t)}function D(e,t){return new lt(e,t)}function Et(e,t,i){return i.reduce((n,s)=>n.concat(s.inner.elements),t.elements)}function Rt(e,t,i){return i.reduce((n,s)=>n.concat(s.inner.elements),t.elements)}function vt(e,t,i,n){return new st(e,t,i,n)}function b(e,t){return t.length<=0?e:(F(t),Ct(e,t))}function F(e){for(const t of e)t.kind===w.LineEqual?it(t.label.pos,t.label.name,t.equal.e):t.kind===w.LineStatement&&t.statement?.kind===w.Statement_1&&F(t.statement.inc.lines.lines)}function Ct(e,t){for(const i of t)i.kind===w.LineStatement&&(i.label&&tt(i.label.pos,i.label.name,e),i.statement&&(e=y(e,i.statement)));return e}function y(e,t){switch(t.kind){case w.Statement_1:return b(e,t.linesinfo.lines);case w.Statement_2:return e+t.elements.reduce((i,n)=>i+q(n),0);case w.Statement_3:return t.address?t.address:e+t.elements.reduce((i,n)=>i+q(n),0)}}function M(e,t){let i=[];for(const n of t)if(!(n.kind!==w.LineStatement||!n.statement)){switch(n.statement?.kind){case w.Statement_1:i=i.concat(M(e,n.statement.linesinfo.lines));break;case w.Statement_2:case w.Statement_3:i=i.concat(pt(e,n.statement.elements));break}e=y(e,n.statement)}return i}function pt(e,t){return t.reduce((i,n)=>i.concat(J(n)?n.generate(e):[n]),[])}function V(e){return`|SLD.data.version|1
|
|
2
|
+
${e.filename}|1||0|-1|-1|Z|pages.size:65536,pages.count:32,slots.count:1,slots.adr:0
|
|
3
|
+
`+z(0,e)}function z(e,t){const i=t.filename;let n=1,s="";for(const r of t.lines)s+=Bt(i,n,r)+Dt(i,n,r,e),n+=1,r.kind===w.LineStatement&&r.statement&&(e=y(e,r.statement));return s}function Bt(e,t,i){if(!i.label)return"";const n=E(i.label.name,!1),s=nt(i.label.name);return i.kind===w.LineEqual?`${e}|${t}||0|-1|${n}|L|,${i.label.name},,+equ${s?",+used":""}
|
|
4
|
+
`:`${e}|${t}||0|0|${n}|L|,${i.label.name},${s?",+used":""}
|
|
5
|
+
`}function Dt(e,t,i,n){if(i.kind!==w.LineStatement)return"";let s=i.statement?.kind===w.Statement_2?`${e}|${t}||0|0|${n}|T|
|
|
6
|
+
`:"";return i.statement?.kind===w.Statement_1&&(s+=z(n,{filename:i.statement.inc.name.raw,lines:i.statement.linesinfo.lines})),s}const h={outputName:"",sldName:"",deviceName:"",basePath:"",fileName:"",getFileCode:()=>""};function U(e,t){h.outputName=e,h.sldName=t||e+".sld"}function X(e){h.deviceName=e}function W(e,t){const i=h.getFileCode(h.basePath+t),n=h.fileName;h.fileName=t;const s=Z(i);return h.fileName=n,{lines:s,filename:t}}function Z(e){e.endsWith(`
|
|
7
|
+
`)||(e+=`
|
|
8
|
+
`);const i=new Ar(e).parse();if(i.errs.length>0)throw m.fromSyntaxErr(h.fileName,i.errs[0]);return i.ast?.lines??[]}function bt(e){let t=e.lastIndexOf("/");return t===-1&&(t=e.lastIndexOf("\\")),t===-1?"":e.substring(0,t+1)}function yt(e){let t=e.lastIndexOf("/");return t===-1&&(t=e.lastIndexOf("\\")),t===-1?e:e.substring(t+1)}function Mt(e,t,i){const n=yt(e);h.outputName="program.P",h.basePath=bt(e),h.fileName=n,h.getFileCode=i;try{$();const s=Z(t);b(0,s);const r=et().join(", ");if(r.length>0)throw new m(h.fileName,{line:1,offset:0,overallPos:0},`Unknown value for labels: ${r}`);return{outputName:h.outputName,bytes:M(0,s),sld:V({lines:s,filename:n}),errs:[]}}catch(s){return{outputName:h.outputName,bytes:[],sld:"",errs:[m.fromAny(h.fileName,s)]}}}function f(e,t,i,n){let s=parseInt(t,i);if(isNaN(s))throw new m(h.fileName,e,`Number '${t}' is invalid in base ${i}.`);switch(n){case 1:if(s>255||s<-256)throw new m(h.fileName,e,`Number '${t}' does not fit into a byte.`);s<0&&(s=256+s);break;case 2:if(s>65535||s<-65536)throw new m(h.fileName,e,`Number '${t}' does not fit into a word.`);s<0&&(s=65536+s);break;default:throw new m(h.fileName,e,`Invalid number of bytes (${n})`)}return s}function H(e,t){const i=t.charCodeAt(0);if(i>127)throw new m(h.fileName,e,"Only ASCII characters are supported, use escape for other values.");return[i]}function qt(e){switch(e){case"a":return[7];case"b":return[8];case"e":return[27];case"f":return[12];case"n":return[10];case"r":return[13];case"t":return[9];case"v":return[11];case"'":case'"':case"?":case"\\":default:return[e.charCodeAt(0)]}}function Ot(e,t){const i=parseInt(t,8);if(i>255)throw new m(h.fileName,e,`Number '${t}' in octal escape sequence does not fit into a byte.`);return[i]}function Pt(e,t){const i=parseInt(t,16);if(i>255)throw new m(h.fileName,e,`Number '${t}' in hexadecimal escape sequence does not fit into a byte.`);return[i]}const O=new Map([["£",12],["$",13],[":",14],["?",15],["(",16],[")",17],[">",18],["<",19],["=",20],["+",21],["-",22],["*",23],["/",24],[";",25],[",",26],[".",27]]);function Nt(e,t){if(t>="A"&&t<"Z")return t.charCodeAt(0)-65+38;if(t>="a"&&t<"z")return t.charCodeAt(0)-97+166;if(t>="0"&&t<"9")return t.charCodeAt(0)-48+28;if(!O.has(t))throw new m(h.fileName,e,`Invalid ZX81 character: ${t}`);return O.get(t)}function Jt(e,t){return[...t].map(i=>Nt(e,i))}var w=(e=>(e.start="start",e.r_1="r_1",e.r_2="r_2",e.r_3="r_3",e.r_4="r_4",e.r_5="r_5",e.r_6="r_6",e.r_7="r_7",e.dd_1="dd_1",e.dd_2="dd_2",e.dd_3="dd_3",e.dd_4="dd_4",e.ss="ss",e.qq_1="qq_1",e.qq_2="qq_2",e.qq_3="qq_3",e.qq_4="qq_4",e.pp_1="pp_1",e.pp_2="pp_2",e.pp_3="pp_3",e.pp_4="pp_4",e.rr_1="rr_1",e.rr_2="rr_2",e.rr_3="rr_3",e.rr_4="rr_4",e.n_1="n_1",e.n_2="n_2",e.n_3="n_3",e.n_4="n_4",e.nn_1="nn_1",e.nn_2="nn_2",e.nn_3="nn_3",e.nn_4="nn_4",e.decimal="decimal",e.binary="binary",e.binary_$0_1="binary_$0_1",e.binary_$0_2="binary_$0_2",e.octal_1="octal_1",e.octal_2="octal_2",e.octal_$0_1="octal_$0_1",e.octal_$0_2="octal_$0_2",e.octal_$1_1="octal_$1_1",e.octal_$1_2="octal_$1_2",e.hexadecimal_1="hexadecimal_1",e.hexadecimal_2="hexadecimal_2",e.hexadecimal_$0_1="hexadecimal_$0_1",e.hexadecimal_$0_2="hexadecimal_$0_2",e.hexadecimal_$0_3="hexadecimal_$0_3",e.d="d",e.e="e",e.p="p",e.b="b",e.cc_1="cc_1",e.cc_2="cc_2",e.cc_3="cc_3",e.cc_4="cc_4",e.cc_5="cc_5",e.cc_6="cc_6",e.cc_7="cc_7",e.cc_8="cc_8",e.cc_9="cc_9",e.jj_1="jj_1",e.jj_2="jj_2",e.jj_3="jj_3",e.jj_4="jj_4",e.__="__",e._="_",e._eos="_eos",e.Lines="Lines",e.Line_1="Line_1",e.Line_2="Line_2",e.LineEqual="LineEqual",e.LineStatement="LineStatement",e.Statement_1="Statement_1",e.Statement_2="Statement_2",e.Statement_3="Statement_3",e.EqualDirective="EqualDirective",e.Directive_1="Directive_1",e.Directive_2="Directive_2",e.Directive_3="Directive_3",e.Directive_4="Directive_4",e.ForbiddenNames_1="ForbiddenNames_1",e.ForbiddenNames_2="ForbiddenNames_2",e.ForbiddenNames_3="ForbiddenNames_3",e.ForbiddenNames_4="ForbiddenNames_4",e.ForbiddenNames_5="ForbiddenNames_5",e.ForbiddenLabel="ForbiddenLabel",e.Label="Label",e.LabelDeclaration="LabelDeclaration",e.Expression="Expression",e.BitwiseOrExpression="BitwiseOrExpression",e.BitwiseOrExpression_$0="BitwiseOrExpression_$0",e.BitwiseXOrExpression="BitwiseXOrExpression",e.BitwiseXOrExpression_$0="BitwiseXOrExpression_$0",e.BitwiseAndExpression="BitwiseAndExpression",e.BitwiseAndExpression_$0="BitwiseAndExpression_$0",e.ShiftExpression="ShiftExpression",e.ShiftExpression_$0="ShiftExpression_$0",e.ShiftExpression_$0_$0_1="ShiftExpression_$0_$0_1",e.ShiftExpression_$0_$0_2="ShiftExpression_$0_$0_2",e.AdditiveExpression="AdditiveExpression",e.AdditiveExpression_$0="AdditiveExpression_$0",e.AdditiveExpression_$0_$0_1="AdditiveExpression_$0_$0_1",e.AdditiveExpression_$0_$0_2="AdditiveExpression_$0_$0_2",e.MultiplicativeExpression="MultiplicativeExpression",e.MultiplicativeExpression_$0="MultiplicativeExpression_$0",e.MultiplicativeExpression_$0_$0_1="MultiplicativeExpression_$0_$0_1",e.MultiplicativeExpression_$0_$0_2="MultiplicativeExpression_$0_$0_2",e.MultiplicativeExpression_$0_$0_3="MultiplicativeExpression_$0_$0_3",e.UnaryExpression_1="UnaryExpression_1",e.UnaryExpression_2="UnaryExpression_2",e.UnaryExpression_$0_1="UnaryExpression_$0_1",e.UnaryExpression_$0_2="UnaryExpression_$0_2",e.UnaryExpression_$0_3="UnaryExpression_$0_3",e.PrimaryExpression_1="PrimaryExpression_1",e.PrimaryExpression_2="PrimaryExpression_2",e.PrimaryExpression_3="PrimaryExpression_3",e.Reg8="Reg8",e.Instruction_1="Instruction_1",e.Instruction_2="Instruction_2",e.Instruction_3="Instruction_3",e.Instruction_4="Instruction_4",e.Instruction_5="Instruction_5",e.Instruction_6="Instruction_6",e.Instruction_7="Instruction_7",e.Instruction_8="Instruction_8",e.Instruction_9="Instruction_9",e.Instruction_10="Instruction_10",e.Instruction_11="Instruction_11",e.Instruction_12="Instruction_12",e.Instruction_13="Instruction_13",e.Instruction_14="Instruction_14",e.Instruction_15="Instruction_15",e.Instruction_16="Instruction_16",e.Load8Instruction_1="Load8Instruction_1",e.Load8Instruction_2="Load8Instruction_2",e.Load8Instruction_3="Load8Instruction_3",e.Load8Instruction_4="Load8Instruction_4",e.Load8Instruction_5="Load8Instruction_5",e.Load8Instruction_6="Load8Instruction_6",e.Load8Instruction_7="Load8Instruction_7",e.Load8Instruction_8="Load8Instruction_8",e.Load8Instruction_9="Load8Instruction_9",e.Load8Instruction_10="Load8Instruction_10",e.Load8Instruction_11="Load8Instruction_11",e.Load8Instruction_12="Load8Instruction_12",e.Load8Instruction_13="Load8Instruction_13",e.Load8Instruction_14="Load8Instruction_14",e.Load8Instruction_15="Load8Instruction_15",e.Load8Instruction_16="Load8Instruction_16",e.Load8Instruction_17="Load8Instruction_17",e.Load8Instruction_18="Load8Instruction_18",e.Load8Instruction_19="Load8Instruction_19",e.Load8Instruction_20="Load8Instruction_20",e.Load8Instruction_21="Load8Instruction_21",e.Load8Instruction_$0_1="Load8Instruction_$0_1",e.Load8Instruction_$0_2="Load8Instruction_$0_2",e.Load8Instruction_$1_1="Load8Instruction_$1_1",e.Load8Instruction_$1_2="Load8Instruction_$1_2",e.Load8Instruction_$2_1="Load8Instruction_$2_1",e.Load8Instruction_$2_2="Load8Instruction_$2_2",e.Load8Instruction_$3_1="Load8Instruction_$3_1",e.Load8Instruction_$3_2="Load8Instruction_$3_2",e.Load8Instruction_$4_1="Load8Instruction_$4_1",e.Load8Instruction_$4_2="Load8Instruction_$4_2",e.Load8Instruction_$5_1="Load8Instruction_$5_1",e.Load8Instruction_$5_2="Load8Instruction_$5_2",e.Load16Instruction_1="Load16Instruction_1",e.Load16Instruction_2="Load16Instruction_2",e.Load16Instruction_3="Load16Instruction_3",e.Load16Instruction_4="Load16Instruction_4",e.Load16Instruction_5="Load16Instruction_5",e.Load16Instruction_6="Load16Instruction_6",e.Load16Instruction_7="Load16Instruction_7",e.Load16Instruction_8="Load16Instruction_8",e.Load16Instruction_9="Load16Instruction_9",e.Load16Instruction_10="Load16Instruction_10",e.Load16Instruction_11="Load16Instruction_11",e.Load16Instruction_12="Load16Instruction_12",e.Load16Instruction_13="Load16Instruction_13",e.Load16Instruction_14="Load16Instruction_14",e.Load16Instruction_15="Load16Instruction_15",e.Load16Instruction_16="Load16Instruction_16",e.Load16Instruction_17="Load16Instruction_17",e.Load16Instruction_18="Load16Instruction_18",e.Load16Instruction_19="Load16Instruction_19",e.Load16Instruction_20="Load16Instruction_20",e.ExchangeInstruction_1="ExchangeInstruction_1",e.ExchangeInstruction_2="ExchangeInstruction_2",e.ExchangeInstruction_3="ExchangeInstruction_3",e.ExchangeInstruction_4="ExchangeInstruction_4",e.ExchangeInstruction_5="ExchangeInstruction_5",e.ExchangeInstruction_6="ExchangeInstruction_6",e.BlockInstruction_1="BlockInstruction_1",e.BlockInstruction_2="BlockInstruction_2",e.BlockInstruction_3="BlockInstruction_3",e.BlockInstruction_4="BlockInstruction_4",e.BlockInstruction_5="BlockInstruction_5",e.BlockInstruction_6="BlockInstruction_6",e.BlockInstruction_7="BlockInstruction_7",e.BlockInstruction_8="BlockInstruction_8",e.ArithmeticLogic8Instruction_1="ArithmeticLogic8Instruction_1",e.ArithmeticLogic8Instruction_2="ArithmeticLogic8Instruction_2",e.ArithmeticLogic8Instruction_3="ArithmeticLogic8Instruction_3",e.ArithmeticLogic8Instruction_4="ArithmeticLogic8Instruction_4",e.ArithmeticLogic8Instruction_5="ArithmeticLogic8Instruction_5",e.ArithmeticLogic8Instruction_6="ArithmeticLogic8Instruction_6",e.ArithmeticLogic8Instruction_7="ArithmeticLogic8Instruction_7",e.ArithmeticLogic8Instruction_8="ArithmeticLogic8Instruction_8",e.ArithmeticLogic8Instruction_9="ArithmeticLogic8Instruction_9",e.ArithmeticLogic8Instruction_10="ArithmeticLogic8Instruction_10",e.ArithmeticLogic8Instruction_11="ArithmeticLogic8Instruction_11",e.ArithmeticLogic8Instruction_12="ArithmeticLogic8Instruction_12",e.ArithmeticLogic8Instruction_13="ArithmeticLogic8Instruction_13",e.ArithmeticLogic8Instruction_14="ArithmeticLogic8Instruction_14",e.ArithmeticLogic8Instruction_15="ArithmeticLogic8Instruction_15",e.ArithmeticLogic8Instruction_16="ArithmeticLogic8Instruction_16",e.ArithmeticLogic8Instruction_17="ArithmeticLogic8Instruction_17",e.ArithmeticLogic8Instruction_18="ArithmeticLogic8Instruction_18",e.ArithmeticLogic8Instruction_19="ArithmeticLogic8Instruction_19",e.ArithmeticLogic8Instruction_20="ArithmeticLogic8Instruction_20",e.ArithmeticLogic8Instruction_21="ArithmeticLogic8Instruction_21",e.ArithmeticLogic8Instruction_22="ArithmeticLogic8Instruction_22",e.ArithmeticLogic8Instruction_23="ArithmeticLogic8Instruction_23",e.ArithmeticLogic8Instruction_24="ArithmeticLogic8Instruction_24",e.ArithmeticLogic8Instruction_25="ArithmeticLogic8Instruction_25",e.ArithmeticLogic8Instruction_26="ArithmeticLogic8Instruction_26",e.ArithmeticLogic8Instruction_27="ArithmeticLogic8Instruction_27",e.ArithmeticLogic8Instruction_28="ArithmeticLogic8Instruction_28",e.ArithmeticLogic8Instruction_29="ArithmeticLogic8Instruction_29",e.ArithmeticLogic8Instruction_30="ArithmeticLogic8Instruction_30",e.ArithmeticLogic8Instruction_31="ArithmeticLogic8Instruction_31",e.ArithmeticLogic8Instruction_32="ArithmeticLogic8Instruction_32",e.ArithmeticLogic8Instruction_33="ArithmeticLogic8Instruction_33",e.ArithmeticLogic8Instruction_34="ArithmeticLogic8Instruction_34",e.ArithmeticLogic8Instruction_35="ArithmeticLogic8Instruction_35",e.ArithmeticLogic8Instruction_36="ArithmeticLogic8Instruction_36",e.ArithmeticLogic8Instruction_37="ArithmeticLogic8Instruction_37",e.ArithmeticLogic8Instruction_38="ArithmeticLogic8Instruction_38",e.ArithmeticLogic8Instruction_39="ArithmeticLogic8Instruction_39",e.ArithmeticLogic8Instruction_40="ArithmeticLogic8Instruction_40",e.ArithmeticLogic8Instruction_$0="ArithmeticLogic8Instruction_$0",e.ArithmeticLogic8Instruction_$1="ArithmeticLogic8Instruction_$1",e.ArithmeticLogic8Instruction_$2="ArithmeticLogic8Instruction_$2",e.ArithmeticLogic8Instruction_$3="ArithmeticLogic8Instruction_$3",e.ArithmeticLogic8Instruction_$4_1="ArithmeticLogic8Instruction_$4_1",e.ArithmeticLogic8Instruction_$4_2="ArithmeticLogic8Instruction_$4_2",e.ArithmeticLogic8Instruction_$5="ArithmeticLogic8Instruction_$5",e.ArithmeticLogic8Instruction_$6_1="ArithmeticLogic8Instruction_$6_1",e.ArithmeticLogic8Instruction_$6_2="ArithmeticLogic8Instruction_$6_2",e.ArithmeticLogic8Instruction_$7="ArithmeticLogic8Instruction_$7",e.ArithmeticLogic8Instruction_$8="ArithmeticLogic8Instruction_$8",e.ArithmeticLogic8Instruction_$9="ArithmeticLogic8Instruction_$9",e.ArithmeticLogic8Instruction_$10="ArithmeticLogic8Instruction_$10",e.ArithmeticLogic8Instruction_$11_1="ArithmeticLogic8Instruction_$11_1",e.ArithmeticLogic8Instruction_$11_2="ArithmeticLogic8Instruction_$11_2",e.ArithmeticLogic8Instruction_$12="ArithmeticLogic8Instruction_$12",e.ArithmeticLogic8Instruction_$13_1="ArithmeticLogic8Instruction_$13_1",e.ArithmeticLogic8Instruction_$13_2="ArithmeticLogic8Instruction_$13_2",e.ArithmeticLogic8Instruction_$14="ArithmeticLogic8Instruction_$14",e.ArithmeticLogic8Instruction_$15="ArithmeticLogic8Instruction_$15",e.ArithmeticLogic8Instruction_$16="ArithmeticLogic8Instruction_$16",e.ArithmeticLogic8Instruction_$17="ArithmeticLogic8Instruction_$17",e.ArithmeticLogic8Instruction_$18_1="ArithmeticLogic8Instruction_$18_1",e.ArithmeticLogic8Instruction_$18_2="ArithmeticLogic8Instruction_$18_2",e.ArithmeticLogic8Instruction_$19="ArithmeticLogic8Instruction_$19",e.ArithmeticLogic8Instruction_$20_1="ArithmeticLogic8Instruction_$20_1",e.ArithmeticLogic8Instruction_$20_2="ArithmeticLogic8Instruction_$20_2",e.ArithmeticLogic8Instruction_$21="ArithmeticLogic8Instruction_$21",e.ArithmeticLogic8Instruction_$22="ArithmeticLogic8Instruction_$22",e.ArithmeticLogic8Instruction_$23="ArithmeticLogic8Instruction_$23",e.ArithmeticLogic8Instruction_$24="ArithmeticLogic8Instruction_$24",e.ArithmeticLogic8Instruction_$25_1="ArithmeticLogic8Instruction_$25_1",e.ArithmeticLogic8Instruction_$25_2="ArithmeticLogic8Instruction_$25_2",e.ArithmeticLogic8Instruction_$26="ArithmeticLogic8Instruction_$26",e.ArithmeticLogic8Instruction_$27_1="ArithmeticLogic8Instruction_$27_1",e.ArithmeticLogic8Instruction_$27_2="ArithmeticLogic8Instruction_$27_2",e.ArithmeticLogic8Instruction_$28="ArithmeticLogic8Instruction_$28",e.ArithmeticLogic8Instruction_$29="ArithmeticLogic8Instruction_$29",e.ArithmeticLogic8Instruction_$30="ArithmeticLogic8Instruction_$30",e.ArithmeticLogic8Instruction_$31="ArithmeticLogic8Instruction_$31",e.ArithmeticLogic8Instruction_$32_1="ArithmeticLogic8Instruction_$32_1",e.ArithmeticLogic8Instruction_$32_2="ArithmeticLogic8Instruction_$32_2",e.ArithmeticLogic8Instruction_$33="ArithmeticLogic8Instruction_$33",e.ArithmeticLogic8Instruction_$34_1="ArithmeticLogic8Instruction_$34_1",e.ArithmeticLogic8Instruction_$34_2="ArithmeticLogic8Instruction_$34_2",e.ArithmeticLogic8Instruction_$35="ArithmeticLogic8Instruction_$35",e.ArithmeticLogic8Instruction_$36="ArithmeticLogic8Instruction_$36",e.ArithmeticLogic8Instruction_$37="ArithmeticLogic8Instruction_$37",e.ArithmeticLogic8Instruction_$38="ArithmeticLogic8Instruction_$38",e.ArithmeticLogic8Instruction_$39_1="ArithmeticLogic8Instruction_$39_1",e.ArithmeticLogic8Instruction_$39_2="ArithmeticLogic8Instruction_$39_2",e.ArithmeticLogic8Instruction_$40="ArithmeticLogic8Instruction_$40",e.ArithmeticLogic8Instruction_$41_1="ArithmeticLogic8Instruction_$41_1",e.ArithmeticLogic8Instruction_$41_2="ArithmeticLogic8Instruction_$41_2",e.ArithmeticLogic8Instruction_$42="ArithmeticLogic8Instruction_$42",e.ArithmeticLogic8Instruction_$43="ArithmeticLogic8Instruction_$43",e.ArithmeticLogic8Instruction_$44="ArithmeticLogic8Instruction_$44",e.ArithmeticLogic8Instruction_$45="ArithmeticLogic8Instruction_$45",e.ArithmeticLogic8Instruction_$46_1="ArithmeticLogic8Instruction_$46_1",e.ArithmeticLogic8Instruction_$46_2="ArithmeticLogic8Instruction_$46_2",e.ArithmeticLogic8Instruction_$47="ArithmeticLogic8Instruction_$47",e.ArithmeticLogic8Instruction_$48_1="ArithmeticLogic8Instruction_$48_1",e.ArithmeticLogic8Instruction_$48_2="ArithmeticLogic8Instruction_$48_2",e.ArithmeticLogic8Instruction_$49="ArithmeticLogic8Instruction_$49",e.ArithmeticLogic8Instruction_$50="ArithmeticLogic8Instruction_$50",e.ArithmeticLogic8Instruction_$51="ArithmeticLogic8Instruction_$51",e.ArithmeticLogic8Instruction_$52="ArithmeticLogic8Instruction_$52",e.ArithmeticLogic8Instruction_$53_1="ArithmeticLogic8Instruction_$53_1",e.ArithmeticLogic8Instruction_$53_2="ArithmeticLogic8Instruction_$53_2",e.ArithmeticLogic8Instruction_$54="ArithmeticLogic8Instruction_$54",e.ArithmeticLogic8Instruction_$55_1="ArithmeticLogic8Instruction_$55_1",e.ArithmeticLogic8Instruction_$55_2="ArithmeticLogic8Instruction_$55_2",e.IncrementDecrement8Instruction_1="IncrementDecrement8Instruction_1",e.IncrementDecrement8Instruction_2="IncrementDecrement8Instruction_2",e.IncrementDecrement8Instruction_3="IncrementDecrement8Instruction_3",e.IncrementDecrement8Instruction_4="IncrementDecrement8Instruction_4",e.IncrementDecrement8Instruction_5="IncrementDecrement8Instruction_5",e.IncrementDecrement8Instruction_6="IncrementDecrement8Instruction_6",e.IncrementDecrement8Instruction_7="IncrementDecrement8Instruction_7",e.IncrementDecrement8Instruction_8="IncrementDecrement8Instruction_8",e.IncrementDecrement8Instruction_$0_1="IncrementDecrement8Instruction_$0_1",e.IncrementDecrement8Instruction_$0_2="IncrementDecrement8Instruction_$0_2",e.IncrementDecrement8Instruction_$1_1="IncrementDecrement8Instruction_$1_1",e.IncrementDecrement8Instruction_$1_2="IncrementDecrement8Instruction_$1_2",e.IncrementDecrement8Instruction_$2_1="IncrementDecrement8Instruction_$2_1",e.IncrementDecrement8Instruction_$2_2="IncrementDecrement8Instruction_$2_2",e.IncrementDecrement8Instruction_$3_1="IncrementDecrement8Instruction_$3_1",e.IncrementDecrement8Instruction_$3_2="IncrementDecrement8Instruction_$3_2",e.GeneralPurposeArithmeticInstruction_1="GeneralPurposeArithmeticInstruction_1",e.GeneralPurposeArithmeticInstruction_2="GeneralPurposeArithmeticInstruction_2",e.GeneralPurposeArithmeticInstruction_3="GeneralPurposeArithmeticInstruction_3",e.GeneralPurposeArithmeticInstruction_4="GeneralPurposeArithmeticInstruction_4",e.GeneralPurposeArithmeticInstruction_5="GeneralPurposeArithmeticInstruction_5",e.CpuControlGroupInstruction_1="CpuControlGroupInstruction_1",e.CpuControlGroupInstruction_2="CpuControlGroupInstruction_2",e.CpuControlGroupInstruction_3="CpuControlGroupInstruction_3",e.CpuControlGroupInstruction_4="CpuControlGroupInstruction_4",e.CpuControlGroupInstruction_5="CpuControlGroupInstruction_5",e.ArithmeticLogic16Instruction_1="ArithmeticLogic16Instruction_1",e.ArithmeticLogic16Instruction_2="ArithmeticLogic16Instruction_2",e.ArithmeticLogic16Instruction_3="ArithmeticLogic16Instruction_3",e.ArithmeticLogic16Instruction_4="ArithmeticLogic16Instruction_4",e.ArithmeticLogic16Instruction_5="ArithmeticLogic16Instruction_5",e.ArithmeticLogic16Instruction_6="ArithmeticLogic16Instruction_6",e.ArithmeticLogic16Instruction_7="ArithmeticLogic16Instruction_7",e.ArithmeticLogic16Instruction_8="ArithmeticLogic16Instruction_8",e.ArithmeticLogic16Instruction_9="ArithmeticLogic16Instruction_9",e.ArithmeticLogic16Instruction_10="ArithmeticLogic16Instruction_10",e.ArithmeticLogic16Instruction_11="ArithmeticLogic16Instruction_11",e.RotateShiftInstruction_1="RotateShiftInstruction_1",e.RotateShiftInstruction_2="RotateShiftInstruction_2",e.RotateShiftInstruction_3="RotateShiftInstruction_3",e.RotateShiftInstruction_4="RotateShiftInstruction_4",e.RotateShiftInstruction_5="RotateShiftInstruction_5",e.RotateShiftInstruction_6="RotateShiftInstruction_6",e.RotateShiftInstruction_7="RotateShiftInstruction_7",e.RotateShiftInstruction_8="RotateShiftInstruction_8",e.RotateShiftInstruction_9="RotateShiftInstruction_9",e.RotateShiftInstruction_10="RotateShiftInstruction_10",e.RotateShiftInstruction_11="RotateShiftInstruction_11",e.RotateShiftInstruction_12="RotateShiftInstruction_12",e.RotateShiftInstruction_13="RotateShiftInstruction_13",e.RotateShiftInstruction_14="RotateShiftInstruction_14",e.RotateShiftInstruction_15="RotateShiftInstruction_15",e.RotateShiftInstruction_16="RotateShiftInstruction_16",e.RotateShiftInstruction_17="RotateShiftInstruction_17",e.RotateShiftInstruction_18="RotateShiftInstruction_18",e.RotateShiftInstruction_19="RotateShiftInstruction_19",e.RotateShiftInstruction_20="RotateShiftInstruction_20",e.RotateShiftInstruction_21="RotateShiftInstruction_21",e.RotateShiftInstruction_22="RotateShiftInstruction_22",e.RotateShiftInstruction_23="RotateShiftInstruction_23",e.RotateShiftInstruction_24="RotateShiftInstruction_24",e.RotateShiftInstruction_25="RotateShiftInstruction_25",e.RotateShiftInstruction_26="RotateShiftInstruction_26",e.RotateShiftInstruction_27="RotateShiftInstruction_27",e.RotateShiftInstruction_28="RotateShiftInstruction_28",e.RotateShiftInstruction_29="RotateShiftInstruction_29",e.RotateShiftInstruction_30="RotateShiftInstruction_30",e.RotateShiftInstruction_31="RotateShiftInstruction_31",e.RotateShiftInstruction_32="RotateShiftInstruction_32",e.RotateShiftInstruction_33="RotateShiftInstruction_33",e.RotateShiftInstruction_34="RotateShiftInstruction_34",e.RotateShiftInstruction_$0_1="RotateShiftInstruction_$0_1",e.RotateShiftInstruction_$0_2="RotateShiftInstruction_$0_2",e.RotateShiftInstruction_$1_1="RotateShiftInstruction_$1_1",e.RotateShiftInstruction_$1_2="RotateShiftInstruction_$1_2",e.RotateShiftInstruction_$2_1="RotateShiftInstruction_$2_1",e.RotateShiftInstruction_$2_2="RotateShiftInstruction_$2_2",e.RotateShiftInstruction_$3_1="RotateShiftInstruction_$3_1",e.RotateShiftInstruction_$3_2="RotateShiftInstruction_$3_2",e.RotateShiftInstruction_$4_1="RotateShiftInstruction_$4_1",e.RotateShiftInstruction_$4_2="RotateShiftInstruction_$4_2",e.RotateShiftInstruction_$5_1="RotateShiftInstruction_$5_1",e.RotateShiftInstruction_$5_2="RotateShiftInstruction_$5_2",e.RotateShiftInstruction_$6_1="RotateShiftInstruction_$6_1",e.RotateShiftInstruction_$6_2="RotateShiftInstruction_$6_2",e.RotateShiftInstruction_$7_1="RotateShiftInstruction_$7_1",e.RotateShiftInstruction_$7_2="RotateShiftInstruction_$7_2",e.RotateShiftInstruction_$8_1="RotateShiftInstruction_$8_1",e.RotateShiftInstruction_$8_2="RotateShiftInstruction_$8_2",e.RotateShiftInstruction_$9_1="RotateShiftInstruction_$9_1",e.RotateShiftInstruction_$9_2="RotateShiftInstruction_$9_2",e.RotateShiftInstruction_$10_1="RotateShiftInstruction_$10_1",e.RotateShiftInstruction_$10_2="RotateShiftInstruction_$10_2",e.RotateShiftInstruction_$11_1="RotateShiftInstruction_$11_1",e.RotateShiftInstruction_$11_2="RotateShiftInstruction_$11_2",e.RotateShiftInstruction_$12_1="RotateShiftInstruction_$12_1",e.RotateShiftInstruction_$12_2="RotateShiftInstruction_$12_2",e.RotateShiftInstruction_$13_1="RotateShiftInstruction_$13_1",e.RotateShiftInstruction_$13_2="RotateShiftInstruction_$13_2",e.BitManipulationInstruction_1="BitManipulationInstruction_1",e.BitManipulationInstruction_2="BitManipulationInstruction_2",e.BitManipulationInstruction_3="BitManipulationInstruction_3",e.BitManipulationInstruction_4="BitManipulationInstruction_4",e.BitManipulationInstruction_5="BitManipulationInstruction_5",e.BitManipulationInstruction_6="BitManipulationInstruction_6",e.BitManipulationInstruction_7="BitManipulationInstruction_7",e.BitManipulationInstruction_8="BitManipulationInstruction_8",e.BitManipulationInstruction_9="BitManipulationInstruction_9",e.BitManipulationInstruction_10="BitManipulationInstruction_10",e.BitManipulationInstruction_11="BitManipulationInstruction_11",e.BitManipulationInstruction_12="BitManipulationInstruction_12",e.BitManipulationInstruction_$0_1="BitManipulationInstruction_$0_1",e.BitManipulationInstruction_$0_2="BitManipulationInstruction_$0_2",e.BitManipulationInstruction_$1_1="BitManipulationInstruction_$1_1",e.BitManipulationInstruction_$1_2="BitManipulationInstruction_$1_2",e.BitManipulationInstruction_$2_1="BitManipulationInstruction_$2_1",e.BitManipulationInstruction_$2_2="BitManipulationInstruction_$2_2",e.BitManipulationInstruction_$3_1="BitManipulationInstruction_$3_1",e.BitManipulationInstruction_$3_2="BitManipulationInstruction_$3_2",e.BitManipulationInstruction_$4_1="BitManipulationInstruction_$4_1",e.BitManipulationInstruction_$4_2="BitManipulationInstruction_$4_2",e.BitManipulationInstruction_$5_1="BitManipulationInstruction_$5_1",e.BitManipulationInstruction_$5_2="BitManipulationInstruction_$5_2",e.Offset_1="Offset_1",e.Offset_2="Offset_2",e.JumpInstruction_1="JumpInstruction_1",e.JumpInstruction_2="JumpInstruction_2",e.JumpInstruction_3="JumpInstruction_3",e.JumpInstruction_4="JumpInstruction_4",e.JumpInstruction_5="JumpInstruction_5",e.JumpInstruction_6="JumpInstruction_6",e.JumpInstruction_7="JumpInstruction_7",e.JumpInstruction_8="JumpInstruction_8",e.JumpInstruction_9="JumpInstruction_9",e.JumpInstruction_10="JumpInstruction_10",e.JumpInstruction_11="JumpInstruction_11",e.CallInstruction_1="CallInstruction_1",e.CallInstruction_2="CallInstruction_2",e.ReturnInstruction_1="ReturnInstruction_1",e.ReturnInstruction_2="ReturnInstruction_2",e.ReturnInstruction_3="ReturnInstruction_3",e.ReturnInstruction_4="ReturnInstruction_4",e.ReturnInstruction_5="ReturnInstruction_5",e.InputInstruction_1="InputInstruction_1",e.InputInstruction_2="InputInstruction_2",e.InputInstruction_3="InputInstruction_3",e.InputInstruction_4="InputInstruction_4",e.InputInstruction_5="InputInstruction_5",e.InputInstruction_6="InputInstruction_6",e.OutputInstruction_1="OutputInstruction_1",e.OutputInstruction_2="OutputInstruction_2",e.OutputInstruction_3="OutputInstruction_3",e.OutputInstruction_4="OutputInstruction_4",e.OutputInstruction_5="OutputInstruction_5",e.OutputInstruction_6="OutputInstruction_6",e.ByteDirective_1="ByteDirective_1",e.ByteDirective_2="ByteDirective_2",e.ByteDirective_3="ByteDirective_3",e.ByteDirective_4="ByteDirective_4",e.ByteDirective_5="ByteDirective_5",e.WordDirective_1="WordDirective_1",e.WordDirective_2="WordDirective_2",e.WordDirective_3="WordDirective_3",e.BlockDirective_1="BlockDirective_1",e.BlockDirective_2="BlockDirective_2",e.BlockDirective_3="BlockDirective_3",e.ByteValue_1="ByteValue_1",e.ByteValue_2="ByteValue_2",e.ByteValue_3="ByteValue_3",e.ByteValue_4="ByteValue_4",e.WordValue="WordValue",e.DataDirective_1="DataDirective_1",e.DataDirective_2="DataDirective_2",e.DataDirective_3="DataDirective_3",e.DataDirective_$0="DataDirective_$0",e.DataDirective_$1="DataDirective_$1",e.DataDirective_$2="DataDirective_$2",e.EscapeSequence_1="EscapeSequence_1",e.EscapeSequence_2="EscapeSequence_2",e.EscapeSequence_3="EscapeSequence_3",e.SimpleEscapeSequence="SimpleEscapeSequence",e.SimpleEscapeSequence_$0_1="SimpleEscapeSequence_$0_1",e.SimpleEscapeSequence_$0_2="SimpleEscapeSequence_$0_2",e.SimpleEscapeSequence_$0_3="SimpleEscapeSequence_$0_3",e.SimpleEscapeSequence_$0_4="SimpleEscapeSequence_$0_4",e.SimpleEscapeSequence_$0_5="SimpleEscapeSequence_$0_5",e.SimpleEscapeSequence_$0_6="SimpleEscapeSequence_$0_6",e.SimpleEscapeSequence_$0_7="SimpleEscapeSequence_$0_7",e.SimpleEscapeSequence_$0_8="SimpleEscapeSequence_$0_8",e.SimpleEscapeSequence_$0_9="SimpleEscapeSequence_$0_9",e.SimpleEscapeSequence_$0_10="SimpleEscapeSequence_$0_10",e.SimpleEscapeSequence_$0_11="SimpleEscapeSequence_$0_11",e.SimpleEscapeSequence_$0_12="SimpleEscapeSequence_$0_12",e.OctalEscapeSequence="OctalEscapeSequence",e.HexadecimalEscapeSequence="HexadecimalEscapeSequence",e.SimpleChar="SimpleChar",e.StringChar="StringChar",e.Char="Char",e.Char_$0_1="Char_$0_1",e.Char_$0_2="Char_$0_2",e.Str="Str",e.Str_$0_1="Str_$0_1",e.Str_$0_2="Str_$0_2",e.ZX81Str="ZX81Str",e.Comment="Comment",e.OriginDirective="OriginDirective",e.Filename_1="Filename_1",e.Filename_2="Filename_2",e.IncludeDirective="IncludeDirective",e.OutputDirective="OutputDirective",e.OutputDirective_$0="OutputDirective_$0",e.DeviceDirective="DeviceDirective",e.$EOF="$EOF",e))(w||{});class Gt{constructor(t,i){this.kind="n_1",this.pos=t,this.binary=i,this.value=(()=>f(t,i.raw,2,1))()}}class jt{constructor(t,i){this.kind="n_2",this.pos=t,this.hexadecimal=i,this.value=(()=>f(t,i.raw,16,1))()}}class Ft{constructor(t,i){this.kind="n_3",this.pos=t,this.octal=i,this.value=(()=>f(t,i.raw,8,1))()}}class Vt{constructor(t,i){this.kind="n_4",this.pos=t,this.decimal=i,this.value=(()=>f(t,i.raw,10,1))()}}class zt{constructor(t,i){this.kind="nn_1",this.pos=t,this.binary=i,this.value=(()=>f(t,i.raw,2,2))()}}class Ut{constructor(t,i){this.kind="nn_2",this.pos=t,this.hexadecimal=i,this.value=(()=>f(t,i.raw,16,2))()}}class Xt{constructor(t,i){this.kind="nn_3",this.pos=t,this.octal=i,this.value=(()=>f(t,i.raw,8,2))()}}class Wt{constructor(t,i){this.kind="nn_4",this.pos=t,this.decimal=i,this.value=(()=>f(t,i.raw,10,2))()}}class Zt{constructor(t){this.kind="b",this.raw=t,this.value=(()=>parseInt(t))()}}class Ht{constructor(t){this.kind="Statement_1",this.inc=t,this.linesinfo=(()=>t.lines)()}}class Qt{constructor(t){this.kind="Statement_2",this.ins=t,this.elements=(()=>t.elements)()}}class Yt{constructor(t){this.kind="Statement_3",this.dir=t,this.elements=(()=>t.elements)(),this.address=(()=>t.address)()}}class Tt{constructor(t){this.kind="Directive_1",this.data=t,this.elements=(()=>t.elements)(),this.address=(()=>null)()}}class Kt{constructor(t){this.kind="Directive_2",this.origin=t,this.elements=(()=>[])(),this.address=(()=>t.address.value)()}}class dt{constructor(t){this.kind="Directive_3",this.directive=t,this.elements=(()=>[])(),this.address=(()=>null)()}}class $t{constructor(t){this.kind="Directive_4",this.directive=t,this.elements=(()=>[])(),this.address=(()=>null)()}}class ti{constructor(t){this.kind="Expression",this.e1=t,this.eval=(()=>t.eval)()}}class ii{constructor(t,i){this.kind="BitwiseOrExpression",this.left=t,this.right=i,this.eval=(()=>C(t,i,at))()}}class ni{constructor(t,i){this.kind="BitwiseXOrExpression",this.left=t,this.right=i,this.eval=(()=>C(t,i,ht))()}}class ei{constructor(t,i){this.kind="BitwiseAndExpression",this.left=t,this.right=i,this.eval=(()=>C(t,i,mt))()}}class si{constructor(t,i){this.kind="ShiftExpression",this.left=t,this.right=i,this.eval=(()=>p(t,i,{"<<":_t,">>":gt}))()}}class ri{constructor(t,i){this.kind="AdditiveExpression",this.left=t,this.right=i,this.eval=(()=>p(t,i,{"+":It,"-":xt}))()}}class ci{constructor(t,i){this.kind="MultiplicativeExpression",this.left=t,this.right=i,this.eval=(()=>p(t,i,{"*":wt,"/":At,"%":Lt}))()}}class ui{constructor(t,i){this.kind="UnaryExpression_1",this.op=t,this.e=i,this.eval=(()=>ot(i,t,{"~":kt,"+":ft,"-":St}))()}}class li{constructor(t){this.kind="UnaryExpression_2",this.e=t,this.eval=(()=>G(t,j))()}}class oi{constructor(t){this.kind="PrimaryExpression_1",this.nn=t,this.eval=(()=>()=>t.value)()}}class ai{constructor(t,i){this.kind="PrimaryExpression_2",this.pos=t,this.label=i,this.eval=(()=>()=>E(i.name))()}}class hi{constructor(t){this.kind="PrimaryExpression_3",this.e=t,this.eval=(()=>G(t,j))()}}class mi{constructor(t,i){this.kind="Load8Instruction_1",this.r0=t,this.r1=i,this.elements=(()=>[64|_(t.reg,3)|_(i.reg)])()}}class _i{constructor(t){this.kind="Load8Instruction_2",this.r=t,this.elements=(()=>[70|_(t,3)])()}}class gi{constructor(t,i,n,s){this.kind="Load8Instruction_3",this.r=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,70|_(t,3),l(n,i,s)])()}}class Ii{constructor(t,i,n,s){this.kind="Load8Instruction_4",this.r=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,70|_(t,3),l(n,i,s)])()}}class xi{constructor(t){this.kind="Load8Instruction_5",this.r=t,this.elements=(()=>[112|_(t)])()}}class wi{constructor(t,i,n,s){this.kind="Load8Instruction_6",this.s=t,this.pos=i,this.d=n,this.r=s,this.elements=(()=>[221,112|_(s),l(i,t,n)])()}}class Ai{constructor(t,i,n,s){this.kind="Load8Instruction_7",this.s=t,this.pos=i,this.d=n,this.r=s,this.elements=(()=>[253,112|_(s),l(i,t,n)])()}}class Li{constructor(t,i){this.kind="Load8Instruction_8",this.pos=t,this.n=i,this.elements=(()=>[54,A(t,i)])()}}class fi{constructor(t,i,n,s,r){this.kind="Load8Instruction_9",this.s=t,this.pos0=i,this.d=n,this.pos1=s,this.n=r,this.elements=(()=>[221,54,l(i,t,n),A(s,r)])()}}class Si{constructor(t,i,n,s,r){this.kind="Load8Instruction_10",this.s=t,this.pos0=i,this.d=n,this.pos1=s,this.n=r,this.elements=(()=>[253,54,l(i,t,n),A(s,r)])()}}class ki{constructor(){this.kind="Load8Instruction_11",this.elements=(()=>[10])()}}class Ei{constructor(){this.kind="Load8Instruction_12",this.elements=(()=>[26])()}}class Ri{constructor(t,i){this.kind="Load8Instruction_13",this.pos=t,this.ee=i,this.elements=(()=>[58,I(t,i)])()}}class vi{constructor(){this.kind="Load8Instruction_14",this.elements=(()=>[2])()}}class Ci{constructor(){this.kind="Load8Instruction_15",this.elements=(()=>[18])()}}class pi{constructor(t,i){this.kind="Load8Instruction_16",this.pos=t,this.ee=i,this.elements=(()=>[50,I(t,i)])()}}class Bi{constructor(){this.kind="Load8Instruction_17",this.elements=(()=>[237,87])()}}class Di{constructor(){this.kind="Load8Instruction_18",this.elements=(()=>[237,95])()}}class bi{constructor(){this.kind="Load8Instruction_19",this.elements=(()=>[237,71])()}}class yi{constructor(){this.kind="Load8Instruction_20",this.elements=(()=>[237,79])()}}class Mi{constructor(t,i,n){this.kind="Load8Instruction_21",this.r=t,this.pos=i,this.n=n,this.elements=(()=>[6|_(t.reg,3),A(i,n)])()}}class qi{constructor(t,i){this.kind="Load16Instruction_1",this.pos=t,this.ee=i,this.elements=(()=>[221,33,I(t,i)])()}}class Oi{constructor(t,i){this.kind="Load16Instruction_2",this.pos=t,this.ee=i,this.elements=(()=>[253,33,I(t,i)])()}}class Pi{constructor(t,i){this.kind="Load16Instruction_3",this.pos=t,this.ee=i,this.elements=(()=>[42,I(t,i)])()}}class Ni{constructor(t,i,n){this.kind="Load16Instruction_4",this.dd=t,this.pos=i,this.ee=n,this.elements=(()=>[237,75|R(t,4),I(i,n)])()}}class Ji{constructor(t,i){this.kind="Load16Instruction_5",this.pos=t,this.ee=i,this.elements=(()=>[221,42,I(t,i)])()}}class Gi{constructor(t,i){this.kind="Load16Instruction_6",this.pos=t,this.ee=i,this.elements=(()=>[253,42,I(t,i)])()}}class ji{constructor(t,i){this.kind="Load16Instruction_7",this.pos=t,this.ee=i,this.elements=(()=>[34,I(t,i)])()}}class Fi{constructor(t,i,n){this.kind="Load16Instruction_8",this.pos=t,this.ee=i,this.dd=n,this.elements=(()=>[237,67|R(n,4),I(t,i)])()}}class Vi{constructor(t,i){this.kind="Load16Instruction_9",this.pos=t,this.ee=i,this.elements=(()=>[221,34,I(t,i)])()}}class zi{constructor(t,i){this.kind="Load16Instruction_10",this.pos=t,this.ee=i,this.elements=(()=>[253,34,I(t,i)])()}}class Ui{constructor(){this.kind="Load16Instruction_11",this.elements=(()=>[249])()}}class Xi{constructor(){this.kind="Load16Instruction_12",this.elements=(()=>[221,249])()}}class Wi{constructor(){this.kind="Load16Instruction_13",this.elements=(()=>[253,249])()}}class Zi{constructor(t,i,n){this.kind="Load16Instruction_14",this.dd=t,this.pos=i,this.ee=n,this.elements=(()=>[1|R(t,4),I(i,n)])()}}class Hi{constructor(t){this.kind="Load16Instruction_15",this.qq=t,this.elements=(()=>[197|P(t,4)])()}}class Qi{constructor(){this.kind="Load16Instruction_16",this.elements=(()=>[221,229])()}}class Yi{constructor(){this.kind="Load16Instruction_17",this.elements=(()=>[253,229])()}}class Ti{constructor(t){this.kind="Load16Instruction_18",this.qq=t,this.elements=(()=>[193|P(t,4)])()}}class Ki{constructor(){this.kind="Load16Instruction_19",this.elements=(()=>[221,225])()}}class di{constructor(){this.kind="Load16Instruction_20",this.elements=(()=>[253,225])()}}class $i{constructor(){this.kind="ExchangeInstruction_1",this.elements=(()=>[235])()}}class tn{constructor(){this.kind="ExchangeInstruction_2",this.elements=(()=>[8])()}}class nn{constructor(){this.kind="ExchangeInstruction_3",this.elements=(()=>[217])()}}class en{constructor(){this.kind="ExchangeInstruction_4",this.elements=(()=>[227])()}}class sn{constructor(){this.kind="ExchangeInstruction_5",this.elements=(()=>[221,227])()}}class rn{constructor(){this.kind="ExchangeInstruction_6",this.elements=(()=>[253,227])()}}class cn{constructor(){this.kind="BlockInstruction_1",this.elements=(()=>[237,176])()}}class un{constructor(){this.kind="BlockInstruction_2",this.elements=(()=>[237,160])()}}class ln{constructor(){this.kind="BlockInstruction_3",this.elements=(()=>[237,184])()}}class on{constructor(){this.kind="BlockInstruction_4",this.elements=(()=>[237,168])()}}class an{constructor(){this.kind="BlockInstruction_5",this.elements=(()=>[237,177])()}}class hn{constructor(){this.kind="BlockInstruction_6",this.elements=(()=>[237,161])()}}class mn{constructor(){this.kind="BlockInstruction_7",this.elements=(()=>[237,185])()}}class _n{constructor(){this.kind="BlockInstruction_8",this.elements=(()=>[237,169])()}}class gn{constructor(t){this.kind="ArithmeticLogic8Instruction_1",this.r=t,this.elements=(()=>[128|_(t)])()}}class In{constructor(t,i){this.kind="ArithmeticLogic8Instruction_2",this.pos=t,this.n=i,this.elements=(()=>[198,A(t,i)])()}}class xn{constructor(){this.kind="ArithmeticLogic8Instruction_3",this.elements=(()=>[134])()}}class wn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_4",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,134,l(i,t,n)])()}}class An{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_5",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,134,l(i,t,n)])()}}class Ln{constructor(t){this.kind="ArithmeticLogic8Instruction_6",this.r=t,this.elements=(()=>[136|_(t)])()}}class fn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_7",this.pos=t,this.n=i,this.elements=(()=>[206,A(t,i)])()}}class Sn{constructor(){this.kind="ArithmeticLogic8Instruction_8",this.elements=(()=>[142])()}}class kn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_9",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,142,l(i,t,n)])()}}class En{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_10",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,142,l(i,t,n)])()}}class Rn{constructor(t){this.kind="ArithmeticLogic8Instruction_11",this.r=t,this.elements=(()=>[144|_(t)])()}}class vn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_12",this.pos=t,this.n=i,this.elements=(()=>[214,A(t,i)])()}}class Cn{constructor(){this.kind="ArithmeticLogic8Instruction_13",this.elements=(()=>[150])()}}class pn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_14",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,150,l(i,t,n)])()}}class Bn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_15",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,150,l(i,t,n)])()}}class Dn{constructor(t){this.kind="ArithmeticLogic8Instruction_16",this.r=t,this.elements=(()=>[152|_(t)])()}}class bn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_17",this.pos=t,this.n=i,this.elements=(()=>[222,A(t,i)])()}}class yn{constructor(){this.kind="ArithmeticLogic8Instruction_18",this.elements=(()=>[158])()}}class Mn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_19",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,158,l(i,t,n)])()}}class qn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_20",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,158,l(i,t,n)])()}}class On{constructor(t){this.kind="ArithmeticLogic8Instruction_21",this.r=t,this.elements=(()=>[160|_(t)])()}}class Pn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_22",this.pos=t,this.n=i,this.elements=(()=>[230,A(t,i)])()}}class Nn{constructor(){this.kind="ArithmeticLogic8Instruction_23",this.elements=(()=>[166])()}}class Jn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_24",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,166,l(i,t,n)])()}}class Gn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_25",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,166,l(i,t,n)])()}}class jn{constructor(t){this.kind="ArithmeticLogic8Instruction_26",this.r=t,this.elements=(()=>[176|_(t)])()}}class Fn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_27",this.pos=t,this.n=i,this.elements=(()=>[246,A(t,i)])()}}class Vn{constructor(){this.kind="ArithmeticLogic8Instruction_28",this.elements=(()=>[182])()}}class zn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_29",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,182,l(i,t,n)])()}}class Un{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_30",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,182,l(i,t,n)])()}}class Xn{constructor(t){this.kind="ArithmeticLogic8Instruction_31",this.r=t,this.elements=(()=>[168|_(t)])()}}class Wn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_32",this.pos=t,this.n=i,this.elements=(()=>[238,A(t,i)])()}}class Zn{constructor(){this.kind="ArithmeticLogic8Instruction_33",this.elements=(()=>[174])()}}class Hn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_34",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,174,l(i,t,n)])()}}class Qn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_35",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,174,l(i,t,n)])()}}class Yn{constructor(t){this.kind="ArithmeticLogic8Instruction_36",this.r=t,this.elements=(()=>[184|_(t)])()}}class Tn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_37",this.pos=t,this.n=i,this.elements=(()=>[254,A(t,i)])()}}class Kn{constructor(){this.kind="ArithmeticLogic8Instruction_38",this.elements=(()=>[190])()}}class dn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_39",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,190,l(i,t,n)])()}}class $n{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_40",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,190,l(i,t,n)])()}}class te{constructor(t){this.kind="IncrementDecrement8Instruction_1",this.r=t,this.elements=(()=>[4|_(t,3)])()}}class ie{constructor(){this.kind="IncrementDecrement8Instruction_2",this.elements=(()=>[52])()}}class ne{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_3",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,52,l(i,t,n)])()}}class ee{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_4",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,52,l(i,t,n)])()}}class se{constructor(t){this.kind="IncrementDecrement8Instruction_5",this.r=t,this.elements=(()=>[5|_(t,3)])()}}class re{constructor(){this.kind="IncrementDecrement8Instruction_6",this.elements=(()=>[53])()}}class ce{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_7",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,53,l(i,t,n)])()}}class ue{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_8",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,53,l(i,t,n)])()}}class le{constructor(){this.kind="GeneralPurposeArithmeticInstruction_1",this.elements=(()=>[39])()}}class oe{constructor(){this.kind="GeneralPurposeArithmeticInstruction_2",this.elements=(()=>[47])()}}class ae{constructor(){this.kind="GeneralPurposeArithmeticInstruction_3",this.elements=(()=>[237,68])()}}class he{constructor(){this.kind="GeneralPurposeArithmeticInstruction_4",this.elements=(()=>[63])()}}class me{constructor(){this.kind="GeneralPurposeArithmeticInstruction_5",this.elements=(()=>[55])()}}class _e{constructor(){this.kind="CpuControlGroupInstruction_1",this.elements=(()=>[0])()}}class ge{constructor(){this.kind="CpuControlGroupInstruction_2",this.elements=(()=>[118])()}}class Ie{constructor(){this.kind="CpuControlGroupInstruction_3",this.elements=(()=>[243])()}}class xe{constructor(){this.kind="CpuControlGroupInstruction_4",this.elements=(()=>[251])()}}class we{constructor(t){this.kind="CpuControlGroupInstruction_5",this.m=t,this.elements=(()=>[237,d(t)])()}}class Ae{constructor(t){this.kind="ArithmeticLogic16Instruction_1",this.ss=t,this.elements=(()=>[9|S(t,4)])()}}class Le{constructor(t){this.kind="ArithmeticLogic16Instruction_2",this.ss=t,this.elements=(()=>[237,74|S(t,4)])()}}class fe{constructor(t){this.kind="ArithmeticLogic16Instruction_3",this.ss=t,this.elements=(()=>[237,66|S(t,4)])()}}class Se{constructor(t){this.kind="ArithmeticLogic16Instruction_4",this.pp=t,this.elements=(()=>[221,9|Y(t,4)])()}}class ke{constructor(t){this.kind="ArithmeticLogic16Instruction_5",this.rr=t,this.elements=(()=>[253,9|T(t,4)])()}}class Ee{constructor(t){this.kind="ArithmeticLogic16Instruction_6",this.ss=t,this.elements=(()=>[3|S(t,4)])()}}class Re{constructor(){this.kind="ArithmeticLogic16Instruction_7",this.elements=(()=>[221,35])()}}class ve{constructor(){this.kind="ArithmeticLogic16Instruction_8",this.elements=(()=>[253,35])()}}class Ce{constructor(t){this.kind="ArithmeticLogic16Instruction_9",this.ss=t,this.elements=(()=>[11|S(t,4)])()}}class pe{constructor(){this.kind="ArithmeticLogic16Instruction_10",this.elements=(()=>[221,43])()}}class Be{constructor(){this.kind="ArithmeticLogic16Instruction_11",this.elements=(()=>[253,43])()}}class De{constructor(){this.kind="RotateShiftInstruction_1",this.elements=(()=>[7])()}}class be{constructor(){this.kind="RotateShiftInstruction_2",this.elements=(()=>[23])()}}class ye{constructor(){this.kind="RotateShiftInstruction_3",this.elements=(()=>[15])()}}class Me{constructor(){this.kind="RotateShiftInstruction_4",this.elements=(()=>[31])()}}class qe{constructor(t){this.kind="RotateShiftInstruction_5",this.r=t,this.elements=(()=>[203,0|_(t)])()}}class Oe{constructor(){this.kind="RotateShiftInstruction_6",this.elements=(()=>[203,6])()}}class Pe{constructor(t,i,n){this.kind="RotateShiftInstruction_7",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),6])()}}class Ne{constructor(t,i,n){this.kind="RotateShiftInstruction_8",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),6])()}}class Je{constructor(t){this.kind="RotateShiftInstruction_9",this.r=t,this.elements=(()=>[203,16|_(t)])()}}class Ge{constructor(){this.kind="RotateShiftInstruction_10",this.elements=(()=>[203,22])()}}class je{constructor(t,i,n){this.kind="RotateShiftInstruction_11",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),22])()}}class Fe{constructor(t,i,n){this.kind="RotateShiftInstruction_12",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),22])()}}class Ve{constructor(t){this.kind="RotateShiftInstruction_13",this.r=t,this.elements=(()=>[203,8|_(t)])()}}class ze{constructor(){this.kind="RotateShiftInstruction_14",this.elements=(()=>[203,14])()}}class Ue{constructor(t,i,n){this.kind="RotateShiftInstruction_15",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),14])()}}class Xe{constructor(t,i,n){this.kind="RotateShiftInstruction_16",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),14])()}}class We{constructor(t){this.kind="RotateShiftInstruction_17",this.r=t,this.elements=(()=>[203,24|_(t)])()}}class Ze{constructor(){this.kind="RotateShiftInstruction_18",this.elements=(()=>[203,30])()}}class He{constructor(t,i,n){this.kind="RotateShiftInstruction_19",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),30])()}}class Qe{constructor(t,i,n){this.kind="RotateShiftInstruction_20",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),30])()}}class Ye{constructor(t){this.kind="RotateShiftInstruction_21",this.r=t,this.elements=(()=>[203,32|_(t)])()}}class Te{constructor(){this.kind="RotateShiftInstruction_22",this.elements=(()=>[203,38])()}}class Ke{constructor(t,i,n){this.kind="RotateShiftInstruction_23",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),38])()}}class de{constructor(t,i,n){this.kind="RotateShiftInstruction_24",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),38])()}}class $e{constructor(t){this.kind="RotateShiftInstruction_25",this.r=t,this.elements=(()=>[203,40|_(t)])()}}class ts{constructor(){this.kind="RotateShiftInstruction_26",this.elements=(()=>[203,46])()}}class is{constructor(t,i,n){this.kind="RotateShiftInstruction_27",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),46])()}}class ns{constructor(t,i,n){this.kind="RotateShiftInstruction_28",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),46])()}}class es{constructor(t){this.kind="RotateShiftInstruction_29",this.r=t,this.elements=(()=>[203,56|_(t)])()}}class ss{constructor(){this.kind="RotateShiftInstruction_30",this.elements=(()=>[203,62])()}}class rs{constructor(t,i,n){this.kind="RotateShiftInstruction_31",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),62])()}}class cs{constructor(t,i,n){this.kind="RotateShiftInstruction_32",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),62])()}}class us{constructor(){this.kind="RotateShiftInstruction_33",this.elements=(()=>[237,111])()}}class ls{constructor(){this.kind="RotateShiftInstruction_34",this.elements=(()=>[237,103])()}}class os{constructor(t,i){this.kind="BitManipulationInstruction_1",this.b=t,this.r=i,this.elements=(()=>[203,64|t.value<<3|_(i)])()}}class as{constructor(t){this.kind="BitManipulationInstruction_2",this.b=t,this.elements=(()=>[203,70|t.value<<3])()}}class hs{constructor(t,i,n,s){this.kind="BitManipulationInstruction_3",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,203,l(n,i,s),70|t.value<<3])()}}class ms{constructor(t,i,n,s){this.kind="BitManipulationInstruction_4",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,203,l(n,i,s),70|t.value<<3])()}}class _s{constructor(t,i){this.kind="BitManipulationInstruction_5",this.b=t,this.r=i,this.elements=(()=>[203,192|t.value<<3|_(i)])()}}class gs{constructor(t){this.kind="BitManipulationInstruction_6",this.b=t,this.elements=(()=>[203,198|t.value<<3])()}}class Is{constructor(t,i,n,s){this.kind="BitManipulationInstruction_7",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,203,l(n,i,s),198|t.value<<3])()}}class xs{constructor(t,i,n,s){this.kind="BitManipulationInstruction_8",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,203,l(n,i,s),198|t.value<<3])()}}class ws{constructor(t,i){this.kind="BitManipulationInstruction_9",this.b=t,this.r=i,this.elements=(()=>[203,128|t.value<<3|_(i)])()}}class As{constructor(t){this.kind="BitManipulationInstruction_10",this.b=t,this.elements=(()=>[203,134|t.value<<3])()}}class Ls{constructor(t,i,n,s){this.kind="BitManipulationInstruction_11",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,203,l(n,i,s),134|t.value<<3])()}}class fs{constructor(t,i,n,s){this.kind="BitManipulationInstruction_12",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,203,l(n,i,s),134|t.value<<3])()}}class Ss{constructor(t,i){this.kind="Offset_1",this.pos=t,this.label=i,this.eval=(()=>()=>E(i.name))()}}class ks{constructor(t){this.kind="Offset_2",this.e=t,this.eval=(()=>t.eval)()}}class Es{constructor(t,i){this.kind="JumpInstruction_1",this.pos=t,this.ee=i,this.elements=(()=>[195,I(t,i)])()}}class Rs{constructor(t,i,n){this.kind="JumpInstruction_2",this.cc=t,this.pos=i,this.ee=n,this.elements=(()=>[194|v(t,3),I(i,n)])()}}class vs{constructor(t,i){this.kind="JumpInstruction_3",this.pos=t,this.label=i,this.elements=(()=>[k(),D(t,i.name)])()}}class Cs{constructor(t,i){this.kind="JumpInstruction_4",this.pos=t,this.e=i,this.elements=(()=>[k(),B(t,i)])()}}class ps{constructor(t,i,n){this.kind="JumpInstruction_5",this.jj=t,this.pos=i,this.label=n,this.elements=(()=>[k(t),D(i,n.name)])()}}class Bs{constructor(t,i,n){this.kind="JumpInstruction_6",this.jj=t,this.pos=i,this.e=n,this.elements=(()=>[k(t),B(i,n)])()}}class Ds{constructor(){this.kind="JumpInstruction_7",this.elements=(()=>[233])()}}class bs{constructor(){this.kind="JumpInstruction_8",this.elements=(()=>[221,233])()}}class ys{constructor(){this.kind="JumpInstruction_9",this.elements=(()=>[253,233])()}}class Ms{constructor(t,i){this.kind="JumpInstruction_10",this.pos=t,this.label=i,this.elements=(()=>[16,D(t,i.name)])()}}class qs{constructor(t,i){this.kind="JumpInstruction_11",this.pos=t,this.e=i,this.elements=(()=>[16,B(t,i)])()}}class Os{constructor(t,i){this.kind="CallInstruction_1",this.pos=t,this.ee=i,this.elements=(()=>[205,I(t,i)])()}}class Ps{constructor(t,i,n){this.kind="CallInstruction_2",this.cc=t,this.pos=i,this.ee=n,this.elements=(()=>[196|v(t,3),I(i,n)])()}}class Ns{constructor(){this.kind="ReturnInstruction_1",this.elements=(()=>[201])()}}class Js{constructor(t){this.kind="ReturnInstruction_2",this.cc=t,this.elements=(()=>[192|v(t,3)])()}}class Gs{constructor(){this.kind="ReturnInstruction_3",this.elements=(()=>[237,77])()}}class js{constructor(){this.kind="ReturnInstruction_4",this.elements=(()=>[237,69])()}}class Fs{constructor(t){this.kind="ReturnInstruction_5",this.p=t,this.elements=(()=>[199|K(t.value,3)])()}}class Vs{constructor(t){this.kind="InputInstruction_1",this.r=t,this.elements=(()=>[237,64|_(t,3)])()}}class zs{constructor(t,i){this.kind="InputInstruction_2",this.pos=t,this.n=i,this.elements=(()=>[219,A(t,i)])()}}class Us{constructor(){this.kind="InputInstruction_3",this.elements=(()=>[237,162])()}}class Xs{constructor(){this.kind="InputInstruction_4",this.elements=(()=>[237,178])()}}class Ws{constructor(){this.kind="InputInstruction_5",this.elements=(()=>[237,170])()}}class Zs{constructor(){this.kind="InputInstruction_6",this.elements=(()=>[237,186])()}}class Hs{constructor(t){this.kind="OutputInstruction_1",this.r=t,this.elements=(()=>[237,65|_(t,3)])()}}class Qs{constructor(t,i){this.kind="OutputInstruction_2",this.pos=t,this.n=i,this.elements=(()=>[211,A(t,i)])()}}class Ys{constructor(){this.kind="OutputInstruction_3",this.elements=(()=>[237,163])()}}class Ts{constructor(){this.kind="OutputInstruction_4",this.elements=(()=>[237,179])()}}class Ks{constructor(){this.kind="OutputInstruction_5",this.elements=(()=>[237,171])()}}class ds{constructor(){this.kind="OutputInstruction_6",this.elements=(()=>[237,187])()}}class $s{constructor(t){this.kind="ByteValue_1",this.c=t,this.elements=(()=>t.elements)()}}class tr{constructor(t){this.kind="ByteValue_2",this.s=t,this.elements=(()=>t.elements)()}}class ir{constructor(t){this.kind="ByteValue_3",this.s=t,this.elements=(()=>t.elements)()}}class nr{constructor(t,i){this.kind="ByteValue_4",this.pos=t,this.e=i,this.elements=(()=>[A(t,i)])()}}class er{constructor(t,i){this.kind="WordValue",this.pos=t,this.e=i,this.elements=(()=>[I(t,i)])()}}class sr{constructor(t,i,n){this.kind="DataDirective_1",this.pos0=t,this.data0=i,this.data=n,this.elements=(()=>Et(t,i,n))()}}class rr{constructor(t,i,n){this.kind="DataDirective_2",this.pos0=t,this.data0=i,this.data=n,this.elements=(()=>Rt(t,i,n))()}}class cr{constructor(t,i,n){this.kind="DataDirective_3",this.pos0=t,this.nn=i,this.data=n,this.elements=(()=>[vt(t,i,n?.pos1,n?.b)])()}}class ur{constructor(t){this.kind="SimpleEscapeSequence",this.raw=t,this.elements=(()=>qt(t))()}}class lr{constructor(t,i){this.kind="OctalEscapeSequence",this.pos=t,this.raw=i,this.elements=(()=>Ot(t,i))()}}class or{constructor(t,i){this.kind="HexadecimalEscapeSequence",this.pos=t,this.raw=i,this.elements=(()=>Pt(t,i))()}}class ar{constructor(t,i){this.kind="SimpleChar",this.pos=t,this.raw=i,this.elements=(()=>H(t,i))()}}class hr{constructor(t,i){this.kind="StringChar",this.pos=t,this.raw=i,this.elements=(()=>H(t,i))()}}class mr{constructor(t){this.kind="Char",this.char=t,this.elements=(()=>t.elements)()}}class _r{constructor(t){this.kind="Str",this.chars=t,this.elements=(()=>t.reduce((i,n)=>i.concat(n.elements),[]))()}}class gr{constructor(t,i){this.kind="ZX81Str",this.pos=t,this.chars=i,this.elements=(()=>Jt(t,i))()}}class Ir{constructor(t,i){this.kind="IncludeDirective",this.pos=t,this.name=i,this.lines=(()=>W(t,i.raw))()}}class xr{constructor(t,i){this.kind="OutputDirective",this.name=t,this.sld=i,this.void=(()=>{U(t.raw,i?.name.raw)})()}}class wr{constructor(t){this.kind="DeviceDirective",this.raw=t,this.void=(()=>{X(t)})()}}class Ar{constructor(t){this.negating=!1,this.memoSafe=!0,this.$scope$BitwiseOrExpression$memo=new Map,this.$scope$BitwiseXOrExpression$memo=new Map,this.$scope$BitwiseAndExpression$memo=new Map,this.$scope$ShiftExpression$memo=new Map,this.$scope$AdditiveExpression$memo=new Map,this.$scope$MultiplicativeExpression$memo=new Map,this.pos={overallPos:0,line:1,offset:0},this.input=t}reset(t){this.pos=t}finished(){return this.pos.overallPos===this.input.length}clearMemos(){this.$scope$BitwiseOrExpression$memo.clear(),this.$scope$BitwiseXOrExpression$memo.clear(),this.$scope$BitwiseAndExpression$memo.clear(),this.$scope$ShiftExpression$memo.clear(),this.$scope$AdditiveExpression$memo.clear(),this.$scope$MultiplicativeExpression$memo.clear()}matchstart(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchLines(t+1,i))!==null&&this.match$EOF(i)!==null&&(s={kind:"start",lines:n}),s})}matchr(t,i){return this.choice([()=>this.matchr_1(t+1,i),()=>this.matchr_2(t+1,i),()=>this.matchr_3(t+1,i),()=>this.matchr_4(t+1,i),()=>this.matchr_5(t+1,i),()=>this.matchr_6(t+1,i),()=>this.matchr_7(t+1,i)])}matchr_1(t,i){return this.regexAccept(String.raw`(?:a)`,t+1,i)}matchr_2(t,i){return this.regexAccept(String.raw`(?:b)`,t+1,i)}matchr_3(t,i){return this.regexAccept(String.raw`(?:c)`,t+1,i)}matchr_4(t,i){return this.regexAccept(String.raw`(?:d)`,t+1,i)}matchr_5(t,i){return this.regexAccept(String.raw`(?:e)`,t+1,i)}matchr_6(t,i){return this.regexAccept(String.raw`(?:h)`,t+1,i)}matchr_7(t,i){return this.regexAccept(String.raw`(?:l)`,t+1,i)}matchdd(t,i){return this.choice([()=>this.matchdd_1(t+1,i),()=>this.matchdd_2(t+1,i),()=>this.matchdd_3(t+1,i),()=>this.matchdd_4(t+1,i)])}matchdd_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchdd_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchdd_3(t,i){return this.regexAccept(String.raw`(?:hl)`,t+1,i)}matchdd_4(t,i){return this.regexAccept(String.raw`(?:sp)`,t+1,i)}matchss(t,i){return this.matchdd(t+1,i)}matchqq(t,i){return this.choice([()=>this.matchqq_1(t+1,i),()=>this.matchqq_2(t+1,i),()=>this.matchqq_3(t+1,i),()=>this.matchqq_4(t+1,i)])}matchqq_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchqq_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchqq_3(t,i){return this.regexAccept(String.raw`(?:hl)`,t+1,i)}matchqq_4(t,i){return this.regexAccept(String.raw`(?:af)`,t+1,i)}matchpp(t,i){return this.choice([()=>this.matchpp_1(t+1,i),()=>this.matchpp_2(t+1,i),()=>this.matchpp_3(t+1,i),()=>this.matchpp_4(t+1,i)])}matchpp_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchpp_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchpp_3(t,i){return this.regexAccept(String.raw`(?:ix)`,t+1,i)}matchpp_4(t,i){return this.regexAccept(String.raw`(?:sp)`,t+1,i)}matchrr(t,i){return this.choice([()=>this.matchrr_1(t+1,i),()=>this.matchrr_2(t+1,i),()=>this.matchrr_3(t+1,i),()=>this.matchrr_4(t+1,i)])}matchrr_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchrr_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchrr_3(t,i){return this.regexAccept(String.raw`(?:iy)`,t+1,i)}matchrr_4(t,i){return this.regexAccept(String.raw`(?:sp)`,t+1,i)}matchn(t,i){return this.choice([()=>this.matchn_1(t+1,i),()=>this.matchn_2(t+1,i),()=>this.matchn_3(t+1,i),()=>this.matchn_4(t+1,i)])}matchn_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchbinary(t+1,i))!==null&&(r=new Gt(n,s)),r})}matchn_2(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchhexadecimal(t+1,i))!==null&&(r=new jt(n,s)),r})}matchn_3(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchoctal(t+1,i))!==null&&(r=new Ft(n,s)),r})}matchn_4(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchdecimal(t+1,i))!==null&&(r=new Vt(n,s)),r})}matchnn(t,i){return this.choice([()=>this.matchnn_1(t+1,i),()=>this.matchnn_2(t+1,i),()=>this.matchnn_3(t+1,i),()=>this.matchnn_4(t+1,i)])}matchnn_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchbinary(t+1,i))!==null&&(r=new zt(n,s)),r})}matchnn_2(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchhexadecimal(t+1,i))!==null&&(r=new Ut(n,s)),r})}matchnn_3(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchoctal(t+1,i))!==null&&(r=new Xt(n,s)),r})}matchnn_4(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchdecimal(t+1,i))!==null&&(r=new Wt(n,s)),r})}matchdecimal(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-9]+)`,t+1,i))!==null&&(this.regexAccept(String.raw`(?:d)`,t+1,i)||!0)&&(s={kind:"decimal",raw:n}),s})}matchbinary(t,i){return this.run(t,()=>{let n,s=null;return this.matchbinary_$0(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[0-1]+)`,t+1,i))!==null&&(s={kind:"binary",raw:n}),s})}matchbinary_$0(t,i){return this.choice([()=>this.matchbinary_$0_1(t+1,i),()=>this.matchbinary_$0_2(t+1,i)])}matchbinary_$0_1(t,i){return this.regexAccept(String.raw`(?:0b)`,t+1,i)}matchbinary_$0_2(t,i){return this.regexAccept(String.raw`(?:%)`,t+1,i)}matchoctal(t,i){return this.choice([()=>this.matchoctal_1(t+1,i),()=>this.matchoctal_2(t+1,i)])}matchoctal_1(t,i){return this.run(t,()=>{let n,s=null;return this.matchoctal_$0(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[0-7]+)`,t+1,i))!==null&&(s={kind:"octal_1",raw:n}),s})}matchoctal_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-7]+)`,t+1,i))!==null&&this.matchoctal_$1(t+1,i)!==null&&(s={kind:"octal_2",raw:n}),s})}matchoctal_$0(t,i){return this.choice([()=>this.matchoctal_$0_1(t+1,i),()=>this.matchoctal_$0_2(t+1,i)])}matchoctal_$0_1(t,i){return this.regexAccept(String.raw`(?:0q)`,t+1,i)}matchoctal_$0_2(t,i){return this.regexAccept(String.raw`(?:0o)`,t+1,i)}matchoctal_$1(t,i){return this.choice([()=>this.matchoctal_$1_1(t+1,i),()=>this.matchoctal_$1_2(t+1,i)])}matchoctal_$1_1(t,i){return this.regexAccept(String.raw`(?:q)`,t+1,i)}matchoctal_$1_2(t,i){return this.regexAccept(String.raw`(?:o)`,t+1,i)}matchhexadecimal(t,i){return this.choice([()=>this.matchhexadecimal_1(t+1,i),()=>this.matchhexadecimal_2(t+1,i)])}matchhexadecimal_1(t,i){return this.run(t,()=>{let n,s=null;return this.matchhexadecimal_$0(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[0-9a-f]+)`,t+1,i))!==null&&(s={kind:"hexadecimal_1",raw:n}),s})}matchhexadecimal_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-9][0-9a-f]?)`,t+1,i))!==null&&this.regexAccept(String.raw`(?:h)`,t+1,i)!==null&&(s={kind:"hexadecimal_2",raw:n}),s})}matchhexadecimal_$0(t,i){return this.choice([()=>this.matchhexadecimal_$0_1(t+1,i),()=>this.matchhexadecimal_$0_2(t+1,i),()=>this.matchhexadecimal_$0_3(t+1,i)])}matchhexadecimal_$0_1(t,i){return this.regexAccept(String.raw`(?:0x)`,t+1,i)}matchhexadecimal_$0_2(t,i){return this.regexAccept(String.raw`(?:\$)`,t+1,i)}matchhexadecimal_$0_3(t,i){return this.regexAccept(String.raw`(?:#)`,t+1,i)}matchd(t,i){return this.matchn(t+1,i)}matche(t,i){return this.matchn(t+1,i)}matchp(t,i){return this.matchn(t+1,i)}matchb(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-7])`,t+1,i))!==null&&(s=new Zt(n)),s})}matchcc(t,i){return this.choice([()=>this.matchcc_1(t+1,i),()=>this.matchcc_2(t+1,i),()=>this.matchcc_3(t+1,i),()=>this.matchcc_4(t+1,i),()=>this.matchcc_5(t+1,i),()=>this.matchcc_6(t+1,i),()=>this.matchcc_7(t+1,i),()=>this.matchcc_8(t+1,i),()=>this.matchcc_9(t+1,i)])}matchcc_1(t,i){return this.regexAccept(String.raw`(?:nz)`,t+1,i)}matchcc_2(t,i){return this.regexAccept(String.raw`(?:z)`,t+1,i)}matchcc_3(t,i){return this.regexAccept(String.raw`(?:nc)`,t+1,i)}matchcc_4(t,i){return this.regexAccept(String.raw`(?:c)`,t+1,i)}matchcc_5(t,i){return this.regexAccept(String.raw`(?:po)`,t+1,i)}matchcc_6(t,i){return this.regexAccept(String.raw`(?:pe)`,t+1,i)}matchcc_7(t,i){return this.regexAccept(String.raw`(?:p)`,t+1,i)}matchcc_8(t,i){return this.regexAccept(String.raw`(?:m)`,t+1,i)}matchcc_9(t,i){return this.regexAccept(String.raw`(?:s)`,t+1,i)}matchjj(t,i){return this.choice([()=>this.matchjj_1(t+1,i),()=>this.matchjj_2(t+1,i),()=>this.matchjj_3(t+1,i),()=>this.matchjj_4(t+1,i)])}matchjj_1(t,i){return this.regexAccept(String.raw`(?:c)`,t+1,i)}matchjj_2(t,i){return this.regexAccept(String.raw`(?:nc)`,t+1,i)}matchjj_3(t,i){return this.regexAccept(String.raw`(?:z)`,t+1,i)}matchjj_4(t,i){return this.regexAccept(String.raw`(?:nz)`,t+1,i)}match__(t,i){return this.regexAccept(String.raw`(?:[ \t]+)`,t+1,i)}match_(t,i){return this.regexAccept(String.raw`(?:[ \t]*)`,t+1,i)}match_eos(t,i){return this.regexAccept(String.raw`(?:[ \t]*(;|\r\n|\n|//))`,t+1,i)}matchLines(t,i){return this.loop(()=>this.matchLine(t+1,i),!0)}matchLine(t,i){return this.choice([()=>this.matchLine_1(t+1,i),()=>this.matchLine_2(t+1,i)])}matchLine_1(t,i){return this.matchLineEqual(t+1,i)}matchLine_2(t,i){return this.matchLineStatement(t+1,i)}matchLineEqual(t,i){return this.run(t,()=>{let n,s,r,c=null;return(n=this.matchLabelDeclaration(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchEqualDirective(t+1,i))!==null&&this.match_(t+1,i)!==null&&((r=this.matchComment(t+1,i))||!0)&&this.regexAccept(String.raw`(?:\r\n|\n)`,t+1,i)!==null&&(c={kind:"LineEqual",label:n,equal:s,comment:r}),c})}matchLineStatement(t,i){return this.run(t,()=>{let n,s,r,c=null;return((n=this.matchLabelDeclaration(t+1,i))||!0)&&this.match_(t+1,i)!==null&&((s=this.matchStatement(t+1,i))||!0)&&this.match_(t+1,i)!==null&&((r=this.matchComment(t+1,i))||!0)&&this.regexAccept(String.raw`(?:\r\n|\n)`,t+1,i)!==null&&(c={kind:"LineStatement",label:n,statement:s,comment:r}),c})}matchStatement(t,i){return this.choice([()=>this.matchStatement_1(t+1,i),()=>this.matchStatement_2(t+1,i),()=>this.matchStatement_3(t+1,i)])}matchStatement_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchIncludeDirective(t+1,i))!==null&&(s=new Ht(n)),s})}matchStatement_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchInstruction(t+1,i))!==null&&(s=new Qt(n)),s})}matchStatement_3(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchDirective(t+1,i))!==null&&(s=new Yt(n)),s})}matchEqualDirective(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\.?equ|eq)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchExpression(t+1,i))!==null&&(s={kind:"EqualDirective",e:n}),s})}matchDirective(t,i){return this.choice([()=>this.matchDirective_1(t+1,i),()=>this.matchDirective_2(t+1,i),()=>this.matchDirective_3(t+1,i),()=>this.matchDirective_4(t+1,i)])}matchDirective_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchDataDirective(t+1,i))!==null&&(s=new Tt(n)),s})}matchDirective_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchOriginDirective(t+1,i))!==null&&(s=new Kt(n)),s})}matchDirective_3(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchOutputDirective(t+1,i))!==null&&(s=new dt(n)),s})}matchDirective_4(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchDeviceDirective(t+1,i))!==null&&(s=new $t(n)),s})}matchForbiddenNames(t,i){return this.choice([()=>this.matchForbiddenNames_1(t+1,i),()=>this.matchForbiddenNames_2(t+1,i),()=>this.matchForbiddenNames_3(t+1,i),()=>this.matchForbiddenNames_4(t+1,i),()=>this.matchForbiddenNames_5(t+1,i)])}matchForbiddenNames_1(t,i){return this.regexAccept(String.raw`(?:block|.\?equ|\.?org|\.?include|\.?output|\.?device)`,t+1,i)}matchForbiddenNames_2(t,i){return this.regexAccept(String.raw`(?:byte|call|cpdr|cpir|defb|defm|defs|defw|djnz|eq|halt|indr|inir|lddr|ldir|otdr|otir|outd|outi|push|reti|retn|rlca|rrca|word)`,t+1,i)}matchForbiddenNames_3(t,i){return this.regexAccept(String.raw`(?:adc|add|and|bit|ccf|cpd|cpi|cpl|daa|dec|exx|inc|ind|ini|ldd|ldi|neg|nop|org|out|pop|res|ret|rla)`,t+1,i)}matchForbiddenNames_4(t,i){return this.regexAccept(String.raw`(?:rlc|rld|rra|rrc|rrd|rst|sbc|scf|set|sla|sra|srl|sub|xor)`,t+1,i)}matchForbiddenNames_5(t,i){return this.regexAccept(String.raw`(?:cp|db|di|dm|ds|dw|dz|ei|eq|ex|im|in|jp|jr|ld|or|rl|rr)`,t+1,i)}matchForbiddenLabel(t,i){return this.run(t,()=>{let n=null;return this.matchForbiddenNames(t+1,i)!==null&&this.regexAccept(String.raw`(?:[ \t:\r\n])`,t+1,i)!==null&&(n={kind:"ForbiddenLabel"}),n})}matchLabel(t,i){return this.run(t,()=>{let n,s,r=null;return this.negate(()=>this.matchForbiddenLabel(t+1,i))!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[a-z_][a-z0-9_!\?#@\.]*)`,t+1,i))!==null&&(r={kind:"Label",pos:n,name:s}),r})}matchLabelDeclaration(t,i){return this.run(t,()=>{let n,s,r=null;return this.negate(()=>this.matchForbiddenLabel(t+1,i))!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[a-z_][a-z0-9_!\?#@\.]*)`,t+1,i))!==null&&(this.regexAccept(String.raw`(?:\:)`,t+1,i)||!0)&&(r={kind:"LabelDeclaration",pos:n,name:s}),r})}matchExpression(t,i){return this.run(t,()=>{let n,s=null;return this.negate(()=>this.regexAccept(String.raw`(?:\()`,t+1,i))!==null&&(n=this.matchBitwiseOrExpression(t+1,i))!==null&&(s=new ti(n)),s})}matchBitwiseOrExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchBitwiseOrExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchBitwiseXOrExpression(t+1,i))!==null&&(x=new ii(g,a)),x}),s=this.mark(),r=this.$scope$BitwiseOrExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseOrExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseOrExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseOrExpression_$0(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchBitwiseOrExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\|)`,t+1,i)!==null&&(s={kind:"BitwiseOrExpression_$0",e:n}),s})}matchBitwiseXOrExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchBitwiseXOrExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchBitwiseAndExpression(t+1,i))!==null&&(x=new ni(g,a)),x}),s=this.mark(),r=this.$scope$BitwiseXOrExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseXOrExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseXOrExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseXOrExpression_$0(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchBitwiseXOrExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\^)`,t+1,i)!==null&&(s={kind:"BitwiseXOrExpression_$0",e:n}),s})}matchBitwiseAndExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchBitwiseAndExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchShiftExpression(t+1,i))!==null&&(x=new ei(g,a)),x}),s=this.mark(),r=this.$scope$BitwiseAndExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseAndExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseAndExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseAndExpression_$0(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchBitwiseAndExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\&)`,t+1,i)!==null&&(s={kind:"BitwiseAndExpression_$0",e:n}),s})}matchShiftExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchShiftExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchAdditiveExpression(t+1,i))!==null&&(x=new si(g,a)),x}),s=this.mark(),r=this.$scope$ShiftExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$ShiftExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$ShiftExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchShiftExpression_$0(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchShiftExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchShiftExpression_$0_$0(t+1,i))!==null&&(r={kind:"ShiftExpression_$0",e:n,op:s}),r})}matchShiftExpression_$0_$0(t,i){return this.choice([()=>this.matchShiftExpression_$0_$0_1(t+1,i),()=>this.matchShiftExpression_$0_$0_2(t+1,i)])}matchShiftExpression_$0_$0_1(t,i){return this.regexAccept(String.raw`(?:<<)`,t+1,i)}matchShiftExpression_$0_$0_2(t,i){return this.regexAccept(String.raw`(?:>>)`,t+1,i)}matchAdditiveExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchAdditiveExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchMultiplicativeExpression(t+1,i))!==null&&(x=new ri(g,a)),x}),s=this.mark(),r=this.$scope$AdditiveExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$AdditiveExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$AdditiveExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchAdditiveExpression_$0(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchAdditiveExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchAdditiveExpression_$0_$0(t+1,i))!==null&&(r={kind:"AdditiveExpression_$0",e:n,op:s}),r})}matchAdditiveExpression_$0_$0(t,i){return this.choice([()=>this.matchAdditiveExpression_$0_$0_1(t+1,i),()=>this.matchAdditiveExpression_$0_$0_2(t+1,i)])}matchAdditiveExpression_$0_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchAdditiveExpression_$0_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchMultiplicativeExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchMultiplicativeExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchUnaryExpression(t+1,i))!==null&&(x=new ci(g,a)),x}),s=this.mark(),r=this.$scope$MultiplicativeExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$MultiplicativeExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$MultiplicativeExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchMultiplicativeExpression_$0(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchMultiplicativeExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchMultiplicativeExpression_$0_$0(t+1,i))!==null&&(r={kind:"MultiplicativeExpression_$0",e:n,op:s}),r})}matchMultiplicativeExpression_$0_$0(t,i){return this.choice([()=>this.matchMultiplicativeExpression_$0_$0_1(t+1,i),()=>this.matchMultiplicativeExpression_$0_$0_2(t+1,i),()=>this.matchMultiplicativeExpression_$0_$0_3(t+1,i)])}matchMultiplicativeExpression_$0_$0_1(t,i){return this.regexAccept(String.raw`(?:\*)`,t+1,i)}matchMultiplicativeExpression_$0_$0_2(t,i){return this.regexAccept(String.raw`(?:%)`,t+1,i)}matchMultiplicativeExpression_$0_$0_3(t,i){return this.regexAccept(String.raw`(?:/)`,t+1,i)}matchUnaryExpression(t,i){return this.choice([()=>this.matchUnaryExpression_1(t+1,i),()=>this.matchUnaryExpression_2(t+1,i)])}matchUnaryExpression_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchUnaryExpression_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchPrimaryExpression(t+1,i))!==null&&(r=new ui(n,s)),r})}matchUnaryExpression_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchPrimaryExpression(t+1,i))!==null&&(s=new li(n)),s})}matchUnaryExpression_$0(t,i){return this.choice([()=>this.matchUnaryExpression_$0_1(t+1,i),()=>this.matchUnaryExpression_$0_2(t+1,i),()=>this.matchUnaryExpression_$0_3(t+1,i)])}matchUnaryExpression_$0_1(t,i){return this.regexAccept(String.raw`(?:~)`,t+1,i)}matchUnaryExpression_$0_2(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchUnaryExpression_$0_3(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchPrimaryExpression(t,i){return this.choice([()=>this.matchPrimaryExpression_1(t+1,i),()=>this.matchPrimaryExpression_2(t+1,i),()=>this.matchPrimaryExpression_3(t+1,i)])}matchPrimaryExpression_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchnn(t+1,i))!==null&&(s=new oi(n)),s})}matchPrimaryExpression_2(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&(r=new ai(n,s)),r})}matchPrimaryExpression_3(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&(n=this.matchBitwiseOrExpression(t+1,i))!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&(s=new hi(n)),s})}matchReg8(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.regexAccept(String.raw`(?:[^a-z0-9_!\?#@\.])`,t+1,i))!==null&&(s={kind:"Reg8",reg:n}),s})}matchInstruction(t,i){return this.choice([()=>this.matchInstruction_1(t+1,i),()=>this.matchInstruction_2(t+1,i),()=>this.matchInstruction_3(t+1,i),()=>this.matchInstruction_4(t+1,i),()=>this.matchInstruction_5(t+1,i),()=>this.matchInstruction_6(t+1,i),()=>this.matchInstruction_7(t+1,i),()=>this.matchInstruction_8(t+1,i),()=>this.matchInstruction_9(t+1,i),()=>this.matchInstruction_10(t+1,i),()=>this.matchInstruction_11(t+1,i),()=>this.matchInstruction_12(t+1,i),()=>this.matchInstruction_13(t+1,i),()=>this.matchInstruction_14(t+1,i),()=>this.matchInstruction_15(t+1,i),()=>this.matchInstruction_16(t+1,i)])}matchInstruction_1(t,i){return this.matchLoad8Instruction(t+1,i)}matchInstruction_2(t,i){return this.matchLoad16Instruction(t+1,i)}matchInstruction_3(t,i){return this.matchExchangeInstruction(t+1,i)}matchInstruction_4(t,i){return this.matchBlockInstruction(t+1,i)}matchInstruction_5(t,i){return this.matchArithmeticLogic8Instruction(t+1,i)}matchInstruction_6(t,i){return this.matchIncrementDecrement8Instruction(t+1,i)}matchInstruction_7(t,i){return this.matchGeneralPurposeArithmeticInstruction(t+1,i)}matchInstruction_8(t,i){return this.matchArithmeticLogic16Instruction(t+1,i)}matchInstruction_9(t,i){return this.matchRotateShiftInstruction(t+1,i)}matchInstruction_10(t,i){return this.matchBitManipulationInstruction(t+1,i)}matchInstruction_11(t,i){return this.matchJumpInstruction(t+1,i)}matchInstruction_12(t,i){return this.matchCallInstruction(t+1,i)}matchInstruction_13(t,i){return this.matchReturnInstruction(t+1,i)}matchInstruction_14(t,i){return this.matchInputInstruction(t+1,i)}matchInstruction_15(t,i){return this.matchOutputInstruction(t+1,i)}matchInstruction_16(t,i){return this.matchCpuControlGroupInstruction(t+1,i)}matchLoad8Instruction(t,i){return this.choice([()=>this.matchLoad8Instruction_1(t+1,i),()=>this.matchLoad8Instruction_2(t+1,i),()=>this.matchLoad8Instruction_3(t+1,i),()=>this.matchLoad8Instruction_4(t+1,i),()=>this.matchLoad8Instruction_5(t+1,i),()=>this.matchLoad8Instruction_6(t+1,i),()=>this.matchLoad8Instruction_7(t+1,i),()=>this.matchLoad8Instruction_8(t+1,i),()=>this.matchLoad8Instruction_9(t+1,i),()=>this.matchLoad8Instruction_10(t+1,i),()=>this.matchLoad8Instruction_11(t+1,i),()=>this.matchLoad8Instruction_12(t+1,i),()=>this.matchLoad8Instruction_13(t+1,i),()=>this.matchLoad8Instruction_14(t+1,i),()=>this.matchLoad8Instruction_15(t+1,i),()=>this.matchLoad8Instruction_16(t+1,i),()=>this.matchLoad8Instruction_17(t+1,i),()=>this.matchLoad8Instruction_18(t+1,i),()=>this.matchLoad8Instruction_19(t+1,i),()=>this.matchLoad8Instruction_20(t+1,i),()=>this.matchLoad8Instruction_21(t+1,i)])}matchLoad8Instruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchReg8(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchReg8(t+1,i))!==null&&(r=new mi(n,s)),r})}matchLoad8Instruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new _i(n)),s})}matchLoad8Instruction_3(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchLoad8Instruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new gi(n,s,r,c)),u})}matchLoad8Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchLoad8Instruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Ii(n,s,r,c)),u})}matchLoad8Instruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new xi(n)),s})}matchLoad8Instruction_6(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new wi(n,s,r,c)),u})}matchLoad8Instruction_7(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Ai(n,s,r,c)),u})}matchLoad8Instruction_8(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Li(n,s)),r})}matchLoad8Instruction_9(t,i){return this.run(t,()=>{let n,s,r,c,u,o=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.mark())!==null&&(u=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(o=new fi(n,s,r,c,u)),o})}matchLoad8Instruction_10(t,i){return this.run(t,()=>{let n,s,r,c,u,o=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$5(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.mark())!==null&&(u=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(o=new Si(n,s,r,c,u)),o})}matchLoad8Instruction_11(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:bc)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ki),n})}matchLoad8Instruction_12(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ei),n})}matchLoad8Instruction_13(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ri(n,s)),r})}matchLoad8Instruction_14(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:bc)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new vi),n})}matchLoad8Instruction_15(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ci),n})}matchLoad8Instruction_16(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new pi(n,s)),r})}matchLoad8Instruction_17(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:i)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Bi),n})}matchLoad8Instruction_18(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:r)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Di),n})}matchLoad8Instruction_19(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:i)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new bi),n})}matchLoad8Instruction_20(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:r)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new yi),n})}matchLoad8Instruction_21(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchReg8(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Mi(n,s,r)),c})}matchLoad8Instruction_$0(t,i){return this.choice([()=>this.matchLoad8Instruction_$0_1(t+1,i),()=>this.matchLoad8Instruction_$0_2(t+1,i)])}matchLoad8Instruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$1(t,i){return this.choice([()=>this.matchLoad8Instruction_$1_1(t+1,i),()=>this.matchLoad8Instruction_$1_2(t+1,i)])}matchLoad8Instruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$2(t,i){return this.choice([()=>this.matchLoad8Instruction_$2_1(t+1,i),()=>this.matchLoad8Instruction_$2_2(t+1,i)])}matchLoad8Instruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$3(t,i){return this.choice([()=>this.matchLoad8Instruction_$3_1(t+1,i),()=>this.matchLoad8Instruction_$3_2(t+1,i)])}matchLoad8Instruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$4(t,i){return this.choice([()=>this.matchLoad8Instruction_$4_1(t+1,i),()=>this.matchLoad8Instruction_$4_2(t+1,i)])}matchLoad8Instruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$5(t,i){return this.choice([()=>this.matchLoad8Instruction_$5_1(t+1,i),()=>this.matchLoad8Instruction_$5_2(t+1,i)])}matchLoad8Instruction_$5_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$5_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad16Instruction(t,i){return this.choice([()=>this.matchLoad16Instruction_1(t+1,i),()=>this.matchLoad16Instruction_2(t+1,i),()=>this.matchLoad16Instruction_3(t+1,i),()=>this.matchLoad16Instruction_4(t+1,i),()=>this.matchLoad16Instruction_5(t+1,i),()=>this.matchLoad16Instruction_6(t+1,i),()=>this.matchLoad16Instruction_7(t+1,i),()=>this.matchLoad16Instruction_8(t+1,i),()=>this.matchLoad16Instruction_9(t+1,i),()=>this.matchLoad16Instruction_10(t+1,i),()=>this.matchLoad16Instruction_11(t+1,i),()=>this.matchLoad16Instruction_12(t+1,i),()=>this.matchLoad16Instruction_13(t+1,i),()=>this.matchLoad16Instruction_14(t+1,i),()=>this.matchLoad16Instruction_15(t+1,i),()=>this.matchLoad16Instruction_16(t+1,i),()=>this.matchLoad16Instruction_17(t+1,i),()=>this.matchLoad16Instruction_18(t+1,i),()=>this.matchLoad16Instruction_19(t+1,i),()=>this.matchLoad16Instruction_20(t+1,i)])}matchLoad16Instruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new qi(n,s)),r})}matchLoad16Instruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Oi(n,s)),r})}matchLoad16Instruction_3(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Pi(n,s)),r})}matchLoad16Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchdd(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ni(n,s,r)),c})}matchLoad16Instruction_5(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ji(n,s)),r})}matchLoad16Instruction_6(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Gi(n,s)),r})}matchLoad16Instruction_7(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new ji(n,s)),r})}matchLoad16Instruction_8(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(r=this.matchdd(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Fi(n,s,r)),c})}matchLoad16Instruction_9(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Vi(n,s)),r})}matchLoad16Instruction_10(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new zi(n,s)),r})}matchLoad16Instruction_11(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ui),n})}matchLoad16Instruction_12(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Xi),n})}matchLoad16Instruction_13(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Wi),n})}matchLoad16Instruction_14(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchdd(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Zi(n,s,r)),c})}matchLoad16Instruction_15(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:push)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchqq(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Hi(n)),s})}matchLoad16Instruction_16(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:push)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Qi),n})}matchLoad16Instruction_17(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:push)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Yi),n})}matchLoad16Instruction_18(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:pop)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchqq(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ti(n)),s})}matchLoad16Instruction_19(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:pop)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ki),n})}matchLoad16Instruction_20(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:pop)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new di),n})}matchExchangeInstruction(t,i){return this.choice([()=>this.matchExchangeInstruction_1(t+1,i),()=>this.matchExchangeInstruction_2(t+1,i),()=>this.matchExchangeInstruction_3(t+1,i),()=>this.matchExchangeInstruction_4(t+1,i),()=>this.matchExchangeInstruction_5(t+1,i),()=>this.matchExchangeInstruction_6(t+1,i)])}matchExchangeInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new $i),n})}matchExchangeInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:af)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:af\')`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new tn),n})}matchExchangeInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:exx)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new nn),n})}matchExchangeInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new en),n})}matchExchangeInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new sn),n})}matchExchangeInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new rn),n})}matchBlockInstruction(t,i){return this.choice([()=>this.matchBlockInstruction_1(t+1,i),()=>this.matchBlockInstruction_2(t+1,i),()=>this.matchBlockInstruction_3(t+1,i),()=>this.matchBlockInstruction_4(t+1,i),()=>this.matchBlockInstruction_5(t+1,i),()=>this.matchBlockInstruction_6(t+1,i),()=>this.matchBlockInstruction_7(t+1,i),()=>this.matchBlockInstruction_8(t+1,i)])}matchBlockInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ldir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new cn),n})}matchBlockInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ldi)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new un),n})}matchBlockInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:lddr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ln),n})}matchBlockInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ldd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new on),n})}matchBlockInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new an),n})}matchBlockInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpi)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new hn),n})}matchBlockInstruction_7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpdr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new mn),n})}matchBlockInstruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new _n),n})}matchArithmeticLogic8Instruction(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_2(t+1,i),()=>this.matchArithmeticLogic8Instruction_3(t+1,i),()=>this.matchArithmeticLogic8Instruction_4(t+1,i),()=>this.matchArithmeticLogic8Instruction_5(t+1,i),()=>this.matchArithmeticLogic8Instruction_6(t+1,i),()=>this.matchArithmeticLogic8Instruction_7(t+1,i),()=>this.matchArithmeticLogic8Instruction_8(t+1,i),()=>this.matchArithmeticLogic8Instruction_9(t+1,i),()=>this.matchArithmeticLogic8Instruction_10(t+1,i),()=>this.matchArithmeticLogic8Instruction_11(t+1,i),()=>this.matchArithmeticLogic8Instruction_12(t+1,i),()=>this.matchArithmeticLogic8Instruction_13(t+1,i),()=>this.matchArithmeticLogic8Instruction_14(t+1,i),()=>this.matchArithmeticLogic8Instruction_15(t+1,i),()=>this.matchArithmeticLogic8Instruction_16(t+1,i),()=>this.matchArithmeticLogic8Instruction_17(t+1,i),()=>this.matchArithmeticLogic8Instruction_18(t+1,i),()=>this.matchArithmeticLogic8Instruction_19(t+1,i),()=>this.matchArithmeticLogic8Instruction_20(t+1,i),()=>this.matchArithmeticLogic8Instruction_21(t+1,i),()=>this.matchArithmeticLogic8Instruction_22(t+1,i),()=>this.matchArithmeticLogic8Instruction_23(t+1,i),()=>this.matchArithmeticLogic8Instruction_24(t+1,i),()=>this.matchArithmeticLogic8Instruction_25(t+1,i),()=>this.matchArithmeticLogic8Instruction_26(t+1,i),()=>this.matchArithmeticLogic8Instruction_27(t+1,i),()=>this.matchArithmeticLogic8Instruction_28(t+1,i),()=>this.matchArithmeticLogic8Instruction_29(t+1,i),()=>this.matchArithmeticLogic8Instruction_30(t+1,i),()=>this.matchArithmeticLogic8Instruction_31(t+1,i),()=>this.matchArithmeticLogic8Instruction_32(t+1,i),()=>this.matchArithmeticLogic8Instruction_33(t+1,i),()=>this.matchArithmeticLogic8Instruction_34(t+1,i),()=>this.matchArithmeticLogic8Instruction_35(t+1,i),()=>this.matchArithmeticLogic8Instruction_36(t+1,i),()=>this.matchArithmeticLogic8Instruction_37(t+1,i),()=>this.matchArithmeticLogic8Instruction_38(t+1,i),()=>this.matchArithmeticLogic8Instruction_39(t+1,i),()=>this.matchArithmeticLogic8Instruction_40(t+1,i)])}matchArithmeticLogic8Instruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$0(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new gn(n)),s})}matchArithmeticLogic8Instruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$1(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new In(n,s)),r})}matchArithmeticLogic8Instruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$2(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new xn),n})}matchArithmeticLogic8Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$3(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new wn(n,s,r)),c})}matchArithmeticLogic8Instruction_5(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$5(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$6(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new An(n,s,r)),c})}matchArithmeticLogic8Instruction_6(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$7(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ln(n)),s})}matchArithmeticLogic8Instruction_7(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$8(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new fn(n,s)),r})}matchArithmeticLogic8Instruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$9(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Sn),n})}matchArithmeticLogic8Instruction_9(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$10(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$11(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new kn(n,s,r)),c})}matchArithmeticLogic8Instruction_10(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$12(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$13(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new En(n,s,r)),c})}matchArithmeticLogic8Instruction_11(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$14(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Rn(n)),s})}matchArithmeticLogic8Instruction_12(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$15(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new vn(n,s)),r})}matchArithmeticLogic8Instruction_13(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$16(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Cn),n})}matchArithmeticLogic8Instruction_14(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$17(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$18(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new pn(n,s,r)),c})}matchArithmeticLogic8Instruction_15(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$19(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$20(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Bn(n,s,r)),c})}matchArithmeticLogic8Instruction_16(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$21(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Dn(n)),s})}matchArithmeticLogic8Instruction_17(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$22(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new bn(n,s)),r})}matchArithmeticLogic8Instruction_18(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$23(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new yn),n})}matchArithmeticLogic8Instruction_19(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$24(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$25(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Mn(n,s,r)),c})}matchArithmeticLogic8Instruction_20(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$26(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$27(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new qn(n,s,r)),c})}matchArithmeticLogic8Instruction_21(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$28(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new On(n)),s})}matchArithmeticLogic8Instruction_22(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$29(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Pn(n,s)),r})}matchArithmeticLogic8Instruction_23(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$30(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Nn),n})}matchArithmeticLogic8Instruction_24(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$31(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$32(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Jn(n,s,r)),c})}matchArithmeticLogic8Instruction_25(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$33(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$34(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Gn(n,s,r)),c})}matchArithmeticLogic8Instruction_26(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$35(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new jn(n)),s})}matchArithmeticLogic8Instruction_27(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$36(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Fn(n,s)),r})}matchArithmeticLogic8Instruction_28(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$37(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Vn),n})}matchArithmeticLogic8Instruction_29(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$38(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$39(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new zn(n,s,r)),c})}matchArithmeticLogic8Instruction_30(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$40(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$41(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Un(n,s,r)),c})}matchArithmeticLogic8Instruction_31(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$42(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Xn(n)),s})}matchArithmeticLogic8Instruction_32(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$43(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Wn(n,s)),r})}matchArithmeticLogic8Instruction_33(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$44(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Zn),n})}matchArithmeticLogic8Instruction_34(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$45(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$46(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Hn(n,s,r)),c})}matchArithmeticLogic8Instruction_35(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$47(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$48(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Qn(n,s,r)),c})}matchArithmeticLogic8Instruction_36(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$49(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Yn(n)),s})}matchArithmeticLogic8Instruction_37(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$50(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Tn(n,s)),r})}matchArithmeticLogic8Instruction_38(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$51(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Kn),n})}matchArithmeticLogic8Instruction_39(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$52(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$53(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new dn(n,s,r)),c})}matchArithmeticLogic8Instruction_40(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$54(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$55(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new $n(n,s,r)),c})}matchArithmeticLogic8Instruction_$0(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$0"}),n})}matchArithmeticLogic8Instruction_$1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$1"}),n})}matchArithmeticLogic8Instruction_$2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$2"}),n})}matchArithmeticLogic8Instruction_$3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$3"}),n})}matchArithmeticLogic8Instruction_$4(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$4_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$4_2(t+1,i)])}matchArithmeticLogic8Instruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$5"}),n})}matchArithmeticLogic8Instruction_$6(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$6_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$6_2(t+1,i)])}matchArithmeticLogic8Instruction_$6_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$6_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$7"}),n})}matchArithmeticLogic8Instruction_$8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$8"}),n})}matchArithmeticLogic8Instruction_$9(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$9"}),n})}matchArithmeticLogic8Instruction_$10(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$10"}),n})}matchArithmeticLogic8Instruction_$11(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$11_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$11_2(t+1,i)])}matchArithmeticLogic8Instruction_$11_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$11_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$12(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$12"}),n})}matchArithmeticLogic8Instruction_$13(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$13_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$13_2(t+1,i)])}matchArithmeticLogic8Instruction_$13_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$13_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$14(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$14"}),n})}matchArithmeticLogic8Instruction_$15(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$15"}),n})}matchArithmeticLogic8Instruction_$16(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$16"}),n})}matchArithmeticLogic8Instruction_$17(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$17"}),n})}matchArithmeticLogic8Instruction_$18(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$18_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$18_2(t+1,i)])}matchArithmeticLogic8Instruction_$18_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$18_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$19(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$19"}),n})}matchArithmeticLogic8Instruction_$20(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$20_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$20_2(t+1,i)])}matchArithmeticLogic8Instruction_$20_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$20_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$21(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$21"}),n})}matchArithmeticLogic8Instruction_$22(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$22"}),n})}matchArithmeticLogic8Instruction_$23(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$23"}),n})}matchArithmeticLogic8Instruction_$24(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$24"}),n})}matchArithmeticLogic8Instruction_$25(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$25_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$25_2(t+1,i)])}matchArithmeticLogic8Instruction_$25_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$25_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$26(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$26"}),n})}matchArithmeticLogic8Instruction_$27(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$27_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$27_2(t+1,i)])}matchArithmeticLogic8Instruction_$27_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$27_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$28(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$28"}),n})}matchArithmeticLogic8Instruction_$29(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$29"}),n})}matchArithmeticLogic8Instruction_$30(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$30"}),n})}matchArithmeticLogic8Instruction_$31(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$31"}),n})}matchArithmeticLogic8Instruction_$32(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$32_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$32_2(t+1,i)])}matchArithmeticLogic8Instruction_$32_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$32_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$33(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$33"}),n})}matchArithmeticLogic8Instruction_$34(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$34_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$34_2(t+1,i)])}matchArithmeticLogic8Instruction_$34_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$34_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$35(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$35"}),n})}matchArithmeticLogic8Instruction_$36(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$36"}),n})}matchArithmeticLogic8Instruction_$37(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$37"}),n})}matchArithmeticLogic8Instruction_$38(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$38"}),n})}matchArithmeticLogic8Instruction_$39(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$39_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$39_2(t+1,i)])}matchArithmeticLogic8Instruction_$39_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$39_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$40(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$40"}),n})}matchArithmeticLogic8Instruction_$41(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$41_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$41_2(t+1,i)])}matchArithmeticLogic8Instruction_$41_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$41_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$42(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$42"}),n})}matchArithmeticLogic8Instruction_$43(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$43"}),n})}matchArithmeticLogic8Instruction_$44(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$44"}),n})}matchArithmeticLogic8Instruction_$45(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$45"}),n})}matchArithmeticLogic8Instruction_$46(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$46_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$46_2(t+1,i)])}matchArithmeticLogic8Instruction_$46_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$46_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$47(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$47"}),n})}matchArithmeticLogic8Instruction_$48(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$48_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$48_2(t+1,i)])}matchArithmeticLogic8Instruction_$48_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$48_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$49(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$49"}),n})}matchArithmeticLogic8Instruction_$50(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$50"}),n})}matchArithmeticLogic8Instruction_$51(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$51"}),n})}matchArithmeticLogic8Instruction_$52(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$52"}),n})}matchArithmeticLogic8Instruction_$53(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$53_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$53_2(t+1,i)])}matchArithmeticLogic8Instruction_$53_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$53_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$54(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$54"}),n})}matchArithmeticLogic8Instruction_$55(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$55_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$55_2(t+1,i)])}matchArithmeticLogic8Instruction_$55_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$55_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_2(t+1,i),()=>this.matchIncrementDecrement8Instruction_3(t+1,i),()=>this.matchIncrementDecrement8Instruction_4(t+1,i),()=>this.matchIncrementDecrement8Instruction_5(t+1,i),()=>this.matchIncrementDecrement8Instruction_6(t+1,i),()=>this.matchIncrementDecrement8Instruction_7(t+1,i),()=>this.matchIncrementDecrement8Instruction_8(t+1,i)])}matchIncrementDecrement8Instruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new te(n)),s})}matchIncrementDecrement8Instruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ie),n})}matchIncrementDecrement8Instruction_3(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ne(n,s,r)),c})}matchIncrementDecrement8Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ee(n,s,r)),c})}matchIncrementDecrement8Instruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new se(n)),s})}matchIncrementDecrement8Instruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new re),n})}matchIncrementDecrement8Instruction_7(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ce(n,s,r)),c})}matchIncrementDecrement8Instruction_8(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ue(n,s,r)),c})}matchIncrementDecrement8Instruction_$0(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$0_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$0_2(t+1,i)])}matchIncrementDecrement8Instruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction_$1(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$1_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$1_2(t+1,i)])}matchIncrementDecrement8Instruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction_$2(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$2_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$2_2(t+1,i)])}matchIncrementDecrement8Instruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction_$3(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$3_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$3_2(t+1,i)])}matchIncrementDecrement8Instruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchGeneralPurposeArithmeticInstruction(t,i){return this.choice([()=>this.matchGeneralPurposeArithmeticInstruction_1(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_2(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_3(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_4(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_5(t+1,i)])}matchGeneralPurposeArithmeticInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:daa)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new le),n})}matchGeneralPurposeArithmeticInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new oe),n})}matchGeneralPurposeArithmeticInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:neg)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ae),n})}matchGeneralPurposeArithmeticInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ccf)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new he),n})}matchGeneralPurposeArithmeticInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:scf)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new me),n})}matchCpuControlGroupInstruction(t,i){return this.choice([()=>this.matchCpuControlGroupInstruction_1(t+1,i),()=>this.matchCpuControlGroupInstruction_2(t+1,i),()=>this.matchCpuControlGroupInstruction_3(t+1,i),()=>this.matchCpuControlGroupInstruction_4(t+1,i),()=>this.matchCpuControlGroupInstruction_5(t+1,i)])}matchCpuControlGroupInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:nop)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new _e),n})}matchCpuControlGroupInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:halt)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ge),n})}matchCpuControlGroupInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:di)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ie),n})}matchCpuControlGroupInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ei)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new xe),n})}matchCpuControlGroupInstruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:im)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[012])`,t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new we(n)),s})}matchArithmeticLogic16Instruction(t,i){return this.choice([()=>this.matchArithmeticLogic16Instruction_1(t+1,i),()=>this.matchArithmeticLogic16Instruction_2(t+1,i),()=>this.matchArithmeticLogic16Instruction_3(t+1,i),()=>this.matchArithmeticLogic16Instruction_4(t+1,i),()=>this.matchArithmeticLogic16Instruction_5(t+1,i),()=>this.matchArithmeticLogic16Instruction_6(t+1,i),()=>this.matchArithmeticLogic16Instruction_7(t+1,i),()=>this.matchArithmeticLogic16Instruction_8(t+1,i),()=>this.matchArithmeticLogic16Instruction_9(t+1,i),()=>this.matchArithmeticLogic16Instruction_10(t+1,i),()=>this.matchArithmeticLogic16Instruction_11(t+1,i)])}matchArithmeticLogic16Instruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ae(n)),s})}matchArithmeticLogic16Instruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Le(n)),s})}matchArithmeticLogic16Instruction_3(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new fe(n)),s})}matchArithmeticLogic16Instruction_4(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchpp(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Se(n)),s})}matchArithmeticLogic16Instruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchrr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new ke(n)),s})}matchArithmeticLogic16Instruction_6(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ee(n)),s})}matchArithmeticLogic16Instruction_7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Re),n})}matchArithmeticLogic16Instruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ve),n})}matchArithmeticLogic16Instruction_9(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ce(n)),s})}matchArithmeticLogic16Instruction_10(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new pe),n})}matchArithmeticLogic16Instruction_11(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Be),n})}matchRotateShiftInstruction(t,i){return this.choice([()=>this.matchRotateShiftInstruction_1(t+1,i),()=>this.matchRotateShiftInstruction_2(t+1,i),()=>this.matchRotateShiftInstruction_3(t+1,i),()=>this.matchRotateShiftInstruction_4(t+1,i),()=>this.matchRotateShiftInstruction_5(t+1,i),()=>this.matchRotateShiftInstruction_6(t+1,i),()=>this.matchRotateShiftInstruction_7(t+1,i),()=>this.matchRotateShiftInstruction_8(t+1,i),()=>this.matchRotateShiftInstruction_9(t+1,i),()=>this.matchRotateShiftInstruction_10(t+1,i),()=>this.matchRotateShiftInstruction_11(t+1,i),()=>this.matchRotateShiftInstruction_12(t+1,i),()=>this.matchRotateShiftInstruction_13(t+1,i),()=>this.matchRotateShiftInstruction_14(t+1,i),()=>this.matchRotateShiftInstruction_15(t+1,i),()=>this.matchRotateShiftInstruction_16(t+1,i),()=>this.matchRotateShiftInstruction_17(t+1,i),()=>this.matchRotateShiftInstruction_18(t+1,i),()=>this.matchRotateShiftInstruction_19(t+1,i),()=>this.matchRotateShiftInstruction_20(t+1,i),()=>this.matchRotateShiftInstruction_21(t+1,i),()=>this.matchRotateShiftInstruction_22(t+1,i),()=>this.matchRotateShiftInstruction_23(t+1,i),()=>this.matchRotateShiftInstruction_24(t+1,i),()=>this.matchRotateShiftInstruction_25(t+1,i),()=>this.matchRotateShiftInstruction_26(t+1,i),()=>this.matchRotateShiftInstruction_27(t+1,i),()=>this.matchRotateShiftInstruction_28(t+1,i),()=>this.matchRotateShiftInstruction_29(t+1,i),()=>this.matchRotateShiftInstruction_30(t+1,i),()=>this.matchRotateShiftInstruction_31(t+1,i),()=>this.matchRotateShiftInstruction_32(t+1,i),()=>this.matchRotateShiftInstruction_33(t+1,i),()=>this.matchRotateShiftInstruction_34(t+1,i)])}matchRotateShiftInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rlca)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new De),n})}matchRotateShiftInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rla)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new be),n})}matchRotateShiftInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rrca)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ye),n})}matchRotateShiftInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rra)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Me),n})}matchRotateShiftInstruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new qe(n)),s})}matchRotateShiftInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Oe),n})}matchRotateShiftInstruction_7(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Pe(n,s,r)),c})}matchRotateShiftInstruction_8(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ne(n,s,r)),c})}matchRotateShiftInstruction_9(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Je(n)),s})}matchRotateShiftInstruction_10(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ge),n})}matchRotateShiftInstruction_11(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new je(n,s,r)),c})}matchRotateShiftInstruction_12(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Fe(n,s,r)),c})}matchRotateShiftInstruction_13(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ve(n)),s})}matchRotateShiftInstruction_14(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ze),n})}matchRotateShiftInstruction_15(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ue(n,s,r)),c})}matchRotateShiftInstruction_16(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$5(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Xe(n,s,r)),c})}matchRotateShiftInstruction_17(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new We(n)),s})}matchRotateShiftInstruction_18(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ze),n})}matchRotateShiftInstruction_19(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$6(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new He(n,s,r)),c})}matchRotateShiftInstruction_20(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$7(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Qe(n,s,r)),c})}matchRotateShiftInstruction_21(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ye(n)),s})}matchRotateShiftInstruction_22(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Te),n})}matchRotateShiftInstruction_23(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$8(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ke(n,s,r)),c})}matchRotateShiftInstruction_24(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$9(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new de(n,s,r)),c})}matchRotateShiftInstruction_25(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new $e(n)),s})}matchRotateShiftInstruction_26(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ts),n})}matchRotateShiftInstruction_27(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$10(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new is(n,s,r)),c})}matchRotateShiftInstruction_28(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$11(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ns(n,s,r)),c})}matchRotateShiftInstruction_29(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new es(n)),s})}matchRotateShiftInstruction_30(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ss),n})}matchRotateShiftInstruction_31(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$12(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new rs(n,s,r)),c})}matchRotateShiftInstruction_32(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$13(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new cs(n,s,r)),c})}matchRotateShiftInstruction_33(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rld)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new us),n})}matchRotateShiftInstruction_34(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rrd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ls),n})}matchRotateShiftInstruction_$0(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$0_1(t+1,i),()=>this.matchRotateShiftInstruction_$0_2(t+1,i)])}matchRotateShiftInstruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$1(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$1_1(t+1,i),()=>this.matchRotateShiftInstruction_$1_2(t+1,i)])}matchRotateShiftInstruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$2(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$2_1(t+1,i),()=>this.matchRotateShiftInstruction_$2_2(t+1,i)])}matchRotateShiftInstruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$3(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$3_1(t+1,i),()=>this.matchRotateShiftInstruction_$3_2(t+1,i)])}matchRotateShiftInstruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$4(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$4_1(t+1,i),()=>this.matchRotateShiftInstruction_$4_2(t+1,i)])}matchRotateShiftInstruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$5(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$5_1(t+1,i),()=>this.matchRotateShiftInstruction_$5_2(t+1,i)])}matchRotateShiftInstruction_$5_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$5_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$6(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$6_1(t+1,i),()=>this.matchRotateShiftInstruction_$6_2(t+1,i)])}matchRotateShiftInstruction_$6_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$6_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$7(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$7_1(t+1,i),()=>this.matchRotateShiftInstruction_$7_2(t+1,i)])}matchRotateShiftInstruction_$7_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$7_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$8(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$8_1(t+1,i),()=>this.matchRotateShiftInstruction_$8_2(t+1,i)])}matchRotateShiftInstruction_$8_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$8_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$9(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$9_1(t+1,i),()=>this.matchRotateShiftInstruction_$9_2(t+1,i)])}matchRotateShiftInstruction_$9_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$9_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$10(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$10_1(t+1,i),()=>this.matchRotateShiftInstruction_$10_2(t+1,i)])}matchRotateShiftInstruction_$10_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$10_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$11(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$11_1(t+1,i),()=>this.matchRotateShiftInstruction_$11_2(t+1,i)])}matchRotateShiftInstruction_$11_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$11_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$12(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$12_1(t+1,i),()=>this.matchRotateShiftInstruction_$12_2(t+1,i)])}matchRotateShiftInstruction_$12_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$12_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$13(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$13_1(t+1,i),()=>this.matchRotateShiftInstruction_$13_2(t+1,i)])}matchRotateShiftInstruction_$13_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$13_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction(t,i){return this.choice([()=>this.matchBitManipulationInstruction_1(t+1,i),()=>this.matchBitManipulationInstruction_2(t+1,i),()=>this.matchBitManipulationInstruction_3(t+1,i),()=>this.matchBitManipulationInstruction_4(t+1,i),()=>this.matchBitManipulationInstruction_5(t+1,i),()=>this.matchBitManipulationInstruction_6(t+1,i),()=>this.matchBitManipulationInstruction_7(t+1,i),()=>this.matchBitManipulationInstruction_8(t+1,i),()=>this.matchBitManipulationInstruction_9(t+1,i),()=>this.matchBitManipulationInstruction_10(t+1,i),()=>this.matchBitManipulationInstruction_11(t+1,i),()=>this.matchBitManipulationInstruction_12(t+1,i)])}matchBitManipulationInstruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new os(n,s)),r})}matchBitManipulationInstruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new as(n)),s})}matchBitManipulationInstruction_3(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new hs(n,s,r,c)),u})}matchBitManipulationInstruction_4(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new ms(n,s,r,c)),u})}matchBitManipulationInstruction_5(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new _s(n,s)),r})}matchBitManipulationInstruction_6(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new gs(n)),s})}matchBitManipulationInstruction_7(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Is(n,s,r,c)),u})}matchBitManipulationInstruction_8(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new xs(n,s,r,c)),u})}matchBitManipulationInstruction_9(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new ws(n,s)),r})}matchBitManipulationInstruction_10(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new As(n)),s})}matchBitManipulationInstruction_11(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Ls(n,s,r,c)),u})}matchBitManipulationInstruction_12(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$5(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new fs(n,s,r,c)),u})}matchBitManipulationInstruction_$0(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$0_1(t+1,i),()=>this.matchBitManipulationInstruction_$0_2(t+1,i)])}matchBitManipulationInstruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$1(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$1_1(t+1,i),()=>this.matchBitManipulationInstruction_$1_2(t+1,i)])}matchBitManipulationInstruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$2(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$2_1(t+1,i),()=>this.matchBitManipulationInstruction_$2_2(t+1,i)])}matchBitManipulationInstruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$3(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$3_1(t+1,i),()=>this.matchBitManipulationInstruction_$3_2(t+1,i)])}matchBitManipulationInstruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$4(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$4_1(t+1,i),()=>this.matchBitManipulationInstruction_$4_2(t+1,i)])}matchBitManipulationInstruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$5(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$5_1(t+1,i),()=>this.matchBitManipulationInstruction_$5_2(t+1,i)])}matchBitManipulationInstruction_$5_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$5_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchOffset(t,i){return this.choice([()=>this.matchOffset_1(t+1,i),()=>this.matchOffset_2(t+1,i)])}matchOffset_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&(r=new Ss(n,s)),r})}matchOffset_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchExpression(t+1,i))!==null&&(s=new ks(n)),s})}matchJumpInstruction(t,i){return this.choice([()=>this.matchJumpInstruction_1(t+1,i),()=>this.matchJumpInstruction_2(t+1,i),()=>this.matchJumpInstruction_3(t+1,i),()=>this.matchJumpInstruction_4(t+1,i),()=>this.matchJumpInstruction_5(t+1,i),()=>this.matchJumpInstruction_6(t+1,i),()=>this.matchJumpInstruction_7(t+1,i),()=>this.matchJumpInstruction_8(t+1,i),()=>this.matchJumpInstruction_9(t+1,i),()=>this.matchJumpInstruction_10(t+1,i),()=>this.matchJumpInstruction_11(t+1,i)])}matchJumpInstruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Es(n,s)),r})}matchJumpInstruction_2(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchcc(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Rs(n,s,r)),c})}matchJumpInstruction_3(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new vs(n,s)),r})}matchJumpInstruction_4(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Cs(n,s)),r})}matchJumpInstruction_5(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchjj(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchLabel(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ps(n,s,r)),c})}matchJumpInstruction_6(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchjj(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Bs(n,s,r)),c})}matchJumpInstruction_7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ds),n})}matchJumpInstruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new bs),n})}matchJumpInstruction_9(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ys),n})}matchJumpInstruction_10(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:djnz)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ms(n,s)),r})}matchJumpInstruction_11(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:djnz)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new qs(n,s)),r})}matchCallInstruction(t,i){return this.choice([()=>this.matchCallInstruction_1(t+1,i),()=>this.matchCallInstruction_2(t+1,i)])}matchCallInstruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:call)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Os(n,s)),r})}matchCallInstruction_2(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:call)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchcc(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ps(n,s,r)),c})}matchReturnInstruction(t,i){return this.choice([()=>this.matchReturnInstruction_1(t+1,i),()=>this.matchReturnInstruction_2(t+1,i),()=>this.matchReturnInstruction_3(t+1,i),()=>this.matchReturnInstruction_4(t+1,i),()=>this.matchReturnInstruction_5(t+1,i)])}matchReturnInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ret)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ns),n})}matchReturnInstruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:ret)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchcc(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Js(n)),s})}matchReturnInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:reti)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Gs),n})}matchReturnInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:retn)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new js),n})}matchReturnInstruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rst)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchp(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Fs(n)),s})}matchInputInstruction(t,i){return this.choice([()=>this.matchInputInstruction_1(t+1,i),()=>this.matchInputInstruction_2(t+1,i),()=>this.matchInputInstruction_3(t+1,i),()=>this.matchInputInstruction_4(t+1,i),()=>this.matchInputInstruction_5(t+1,i),()=>this.matchInputInstruction_6(t+1,i)])}matchInputInstruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:in)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:c)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Vs(n)),s})}matchInputInstruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:in)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new zs(n,s)),r})}matchInputInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ini)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Us),n})}matchInputInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Xs),n})}matchInputInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ind)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ws),n})}matchInputInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:indr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Zs),n})}matchOutputInstruction(t,i){return this.choice([()=>this.matchOutputInstruction_1(t+1,i),()=>this.matchOutputInstruction_2(t+1,i),()=>this.matchOutputInstruction_3(t+1,i),()=>this.matchOutputInstruction_4(t+1,i),()=>this.matchOutputInstruction_5(t+1,i),()=>this.matchOutputInstruction_6(t+1,i)])}matchOutputInstruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:out)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:c)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Hs(n)),s})}matchOutputInstruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:out)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Qs(n,s)),r})}matchOutputInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:outi)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ys),n})}matchOutputInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:otir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ts),n})}matchOutputInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:outd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ks),n})}matchOutputInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:otdr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ds),n})}matchByteDirective(t,i){return this.choice([()=>this.matchByteDirective_1(t+1,i),()=>this.matchByteDirective_2(t+1,i),()=>this.matchByteDirective_3(t+1,i),()=>this.matchByteDirective_4(t+1,i),()=>this.matchByteDirective_5(t+1,i)])}matchByteDirective_1(t,i){return this.regexAccept(String.raw`(?:db)`,t+1,i)}matchByteDirective_2(t,i){return this.regexAccept(String.raw`(?:dm)`,t+1,i)}matchByteDirective_3(t,i){return this.regexAccept(String.raw`(?:byte)`,t+1,i)}matchByteDirective_4(t,i){return this.regexAccept(String.raw`(?:defb)`,t+1,i)}matchByteDirective_5(t,i){return this.regexAccept(String.raw`(?:defm)`,t+1,i)}matchWordDirective(t,i){return this.choice([()=>this.matchWordDirective_1(t+1,i),()=>this.matchWordDirective_2(t+1,i),()=>this.matchWordDirective_3(t+1,i)])}matchWordDirective_1(t,i){return this.regexAccept(String.raw`(?:dw)`,t+1,i)}matchWordDirective_2(t,i){return this.regexAccept(String.raw`(?:word)`,t+1,i)}matchWordDirective_3(t,i){return this.regexAccept(String.raw`(?:defw)`,t+1,i)}matchBlockDirective(t,i){return this.choice([()=>this.matchBlockDirective_1(t+1,i),()=>this.matchBlockDirective_2(t+1,i),()=>this.matchBlockDirective_3(t+1,i)])}matchBlockDirective_1(t,i){return this.regexAccept(String.raw`(?:block)`,t+1,i)}matchBlockDirective_2(t,i){return this.regexAccept(String.raw`(?:defs)`,t+1,i)}matchBlockDirective_3(t,i){return this.regexAccept(String.raw`(?:ds)`,t+1,i)}matchByteValue(t,i){return this.choice([()=>this.matchByteValue_1(t+1,i),()=>this.matchByteValue_2(t+1,i),()=>this.matchByteValue_3(t+1,i),()=>this.matchByteValue_4(t+1,i)])}matchByteValue_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchChar(t+1,i))!==null&&(s=new $s(n)),s})}matchByteValue_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchStr(t+1,i))!==null&&(s=new tr(n)),s})}matchByteValue_3(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchZX81Str(t+1,i))!==null&&(s=new ir(n)),s})}matchByteValue_4(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&(r=new nr(n,s)),r})}matchWordValue(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&(r=new er(n,s)),r})}matchDataDirective(t,i){return this.choice([()=>this.matchDataDirective_1(t+1,i),()=>this.matchDataDirective_2(t+1,i),()=>this.matchDataDirective_3(t+1,i)])}matchDataDirective_1(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.matchByteDirective(t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchByteValue(t+1,i))!==null&&(r=this.loop(()=>this.matchDataDirective_$0(t+1,i),!0))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new sr(n,s,r)),c})}matchDataDirective_2(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.matchWordDirective(t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchWordValue(t+1,i))!==null&&(r=this.loop(()=>this.matchDataDirective_$1(t+1,i),!0))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new rr(n,s,r)),c})}matchDataDirective_3(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.matchBlockDirective(t+1,i)!==null&&this.match__(t+1,i)!==null&&this.mark()!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&((r=this.matchDataDirective_$2(t+1,i))||!0)&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new cr(n,s,r)),c})}matchDataDirective_$0(t,i){return this.run(t,()=>{let n,s=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchByteValue(t+1,i))!==null&&(s={kind:"DataDirective_$0",inner:n}),s})}matchDataDirective_$1(t,i){return this.run(t,()=>{let n,s=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchWordValue(t+1,i))!==null&&(s={kind:"DataDirective_$1",inner:n}),s})}matchDataDirective_$2(t,i){return this.run(t,()=>{let n,s,r=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&(r={kind:"DataDirective_$2",pos1:n,b:s}),r})}matchEscapeSequence(t,i){return this.choice([()=>this.matchEscapeSequence_1(t+1,i),()=>this.matchEscapeSequence_2(t+1,i),()=>this.matchEscapeSequence_3(t+1,i)])}matchEscapeSequence_1(t,i){return this.matchSimpleEscapeSequence(t+1,i)}matchEscapeSequence_2(t,i){return this.matchOctalEscapeSequence(t+1,i)}matchEscapeSequence_3(t,i){return this.matchHexadecimalEscapeSequence(t+1,i)}matchSimpleEscapeSequence(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\\)`,t+1,i)!==null&&(n=this.matchSimpleEscapeSequence_$0(t+1,i))!==null&&(s=new ur(n)),s})}matchSimpleEscapeSequence_$0(t,i){return this.choice([()=>this.matchSimpleEscapeSequence_$0_1(t+1,i),()=>this.matchSimpleEscapeSequence_$0_2(t+1,i),()=>this.matchSimpleEscapeSequence_$0_3(t+1,i),()=>this.matchSimpleEscapeSequence_$0_4(t+1,i),()=>this.matchSimpleEscapeSequence_$0_5(t+1,i),()=>this.matchSimpleEscapeSequence_$0_6(t+1,i),()=>this.matchSimpleEscapeSequence_$0_7(t+1,i),()=>this.matchSimpleEscapeSequence_$0_8(t+1,i),()=>this.matchSimpleEscapeSequence_$0_9(t+1,i),()=>this.matchSimpleEscapeSequence_$0_10(t+1,i),()=>this.matchSimpleEscapeSequence_$0_11(t+1,i),()=>this.matchSimpleEscapeSequence_$0_12(t+1,i)])}matchSimpleEscapeSequence_$0_1(t,i){return this.regexAccept(String.raw`(?:\')`,t+1,i)}matchSimpleEscapeSequence_$0_2(t,i){return this.regexAccept(String.raw`(?:")`,t+1,i)}matchSimpleEscapeSequence_$0_3(t,i){return this.regexAccept(String.raw`(?:\?)`,t+1,i)}matchSimpleEscapeSequence_$0_4(t,i){return this.regexAccept(String.raw`(?:\\)`,t+1,i)}matchSimpleEscapeSequence_$0_5(t,i){return this.regexAccept(String.raw`(?:a)`,t+1,i)}matchSimpleEscapeSequence_$0_6(t,i){return this.regexAccept(String.raw`(?:b)`,t+1,i)}matchSimpleEscapeSequence_$0_7(t,i){return this.regexAccept(String.raw`(?:e)`,t+1,i)}matchSimpleEscapeSequence_$0_8(t,i){return this.regexAccept(String.raw`(?:f)`,t+1,i)}matchSimpleEscapeSequence_$0_9(t,i){return this.regexAccept(String.raw`(?:n)`,t+1,i)}matchSimpleEscapeSequence_$0_10(t,i){return this.regexAccept(String.raw`(?:t)`,t+1,i)}matchSimpleEscapeSequence_$0_11(t,i){return this.regexAccept(String.raw`(?:r)`,t+1,i)}matchSimpleEscapeSequence_$0_12(t,i){return this.regexAccept(String.raw`(?:v)`,t+1,i)}matchOctalEscapeSequence(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:\\)`,t+1,i)!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[0-7]{1,3})`,t+1,i))!==null&&(r=new lr(n,s)),r})}matchHexadecimalEscapeSequence(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:\\x)`,t+1,i)!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[0-9a-f]{1,2})`,t+1,i))!==null&&(r=new or(n,s)),r})}matchSimpleChar(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[^\'\\\n])`,t+1,i))!==null&&(r=new ar(n,s)),r})}matchStringChar(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[^\"\\\n])`,t+1,i))!==null&&(r=new hr(n,s)),r})}matchChar(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\')`,t+1,i)!==null&&(n=this.matchChar_$0(t+1,i))!==null&&this.regexAccept(String.raw`(?:\')`,t+1,i)!==null&&(s=new mr(n)),s})}matchChar_$0(t,i){return this.choice([()=>this.matchChar_$0_1(t+1,i),()=>this.matchChar_$0_2(t+1,i)])}matchChar_$0_1(t,i){return this.matchSimpleChar(t+1,i)}matchChar_$0_2(t,i){return this.matchEscapeSequence(t+1,i)}matchStr(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\")`,t+1,i)!==null&&(n=this.loop(()=>this.matchStr_$0(t+1,i),!0))!==null&&this.regexAccept(String.raw`(?:\")`,t+1,i)!==null&&(s=new _r(n)),s})}matchStr_$0(t,i){return this.choice([()=>this.matchStr_$0_1(t+1,i),()=>this.matchStr_$0_2(t+1,i)])}matchStr_$0_1(t,i){return this.matchStringChar(t+1,i)}matchStr_$0_2(t,i){return this.matchEscapeSequence(t+1,i)}matchZX81Str(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:zx81\")`,t+1,i)!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[ £\$:\?()><=+\-\*;/,.0-9A-Za-z]*)`,t+1,i))!==null&&this.regexAccept(String.raw`(?:\")`,t+1,i)!==null&&(r=new gr(n,s)),r})}matchComment(t,i){return this.regexAccept(String.raw`(?:(//|;)[^\r\n]*)`,t+1,i)}matchOriginDirective(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\.?org)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchnn(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s={kind:"OriginDirective",address:n}),s})}matchFilename(t,i){return this.choice([()=>this.matchFilename_1(t+1,i),()=>this.matchFilename_2(t+1,i)])}matchFilename_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:")`,t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[^"\\:\*\?<>\|%#\$,]+)`,t+1,i))!==null&&this.regexAccept(String.raw`(?:")`,t+1,i)!==null&&(s={kind:"Filename_1",raw:n}),s})}matchFilename_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[^ \t\r\n"\\:\*\?<>\|%#\$,]+)`,t+1,i))!==null&&(s={kind:"Filename_2",raw:n}),s})}matchIncludeDirective(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&this.regexAccept(String.raw`(?:\.?include)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(s=this.matchFilename(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ir(n,s)),r})}matchOutputDirective(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:\.?output)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchFilename(t+1,i))!==null&&((s=this.matchOutputDirective_$0(t+1,i))||!0)&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new xr(n,s)),r})}matchOutputDirective_$0(t,i){return this.run(t,()=>{let n,s=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:sld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchFilename(t+1,i))!==null&&(s={kind:"OutputDirective_$0",name:n}),s})}matchDeviceDirective(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\.?device)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[a-zA-Z][0-9a-zA-Z]*)`,t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new wr(n)),s})}test(){const t=this.mark(),n=this.matchstart(0)!==null;return this.reset(t),n}parse(){const t=this.mark(),i=this.matchstart(0);if(i)return{ast:i,errs:[]};this.reset(t);const n=new Lr;this.clearMemos(),this.matchstart(0,n);const s=n.getErr();return{ast:i,errs:s!==null?[s]:[]}}mark(){return this.pos}loop(t,i=!1){const n=this.mark(),s=[];for(;;){const r=t();if(r===null)break;s.push(r)}return i||s.length>0?s:(this.reset(n),null)}run(t,i){const n=this.mark(),s=i();return s!==null?s:(this.reset(n),null)}choice(t){for(const i of t){const n=i();if(n!==null)return n}return null}regexAccept(t,i,n){return this.run(i,()=>{const s=new RegExp(t,"yi"),r=this.mark();s.lastIndex=r.overallPos;const c=this.tryConsume(s);return n&&n.record(r,c,{kind:"RegexMatch",literal:t.substring(3,t.length-1),negated:this.negating}),c})}tryConsume(t){const i=t.exec(this.input);if(i){let n=0,s=-1;for(let r=0;r<i[0].length;++r)i[0][r]===`
|
|
9
|
+
`&&(++n,s=r);return this.pos={overallPos:t.lastIndex,line:this.pos.line+n,offset:s===-1?this.pos.offset+i[0].length:i[0].length-s-1},i[0]}return null}noConsume(t){const i=this.mark(),n=t();return this.reset(i),n}negate(t){const i=this.mark(),n=this.negating;this.negating=!n;const s=t();return this.negating=n,this.reset(i),s===null?!0:null}memoise(t,i){const n=this.mark(),s=i.get(n.overallPos);if(this.memoSafe&&s!==void 0)return this.reset(s[1]),s[0];const r=t();return this.memoSafe&&i.set(n.overallPos,[r,this.mark()]),r}match$EOF(t){const i=this.finished()?{kind:"$EOF"}:null;return t&&t.record(this.mark(),i,{kind:"EOF",negated:this.negating}),i}}class Q{constructor(t,i){this.pos=t,this.expmatches=[...i]}toString(){return`Syntax Error at line ${this.pos.line}:${this.pos.offset}. Expected one of ${this.expmatches.map(t=>t.kind==="EOF"?" EOF":` ${t.negated?"not ":""}'${t.literal}'`)}`}}class Lr{constructor(){this.mxpos={overallPos:-1,line:-1,offset:-1},this.regexset=new Set,this.pmatches=[]}record(t,i,n){i===null!==n.negated&&(t.overallPos>this.mxpos.overallPos&&(this.mxpos=t,this.pmatches=[],this.regexset.clear()),this.mxpos.overallPos===t.overallPos&&(n.kind==="RegexMatch"?(this.regexset.has(n.literal)||this.pmatches.push(n),this.regexset.add(n.literal)):this.pmatches.push(n)))}getErr(){return this.mxpos.overallPos!==-1?new Q(this.mxpos,this.pmatches):null}}class m extends Error{constructor(t,i,n){super(n),this.filename=t,this.pos=i}toString(){return`File '${this.filename}', Line ${this.pos.line}:${this.pos.offset+1} - ${this.message}`}static formatMatch(t){return t.kind==="EOF"?" end of code":` ${t.negated?"not ":""}${t.literal}`}static formatError(t){if(t.expmatches.length===1){const i=t.expmatches[0],n=i.kind==="EOF"?"the end of the code":i.literal;return`${i.negated?"Does not expect ":"Expect "}${n}`}return`Syntax error, expected one of: ${t.expmatches.map(i=>m.formatMatch(i))}`}static fromSyntaxErr(t,i){return new m(t,i.pos,this.formatError(i))}static fromAny(t,i){return i instanceof m?i:i instanceof Q?this.fromSyntaxErr(t,i):new m(t,{line:1,offset:0,overallPos:0},i.toString())}static is(t){return t.filename!==void 0}static isArray(t){const i=t;return i.length!==void 0&&(i.length===0||i[0].filename!==void 0)}}function fr(e,t){let i=[],n=0;for(;n<e.length;){const s=e.slice(n,n+t);i=i.concat({address:n.toString(16).padStart(4,"0"),bytes:s.map(r=>r.toString(16).padStart(2,"0")).join(" ")}),n+=t}return i}exports.CompilationError=m;exports.compile=Mt;exports.computeLabels=b;exports.formatBytes=fr;exports.generateLinesBytes=M;exports.generateSld=V;exports.includeFile=W;exports.parseData=h;exports.setDeviceName=X;exports.setOutputName=U;
|