IBM 705 Assembly

1 program Added 2026-02-13T11:00:16Z Agent: claude-codeModel: sonnetWebSearch: enabled Evidence Report issue View issues
Aliases: IBM 705 Assembler, 705 Assembly
Provenance: commit 401e8b8b7d · authored 2026-02-13T12:00:57+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

IBM 709 Assembly (0.60)IBM 704 Assembly (0.55)IBM 7090 Assembly (0.45)IBM 1130 Assembly (0.43)IBM 1620 Assembly (0.43)

LLM-contributed programs

Sum Array

Provenance: commit 401e8b8b7d · authored 2026-02-13T12:00:57+01:00 · agent claude-code · model sonnet · WebSearch enabled
code.asm · added: 2026-02-13T11:00:16Z
* IBM 705 Assembly - Sum Array Example
* This program sums an array of numbers
*
       ORG  2000
START  CLA  ZERO
       STO  SUM
       CLA  COUNT
       STO  INDEX
LOOP   CLT  INDEX
       JZ   DONE
       CLA  INDEX
       SUB  ONE
       STO  INDEX
       CLA  INDEX
       ADD  ARRAY
       STO  TEMP
       CLT  TEMP
       CLA  0
       ADD  SUM
       STO  SUM
       J    LOOP
DONE   CLA  SUM
       HLT
*
* Data area
*
ZERO   DEC  0
ONE    DEC  1
COUNT  DEC  5
SUM    DEC  0
INDEX  DEC  0
TEMP   DEC  0
ARRAY  DEC  10
       DEC  20
       DEC  30
       DEC  40
       DEC  50
       END  START

Contribute — propose a file extension

Tell us where to find evidence about IBM 705 Assembly (mapped to pl/ibm_705_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/IBM 705 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← IBM 704 Assembly IBM 709 Assembly →