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)
Related languages
LLM-contributed programs
Simple Counter Program
Provenance: commit 651fee6948 · authored 2026-02-12T14:03:19+01:00 · agent claude-code · model sonnet · WebSearch disabled
/ 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