Assembly Language

1 program Added 2025-10-22T10:05:57Z Model: openai/gpt-4o-miniTemp: 0.4 Evidence Report issue View issues
Aliases: asm, assembly
Provenance: commit c4d1575ce7 · authored 2025-10-22T12:05:57+02:00 · model openai/gpt-4o-mini

Sources mentioning this language

3 sources · pl_id: pl/assembly-language
LLM (this repo) · 1PldbEsolang

Related languages

PASM (0.59)MIXAL (0.52)ALM (0.50)OpenQASM (0.49)SYMBAL (0.45)

LLM-contributed programs

Hello World in Assembly

Provenance: commit c4d1575ce7 · authored 2025-10-22T12:05:57+02:00 · model openai/gpt-4o-mini · Temp 0.4
code.asm · license: Public Domain · added: 2025-10-22T10:05:57Z
section .data
    hello db 'Hello, World!',0
section .text
    global _start
_start:
    ; write our string to stdout
    mov rax, 1          ; syscall: write
    mov rdi, 1          ; file descriptor: stdout
    mov rsi, hello      ; pointer to string
    mov rdx, 13         ; length of string
    syscall
    ; exit
    mov rax, 60         ; syscall: exit
    xor rdi, rdi        ; exit code 0
    syscall

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Assembly Language (mapped to pl/assembly-language). 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/Assembly Language/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Assembly But Worse Assembly Language Source Code File →