Files
control-see/ldtext/LDText.fs
2025-09-07 22:15:25 -06:00

22 lines
379 B
Forth

module LDText
module Ast =
type Rung =
| Rung of Step list
and Instr = { Op: string; Args: Operand list }
and BranchArm =
| BranchArm of Step list
and Branch =
| Branch of BranchArm list
and Step =
| StepInstr of Instr
| StepBranch of Branch
and Operand =
| OperandHole
| OperandTag of string