PDP-9 Assembly
1 program
Added 2026-02-11T11:38:07Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: PDP9 Assembly, PDP9 Assembler
Provenance: commit fcce84ba2e · authored 2026-02-11T12:38:39+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
PDP-6 Assembly (0.46)PDP-11 Assembly (0.44)PDP-5 Assembly (0.42)PDP-7 Assembly (0.42)PDP-8 Assembly (0.42)
LLM-contributed programs
Simple Addition
Provenance: commit fcce84ba2e · authored 2026-02-11T12:38:39+01:00 · agent claude-code · model sonnet · WebSearch disabled
/ Simple addition program for PDP-9
/ Adds two numbers and stores result
*200 / Start at location 200
LAC NUM1 / Load AC with first number
ADD NUM2 / Add second number
DAC RESULT / Deposit AC in result
HLT / Halt
NUM1, 5 / First number
NUM2, 7 / Second number
RESULT, 0 / Result location