Update 2.201
8/1/2026
v2.201.0.0BETAMINOR
SeymourAug 1, 2026
F5-L2: ATEL language emitter (AST → instructions) with the FIXED semantics + 12 tests
FfxLib/Ai/AtelScript/AtelEmitter.cs(new):EmitExpr(literals/vars/arithmetic+ - * / %/unary- !— post-order, stack-clean) ·EmitComparison(fixed semantics:<→[PUSHV,PUSHII,0x0B],<=→0x0A,>→swapped order[PUSHII,PUSHV,0x0B](right<left≡left>right),>=→swapped0x0A) ·EmitAssignAction(expr+POPV) ·EmitGuard·AlwaysGuard·ResolveVariable(clear error listing known vars) ·AtelEmitException(actionable message).CompileProgram(L2): if→AppendGuardedAction(stop), assign→always-true guarded.AtelEmitterTests.cs(12 tests): 6 comparisons with exact bytes (incl. the SWAPPED ORDER of>— the 0x0A/0x0B bug fixed in v2.198.4.1), post-order arithmetic, unary, assign, real round-trip on the m001 fixture (append → re-read → CodeWalkClosedExactly + guard present), missing var → clear error, unsupported statement → error, non-comparison condition → error.- Baseline: 312/312 PASS (301 + 12 − 1 updated error test). ### MINOR ### MINOR
v2.200.0.0