2026-08-19 - The first guest instruction, translated and executed

Done. A TDD cycle, red through green, on v_mov_b32 with an inline constant source.

Verified. Gate green, and the gate says executed against a real device. The translated module validates under spirv-val and produces the right register values on hardware: v_mov_b32 v3, 9 leaves 9 in v3 and zero everywhere else, and a later move beats an earlier one.

Surprises.

Not done. One instruction of a few hundred. No arithmetic, no memory access, no control flow - and control flow is where the predicated strategy earns its name, since none of the execution-mask machinery exists yet. The register file is a plain array with no mask applied to writes.