TX-2 Assembly

1 program Added 2026-02-12T13:02:27.046215Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 651fee6948 · authored 2026-02-12T14:03:19+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

TX-0 Assembly (0.55)DLX (0.43)PDP-6 Assembly (0.41)PDP-11 Assembly (0.39)CDC 6600 Assembly (0.36)

LLM-contributed programs

Simple Counter Program

Provenance: commit 651fee6948 · authored 2026-02-12T14:03:19+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-12T13:02:27.046215Z
/ TX-2 Assembly - Simple Counter Program
/ This program counts from 1 to 10
/
        CLA             / Clear accumulator
        TAD TEN         / Load 10 into AC
        DCA COUNT       / Store in COUNT
LOOP,   TAD COUNT       / Load COUNT
        CIA             / Complement and increment
        SNA             / Skip if AC not zero
        HLT             / Halt if zero
        TAD COUNT       / Load COUNT
        TAD MONE        / Subtract 1
        DCA COUNT       / Store back
        JMP LOOP        / Jump to LOOP
TEN,    10              / Constant 10
MONE,   -1              / Constant -1
COUNT,  0               / Counter variable

Contribute — propose a file extension

Tell us where to find evidence about TX-2 Assembly (mapped to pl/tx_2_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/TX-2 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← TX-0 Assembly TxeT →