Cx4 Notes ========= WLA Cx4 targets the Capcom Cx4 instruction format used by the Hitachi HG51B169. The backend is usable as a normal WLA target, but control flow deserves a short CPU-specific note because jump, branch, and call operands are page-local. Program Page Model ------------------ Cx4 control flow is split into two parts: - the opcode operand supplies the low 8 bits of the target program counter - the current program page stays unchanged unless the instruction uses the far form In WLA syntax, the far form is written with ``.F``. For example: - ``JMP RenderLoop JSR.F RenderLoop`` selects the page byte used to set up ``P`` - ``MathInit JSR.F label`` directly instead of baking page and offset constants by hand.