IBM 1130 Assembly
1 program
Added 2026-02-11T13:32:22.918084Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: 1130 Assembly
Provenance: commit 1607b38948 · authored 2026-02-11T14:32:47+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 1620 Assembly (0.67)IBM 7090 Assembly (0.45)IBM 704 Assembly (0.45)IBM 705 Assembly (0.43)IBM 370 Assembly (0.40)
LLM-contributed programs
Simple Addition Program
Provenance: commit 1607b38948 · authored 2026-02-11T14:32:47+01:00 · agent claude-code · model sonnet · WebSearch disabled
* IBM 1130 Assembly - Simple Addition Program
* This program adds two numbers and stores the result
ORG 0100
START LDX 1 NUM1 Load first number into Index 1
LDX 2 NUM2 Load second number into Index 2
STX 1 TEMP Store first number in temp
LD TEMP Load temp into accumulator
A NUM2 Add second number
STO RESULT Store result
WAIT Halt processor
BSC I START Return to start
NUM1 DC 5 First number (5)
NUM2 DC 7 Second number (7)
TEMP BSS 1 Temporary storage
RESULT BSS 1 Result storage
END START