PDP-6 Assembly
1 program
Added 2026-02-11T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ff4082a6c7 · authored 2026-02-11T12:32:21+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.65)PDP-5 Assembly (0.52)PDP-7 Assembly (0.52)PDP-8 Assembly (0.52)PDP-15 Assembly (0.50)
LLM-contributed programs
Add Two Numbers
Provenance: commit ff4082a6c7 · authored 2026-02-11T12:32:21+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Simple PDP-6 Assembly program to add two numbers
MOVE 1,NUM1 ; Load first number into register 1
ADD 1,NUM2 ; Add second number to register 1
MOVEM 1,RESULT ; Store result in memory
HALT ; Stop execution
NUM1: 10 ; First number
NUM2: 20 ; Second number
RESULT: 0 ; Result storage