PDP-15 Assembly

1 program Added 2026-02-11T14:30:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: PDP15 Assembly, PDP/15 Assembly
Provenance: commit 74d921046f · authored 2026-02-11T12:40:58+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-11 Assembly (0.54)PDP-5 Assembly (0.50)PDP-6 Assembly (0.50)PDP-7 Assembly (0.45)PDP-8 Assembly (0.45)

LLM-contributed programs

Hello World

Provenance: commit 74d921046f · authored 2026-02-11T12:40:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-11T14:30:00Z
/ HELLO WORLD PROGRAM FOR PDP-15
/ USES TELEPRINTER OUTPUT

*200                    / START AT LOCATION 200
BEGIN,  LAW MSG         / LOAD ADDRESS OF MESSAGE
        DAC PTR         / STORE IN POINTER
LOOP,   LAC PTR I       / LOAD CHAR FROM MESSAGE
        SNA             / SKIP IF NON-ZERO
        HLT             / HALT IF ZERO
        TLS             / OUTPUT TO TELEPRINTER
        LAC PTR         / LOAD POINTER
        IAC             / INCREMENT
        DAC PTR         / STORE BACK
        JMP LOOP        / CONTINUE LOOP

PTR,    0
MSG,    110             / H
        105             / E
        114             / L
        114             / L
        117             / O
        040             / SPACE
        127             / W
        117             / O
        122             / R
        114             / L
        104             / D
        012             / NEWLINE
        0               / TERMINATOR

$BEGIN                  / SET START ADDRESS

Contribute — propose a file extension

Tell us where to find evidence about PDP-15 Assembly (mapped to pl/pdp_15_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-15 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PDP-12 Assembly PDP-4 Assembly →