PEP-10
1 program
Added 2026-02-13T14:37:36Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Pep-10, Pep/10
Provenance: commit fbcee947a1 · authored 2026-02-13T15:38:22+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
Simple Addition
Provenance: commit fbcee947a1 · authored 2026-02-13T15:38:22+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Simple addition program for PEP-10
; Adds two numbers and stores the result
BR main ; Branch to main program
num1: .WORD 5 ; First number
num2: .WORD 3 ; Second number
result: .BLOCK 2 ; Space for result
main: LDWA num1,d ; Load first number
ADDA num2,d ; Add second number
STWA result,d ; Store result
STOP ; Halt execution
.END