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)
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
* 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