PL/M-51
1 program
Added 2026-02-16T15:44:46Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: PL/M-8051
Provenance: commit ea5e0bcfa6 · authored 2026-02-16T16:45:19+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
LED Blinker
Provenance: commit ea5e0bcfa6 · authored 2026-02-16T16:45:19+01:00 · agent claude-code · model sonnet · WebSearch disabled
/* Simple LED blinker for 8051 in PL/M-51 */
BLINK: DO;
DECLARE P1 BYTE EXTERNAL;
FOREVER: DO;
P1 = 0FFH; /* Turn all LEDs on */
CALL DELAY;
P1 = 00H; /* Turn all LEDs off */
CALL DELAY;
END FOREVER;
DELAY: PROCEDURE;
DECLARE (I, J) BYTE;
DO I = 0 TO 255;
DO J = 0 TO 255;
END;
END;
END DELAY;
END BLINK;