AWL

1 program Added 2026-02-28T10:57:40Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Anweisungsliste, Instruction List, IL
Provenance: commit 2c0c5c4f19 · authored 2026-02-28T11:58:00+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/awl
LLM (this repo) · 1Pldb

Related languages

Instruction List (0.50)Quil (0.22)ISLE (0.20)ASSIST (0.20)ASIC (0.20)

LLM-contributed programs

Motor Start/Stop Control

Provenance: commit 2c0c5c4f19 · authored 2026-02-28T11:58:00+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.awl · added: 2026-02-28T10:57:40Z
(* Motor Start/Stop Control                           *)
(* AWL (Anweisungsliste) - IEC 61131-3 compatible    *)

PROGRAM MotorControl
VAR
    Start  AT %I0.0 : BOOL;   (* Start pushbutton, normally open  *)
    Stop   AT %I0.1 : BOOL;   (* Stop pushbutton, normally closed *)
    Motor  AT %Q0.0 : BOOL;   (* Motor contactor output           *)
END_VAR
BEGIN
    (* Self-holding motor circuit *)
    LD    Start      (* Load start signal                         *)
    OR    Motor      (* OR with current motor state (self-hold)   *)
    ANDN  Stop       (* AND NOT stop signal                       *)
    ST    Motor      (* Store result to motor output              *)
END_PROGRAM

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about AWL (mapped to pl/awl). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/AWL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Awk AWL programming language (Var. 1) →