PDP-7 Assembly
1 program
Added 2026-02-11T11:28:49.845376Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: PDP-7 ASM, PDP7 Assembly
Provenance: commit d60d766909 · authored 2026-02-11T12:29: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-5 Assembly (0.63)PDP-8 Assembly (0.63)PDP-6 Assembly (0.52)PDP-11 Assembly (0.50)PDP-15 Assembly (0.45)
LLM-contributed programs
Simple Counter
Provenance: commit d60d766909 · authored 2026-02-11T12:29:39+01:00 · agent claude-code · model sonnet · WebSearch disabled
" Simple counter program
lac d0 " Load accumulator with 0
dac count " Store in count variable
loop:
lac count " Load count
add d1 " Add 1
dac count " Store back to count
sad d10 " Skip if accumulator differs from 10
hlt " Halt if equal to 10
jmp loop " Jump back to loop
d0: 0 " Constant 0
d1: 1 " Constant 1
d10: 10 " Constant 10
count: 0 " Counter variable