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)
LLM (this repo) · 1

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
code.s · added: 2026-02-11T11:28:49.845376Z
   " 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

Contribute — propose a file extension

Tell us where to find evidence about PDP-7 Assembly (mapped to pl/pdp_7_assembly). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/PDP-7 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PDP-6 Assembly PDP-8 Assembly →