PDP-12 Assembly
1 program
Added 2026-02-11T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: LINC-8 Assembly
Provenance: commit 071a411aea · authored 2026-02-11T12:50:02+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-11 Assembly (0.50)PDP-8 Assembly (0.47)PDP-6 Assembly (0.46)PDP-15 Assembly (0.41)PDP-5 Assembly (0.38)
LLM-contributed programs
Add Two Numbers
Provenance: commit 071a411aea · authored 2026-02-11T12:50:02+01:00 · agent claude-code · model sonnet · WebSearch disabled
/ PDP-12 Assembly - Add Two Numbers
/ This program adds two numbers and stores the result
*200
START, CLA CLL / Clear AC and Link
TAD NUM1 / Load first number
TAD NUM2 / Add second number
DCA RESULT / Store result
HLT / Halt
NUM1, 0777 / First number (octal)
NUM2, 0001 / Second number (octal)
RESULT, 0000 / Result storage
$