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)
LLM (this repo) · 1

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
code.asm · added: 2026-02-11T13:32:22.918084Z
* 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

Contribute — propose a file extension

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